MyBB Community Forums

Full Version: Forum is limited to 2.1 meg
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi, I'm having a problem getting over 2.1 meg for attachments,
similar to this ---> Increase maximum attachment size? (mybb.com)
but I host my own forum and there is no limit as I frequently use upload/download over 100 megs on the server.
I've changed Attachments size in "Attachment Types" but this does nothing....

Any advise?

Regards

PS: just tried uploading on this MyBB support forum with same result
What's the value for Max Upload / POST Size listed under "Stats" in AdminCP > Tools & Maintenance?
(2022-02-16, 10:24 AM)noyle Wrote: [ -> ]What's the value for Max Upload / POST Size listed under "Stats" in AdminCP > Tools & Maintenance?

It says "2M/8M"

Regards
So you need to override these directives to allow bigger uploads.

Check this random answer to a similar question https://stackoverflow.com/a/2184541/6681141 and PHP manuals on
upload_max_filesize: https://www.php.net/manual/en/ini.core.p...x-filesize
post_max_size: https://www.php.net/manual/en/ini.core.p...t-max-size
(2022-02-16, 10:38 AM)noyle Wrote: [ -> ]So you need to override these directives to allow bigger uploads.

Check this random answer to a similar question https://stackoverflow.com/a/2184541/6681141 and PHP manuals on
upload_max_filesize: https://www.php.net/manual/en/ini.core.p...x-filesize
post_max_size: https://www.php.net/manual/en/ini.core.p...t-max-size

Perfect thanks, I just needed to change 2meg to 8meg in PHP.INI in my php directory 

Solved Smile