I have to increase the configuration parameter 'upload_max_filesize' within my application from 2MB to 8MB.
/etc/php/7.3/cli/php.ini
When accessing the file (within a docker container btw) or typing
php -i
I get 8MB.
However, when dumping the value via
dump(ini_get_all());
or
dump(ini_get('upload_max_filesize'));
in my application, I still get 2MB as maximal filesize for uploads.
Is there some sort of cache or local/global conflicts?