Hello!
Nextcloud version: 27.12
Operating on Unraid
PHP version: 8.2
My SQL
The issue I am are facing:
If I want to upload a file with ~>1GB, this error occurs:
<<Error while copying file to target location (copied bytes: -1, expected filesize: -1 )>>
I thought this issue could be solved by adjusting the settings in php.ini (like mentioned here [Uploading big files > 512MB — Nextcloud latest Administration Manual latest documentation ]( Uploading big files > 512MB — Nextcloud latest Administration Manual latest documentation)):
output_buffering=0
php_value upload_max_filesize 16G
php_value post_max_size 16G
php_value max_input_time 3600
php_value max_execution_time 3600
php_value memory_limit 4096
I did this in 3 places! in desperation
/php82/php.ini
./app/www/public/.user.ini
./config/php/php-local.ini
But it doesn’t change the php size in the system settings.
What am I overlooking?