Large Image Upload Issues
I'm running into an issue whenever I upload images larger than 1.75 megs. I get the following error:
The filetype you are attempting to upload is not allowed.
I plan on downsizing the image before saving with the on_after_post hook, but I can't get the image to upload for that to kick in.
I've adjusted my MY_fuel.php file to read:
// max upload files size for assets
$config['assets_upload_max_size'] = 0;
// max width for asset images beign uploaded
$config['assets_upload_max_width'] = 20000; //Changed from 1024
// max height for asset images beign uploaded
$config['assets_upload_max_height'] = 20000; //Changed from 768
I've also tries this with very large values, but that doesn't work either.
Any ideas?
Thank you,
Brandon Boswell
Comments
Also, for really big images you may need to adjust the server:
http://www.cyberciti.biz/faq/linux-unix-apache-increase-php-upload-limit/
Thank you very much,
Brandon Boswell