12-31-2024, 01:14 PM
(12-30-2024, 10:24 PM)Tim Curtis Wrote: In the file /etc/php/8.2/fpm/php.ini
Try doubling these values:
Code:upload_max_filesize = 75M
post_max_size = 75M
Thank you for the tip. Unfortunately this alone did not help.
I changed both values, first to 150M then to 300M; then restarted the box:
Code:
root@player:/etc/php/8.2/fpm# grep -EHr _max_.*size *.ini
php.ini:post_max_size = 300M
php.ini:upload_max_filesize = 300M
But then, after some googling, I adapted /etc/nginx/nginx.conf as well:
Code:
client_max_body_size 300M;
Thanks again and best regards
Marcel