Images upload bigger than 8 - 10MB / I want to show them on posts / no attachment phrase

Scandal

Well-known member
Hello all!
Some members complained that they cannot upload images / photos on their posts bigger than 8 - 10MB without showing them as Attachment link / phrases instead of real view of the image.

How could I change this limit?
My attachments limit is 60MB per file.

We need even those images to be displayed instead of View attachment x / link phrases.
 
Solution
Edit the src/config.php file:

PHP:
$config['maxImageResizePixelCount'] = 30000000;

Change the value as required.

Note that is the number of pixels, not the file size.
One of the problems you may have is the PHP limits itself. Have you checked that your limits (and associated time outs) are enough to allow attachments of that size?
 
One of the problems you may have is the PHP limits itself. Have you checked that your limits (and associated time outs) are enough to allow attachments of that size?
Yes we do not have any problem uploading attachments of that size.
The problem is only with the big images.
Could you give more specific information about what php limits do we have to change (variable name/ title) ? The post max size is 128MB if I remember correctly. Maybe something that concerns the image processing is what I need but I'm not 100% sure.
 
Edit the src/config.php file:

PHP:
$config['maxImageResizePixelCount'] = 30000000;

Change the value as required.

Note that is the number of pixels, not the file size.
 
Solution
Top Bottom