Please upgrade here. These earlier versions are no longer being updated and have security issues.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
[Solved] [Documentation] How to increase the file size limit?
How do I increase the file upload size limit? It is currently at 2M.
0
Best Answers
-
Tim Vanilla Staff
Garden has one, the default for which is found in config-defaults.php
You can change that one by setting it to a new value in config.phpPHP itself also has a couple of limits. These are in the php.ini file for your server and you'll have to find that on your own.
http://www.php.net/manual/en/ini.core.php#ini.post-max-size
http://www.php.net/manual/en/ini.core.php#ini.upload-max-filesize3 -
peregrine MVP
I may not provide the completed solution you might desire, but I do try to provide honest suggestions to help you solve your issue.
1
Answers
Isnt it set in config.php
There was an error rendering this rich post.
Garden has one, the default for which is found in config-defaults.php
You can change that one by setting it to a new value in config.php
PHP itself also has a couple of limits. These are in the php.ini file for your server and you'll have to find that on your own.
http://www.php.net/manual/en/ini.core.php#ini.post-max-size
http://www.php.net/manual/en/ini.core.php#ini.upload-max-filesize
Vanilla Forums COO [GitHub, Twitter, About.me]
http://vanillaforums.org/discussion/comment/158465/#Comment_158465
I may not provide the completed solution you might desire, but I do try to provide honest suggestions to help you solve your issue.
Thanks everyone. The default in config-defaults is 50M. So, that means it's in PHP. I'll get that fixed.