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?

Replies (2)

Great thanks for posting

Reply 2
I'm sure other users will find this useful so thanks! :)