Im attempting to run a script to upload files that can be as much as 60MB in size. Ive used copy and ftp function and have gotten the same errors or the browser returns "Cannot find server" It has worked for a file at about 4.5 MB But when I try to upload a file at 8 megs I get the same thing.
I have edited the php.ini file and set the upload_max_filesize to 60MB. I also set the max_execution_time to 600. That helped me get the 4.5 meg file up but why cant I get anything bigger in there?
To make it more fun there is not a line for post_max_size in the php.ini but its showing up in my phpinfo() Ive used ini_set("post_max_size", "62914560"); But this isnt helping.
Does anybody know where the post_max_size is? Or is this my problem at all?