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.
Max file size
How can I change the max file size from 20MB to 2MB on my website http://www.freedesigncritique.com/groups
Tagged:
0
Comments
Vanilla Forums COO [GitHub, Twitter, About.me]
$Configuration['Garden']['Upload']['MaxFileSize'] = '50M';
I didn't check it out yet, but I guess this is the solution? Copy it to your config.php and edit it to your satisfaction.
upload_max_filesize = 20M post_max_size = 20M
This has to be in your php.ini file, on a lot of shared hosts you cannot do this yourself but can request for it to be done for you.
$Configuration['Garden']['Upload']['MaxFileSize'] = '1000M';
and i've edited my php.ini file as @graymardell suggested to 1000M in both instances.... still timing out with the error code of "max file size 128M"
any clues on how to fix this?
I highly recommend against allowing uploads that large as it can severely impact the speed of your webserver. HTTP wasn't meant for gigantic files.