04/16/2013 at 12:35 pm
#257254
Keymaster
@ Josh
It could be that the image is too large or exceeds the upload settings of your server. Try one of these two options:
Add these directives to your php.ini file in the root folder.
upload_max_filesize = 10M
post_max_size = 10M
OR
Add the below to your .htaccess file in the root folder.
php_value upload_max_filesize 10M
php_value post_max_size 10M
Additionally, you might need to increase the max_execution_time in the php.ini as well as increasing the memory allocated to PHP.
All these settings indirectly affect each other. Generally, most webhost default settings are more than adequate as long multi-mega pixels images are not being uploaded.
I hope that helps.
