Last modified 9 years ago
Last modified on 07/09/10 17:16:36
This page describes how you can configure your upload limit.
Your upload limit is restricted by your
- Webserver configuration (mainly apache)
- PHP and
- Your user upload quota
For your user upload quota please see UserQuota.
For Apache2 you can set a LimitRequestBody which you can set in your .htaccess file. in ./phtagr/app/.htaccess the limit is set to 128 MB by phtagr's default. This directive might be not changeable on a shared web hoster. Otherwise you can change and add it in /etc/apache2/sites-enabled/000-default if you have a default setup as described in HowToInstall.
For PHP you must change following values in your php.ini file (by default it is in /etc/php5/apache2/php.ini):
- post_max_size = 64M
- upload_max_filesize = 64M
- memory_limit = 64M (optional)