is there a way to increase upload_max_file_size in phpmyadmin as a standalone php.ini using php-fpm? Does phpmyadmin support standalone php.ini?
when using mod_php, I'm able to use the following configuration in .htaccess:
php_value upload_max_filesize 128M
it works fine, but when using php-fpm, the php_value cannot be used and will trigger error. Example of the error:
/home/admin/domains/mydomain.com/public_html/.htaccess: Invalid command 'php_value', perhaps misspelled or defined by a module not included in the server configuration
When using php-fpm, I understand that I can edit the global setting here:
/usr/local/php74/lib/php.ini
But this changes also affect other application. So, my question is, is there a way to increase upload_max_filesize as a standalone setting just for phpmyadmin when using php-fpm ? Most of the answers online suggesting to edit the above php.ini file but I only want it to be standalone setting just for phpmyadmin.
Thank you.