Quote:
Originally Posted by Epic Mike
I saw a few references to this but I'm not sure that I completely understand. I am getting this warning
- upload_max_filesize 10M > post_max_size 8M in php.ini file - Large uploads may fail without warning
For the life of me I can't find where to change either one or even where to locate the php.ini file. I'm on a shared server so can I still change that.
Sorry for the noob question.
|
These are two parameters which control php's handling of uploads. If you are on a shared server, you probably cannot change the settings directly, so you may want to speak to your hosting company.
At least with some versions of php, if *upload_max_filesize* has a larger value than *post_max_size*, file uploads bigger than *post_max_size* but smaller than *upload_max_filesize* fail without triggering a helpful error message for php to detect and report. (This may be fixed in recent versions of php - I'm not sure.) So the general advice is to set up php with the two values the same or make upload_max_filesize smaller.