Hi, I would like to over-ride the 2mb max file size limit on upload. Can anyone tell me how to easily do this? I have tried the php.ini file creation method but it doesnt work! Is there some code in one of the PHP files that i can adjust easily? Thanks!
Comments
Remember also that the limit is per-file, so you can upload multiple files that add up to more than 2MB, as long as they are each less than 2MB.
Just add these 2 lines to the end of your .htaccess file:
php_value post_max_size 100M
php_value upload_max_filesize 10M
This works... I tested it with +3MB file and then I upload 8 +3MB photos with no problem.
Enjoy...