I just saw your site, there is one more plug-in that aid you to show a thunbnail of picture instead of clicking and downloading to view. Just try that out if it is interesting for you.
I just saw your site, there is one more plug-in that aid you to show a thunbnail of picture instead of clicking and downloading to view. Just try that out if it is interesting for you.
Has your question been answered yet? It doesn't seem like it. Lots (or all) of the presets for images are defined in the config so first check your config-defaults.php for stuff like this. I found the following line of code in there;
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.