Quote:
Originally Posted by EricPSF
Hi Jelle,
I cannot upload large files. I tried to put the 2 recommended codes into my present .htaccess code as recommended by yr remedy but it caused 500 Internal Server Error.
Any advice?
Is it possible, somehow upload the large files using ftp and make the posting thread recognized the folder in the download area (instead of pressing upload button for uploading)?
Thank you.
|
Hello,
I haven't read all the threads in this forum, so I hope this hasn't been posted already.
You need to change two lines in your php.ini file.
1)
PHP Code:
; Maximum size of POST data that PHP will accept.
post_max_size = 129M
and
2)
PHP Code:
; Maximum allowed size for uploaded files.
upload_max_filesize = 128M
Just remeber that "post_max_size" is supposed to be greater than the "upload_max_filesize".
This is telling my server I can upload up to 128 megabits at a time.
Increase/decrease to your liking......
Hope this helps....
Thanks,