Page 1 of 1

big file uploading problem

Posted: Fri May 18, 2007 12:14 pm
by rajan
i am trying to upload a file which is approx 8 MB. The connection is reset while uploading file. I have checked ini setting that is
post_max_size 50M
upload_max_filesize 50M
memory_limit 20M
max_input_time -1
max_execution time 90

I have changed max_execution_time to -1 and increased memory limit but each time i got connection reset error.

i want to upload a big file upto 50MB so how can i do this when i can't upload a 8 MB file?

I have tried to upload file using thinsliceupload java applet program to upload but i read somewhere that we can't use "put" method on shared server. so i failed to upload the file.

Posted: Fri May 18, 2007 12:22 pm
by volka
Is there an entry in the webserver's error log related to the problem?

Posted: Fri May 18, 2007 12:36 pm
by rajan
i have only ftp access so i can't check error log.

Posted: Fri May 18, 2007 1:29 pm
by arturm
try to add into your form:

Code: Select all

<input type="hidden" name="MAX_FILE_SIZE" value="50000">

Posted: Fri May 18, 2007 8:39 pm
by Grim...
And use phpinfo() to check your max_upload_size.

Posted: Mon May 21, 2007 12:36 am
by rajan
I have already checked phpinfo and told all settings.