XF 2.2 Uploading 15mb Photos

ForumLover

Member
We are doing a photo contest and one of the contestants says he can't upload an image 14mb and before I started tinkering I thought I would post and see where and what steps I need to do to increase the upload size for photos.
Can someone help point me in the right direction so contestants can upload 15mb photos?
 
Ensure the values in the ACP are set accordingly.

Other than that, there are various settings in PHP and MySQL which are related, such as:

PHP
post_max_size
upload_max_filesize
upload_tmp_dir

MySQL
max_allowed_packet
max_packet_size
wait_timeout
 
You may not forget:

$config['maxImageResizePixelCount'] =yournumbergoeshere

 
Top Bottom