2016-08-09, 02:41:07
My solution was to add these lines to the end of my htaccess:
php_value upload_max_filesize 64M
php_value post_max_size 64M
php_value max_execution_time 300
php_value max_input_time 300
Note that it's not enough to just increase max filesize, you also have to increase the time. Otherwise the authentication expires while the file is still uploading.
php_value upload_max_filesize 64M
php_value post_max_size 64M
php_value max_execution_time 300
php_value max_input_time 300
Note that it's not enough to just increase max filesize, you also have to increase the time. Otherwise the authentication expires while the file is still uploading.