I am trying to upload a large zip file (69M😎 to the server by using a PHP script. My script works fine for the 12MB files, but when I select the 69MB file the script appears to run for a minute then either returns a DNS error or simply stops and remains on the same page. I am currently using PHP 3.0.16 for win32. My code for copying the file is as follows:
if (copy($filename, "uploaded/".$filename_name)) {
echo("<B>File successfully copied!</B>");
} else {
echo("<B>Error: failed to copy file...</B>");
}
unlink($filename);
I've adjusted the php3.ini parameters as follows:
max_execution_time = 600
upload_max_filesize = 104857600
Anyone have any ideas or suggestions that might resolve this problem?