Jump to content

Wireless102

Members
  • Posts

    84
  • Joined

  • Last visited

    Never

Everything posted by Wireless102

  1. and its best to store those types of files outside of the public directory
  2. yes, a inc file will let anyone read it. a php file will not display the information
  3. still have not fixed the options thing but the last 2 are done.
  4. it makes it easy to fix when you wrote it all from nothing, you know where everything is at lol thanks later
  5. thats a good one, i pretty much didnt do anything with those values i will have to set it up to screen those as well. and your right about people not fixing stuff, i just went through some old post and still found alot of the errors discovered are still there
  6. ok now your install has all new files in it
  7. ah never mind, you are using a different install than i updated your files i updated the "b_testingt" users files
  8. its still doing that?, i tried it just now in that page and it would not do it. i uploaded new files to the server recently
  9. yea, i see that, spaces really mess with that link. lol i will have to do something about that also what admin pages specifically are you talking about?
  10. hmm, ok i thought i had taken care of them... i will go back and look some more
  11. i sent you a pm back about that, the problem was the user ~nobody has a home dir of "/" and inside the dir / was a folder public_html. thats the reason it got there, in cpanel you can disable the ~username for all users except nobody. i was almost in a panic about that one. i deleted the site off the server to try and fix it before i knew what was going on and the problem was still there. i talked with cpanel about 5 times also and we couldnt figure it out. but finally i looked at the where the home dir of nobody was and found the file. it probably come from a bad command line file copy. on the errors i like to get them asap, dont have to worry with it later. i have spent about a month writing this and it is finally working and i dont want to have to deal with security later.
  12. lol na, i have fixed all the errors you found and posted here i am going to keep looking for any more
  13. I killed your install for a minute while i changed some stuff, it is back going now if you log in you have been really helpful
  14. I seen a lot of those pages have to be fixed also, i have been uploading some new files to the admin sections tonight as well. i put the files where you had to login to see them last on the list to fix. edited: typo
  15. I have fixed all problems listed and a few more that i found, which im sure all of them are not gone yet. but anyone that would sign up and try it out. let me know if you get any problems with that process and how it works for you
  16. I took the site offline while i fix there errors thanks
  17. this is great, thanks guys i will work on these things right away as for the google ads page, yea that is interesting it is a page i done a while back checking google ads
  18. Hello all, I have a new live chat system that is ready to be used, I would like for anyone who could to try it out. It has a lot of features in it and for me it has been very reliable, but i would like to hear what other users think about it. Any bugs or things that just dont work right you can submit them right from inside the system ("Support" link in the admin section). The beta test of this software is a hosted version so you dont have to download and install anything, just click this link http://www.nixme.com/livechat/clicktrack/index.php?id=08c6e1b50d06 and enter your information and you will be sent a link to login with and begin using it. As you can see from the link to it the system has a click tracking option in it. There are still a few thing that need fine tuning but in all i think that it is a fully working system. The website it is on is no where near complete, so if you click a link there it probably will be a dead link. Once you have signed up there is a small help file in the admin area, just click the "Quick Start" link in the menu after you login. I will be adding a lot more to it in the coming days. So anybody that would, sign up and let me know how it works out for you. I would like to hear that it works great but even better would be to find any bugs that i dont know about and fix them. Thanks Donald
  19. using the ltrim function fixed the problem, the url of the file had a space at the beginning of it
  20. hello i am trying to download image files from another server (about 2000 of them). I am using a mysql database to retrieve the file name/location. the below code works fine but it has the file name hard coded into it. <?php $a=0; $timevalue = substr(time(),3,11); $photoname = $timevalue.$a.'.jpg'; $ch = curl_init("http://www.somedomain.com/images/some%20folder/some%20image%20file.jpg"); $fp = fopen($photoname, "w"); curl_setopt($ch, CURLOPT_FILE, $fp); curl_setopt($ch, CURLOPT_HEADER, 0); curl_exec($ch); curl_close($ch); fclose($fp); ?> but when trying to get the file name from the database it does not work <?php $a=0; while($row = mysql_fetch_array($result)){ $timevalue = substr(time(),3,11); $photoname = $timevalue.$a.'.jpg'; $ch = curl_init($row['imagefile']); $fp = fopen($photoname, "w"); curl_setopt($ch, CURLOPT_FILE, $fp); curl_setopt($ch, CURLOPT_HEADER, 0); curl_exec($ch); curl_close($ch); fclose($fp); $a++; } ?> anyideas why it will not work? the $row['imagefile'] is the exact link to the file on the remote server
  21. at the top of each page of code put the session_start(); or session will not work, unless auto session start is set in the php.ini as long as you have the session_start(); the values that you store in the session will be available on each page. access the values with $name = $_SESSION['name'];
  22. put session_start(); at the begginning of your code and then you can store session values using $_SESSION['name'] = "name"; $_SESSION['pass'] = "pass"; you can unset the session with unset($_SESSION['name']); and put session_destroy; after the unsets
  23. thanks for that, i see one problem from this version(since i stripped out so much stuff) the bid was not restarting at zero. it is doing that on the main site
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.