![]() |
Alexey admin 6/7/2007 |
Allen, foreach ($files_move as $file) move_uploaded_file($file[0],$file[1]); and replace it with: foreach ($files_move as $file) { move_uploaded_file($file[0],$file[1]); if(strtoupper(substr(PHP_OS,0,3))!="WIN") chmod($file[1],0777); }
|
|
Allenh author 6/23/2007 |
Sorry it took me so long to get back to this. It works brilliantly. I was able to upload the files, but more importantly, I was able to download via ftp. Allen, please try to do the following. Open add.php file in C:\Program Files\PHPRunner4.0\source folder with a text editor. Find this snippet there: and replace it with: Do the same with edit.php file. Then rebuild your pages and upload them to the server. Let me know if this helps and we'll apply these changes to PHPRunner. |