|
ah hah.. could it be possible that it is timming out before the file can upload? there are 2 places where your server will timeout.. 1 in php itself, and one in apache ( if you are using apache )
php.ini
----------------------------------
max_execution_time = 30 // seconds
httpd.conf
---------------------------------
Timeout 300
the other php.ini settings are:
--------------------------------------
file_uploads = on
upload_max_filesize = 10M
let us know if it works or not.
|