Forum archive
Request Entity Too Large
When using the latest OwnCloud TKL I receive an error when uploading a little larger files.
I changed the following to make it work:
/var/www/owncloud/.htaccess:
php_value upload_max_filesize 999999999M
php_value post_max_size 999999999M
php_value memory_limit 999999999M
and
/etc/php5/apache2/php.ini:
post_max_size = 999999999M
upload_max_filesize = 999999999M
service apache2 restart
Still no success, maybe I am forgetting something?
It was the nginx reversed proxy inbetween that needed a little extra configuration:
http://www.cyberciti.biz/faq/linux-unix-bsd-nginx-413-request-entity-too...