I've created an upload script, and I've tried everything under the sun to fix the problem I'm running into.
The problem is with filesize, anything I try to upload through the script over about 2.5 megs bombs out.
I've tried the following:
I've tried setting php_value in httpd.conf for max_execution_time and upoad_max_filesize. Neither helped, so I then tried to those with set_ini just for assurance:
set_time_limit(99999); ini_set ("upload_max_filesize", "78902345"); //insane #, i know, i didn't care at the time
ini_set ("max_execution_time", "7845"); //insane #, i know, i didn't care at the time
ini_set ("file_uploads", "8");
I know its not a timeout issue, because its a multiupload form, and I have uploaded 4 2meg files at once with success.
I've also tried max_file_size in the <form> properties..
Anyone ever run into this problem? I swear I've tried everything I can find. I know for a fact its not a firewall or system problem. I know its either php or apache thats causing this... but like i've said, i've tried everything I can think of. If anyone can help shed some light here I'd be most grateful.
You can see the source @ http://www.lithiumnode.com/mute/user/source/index.phps
I'd post a link to the actual working script, but i think you can understand why I wont.. plus, i have it password protected.
/ Aaron