Modify the phpMyAdmin file upload limit
NOTE: The Approach A sections referred to below do not apply to Bitnami native installers. Users of Bitnami native installers should refer only to the Approach B sections.
To increase the allowed size for uploads, follow the steps below:
Approach A: Bitnami installations using system packages
Modify the following options in the php.ini file:
upload_max_filesize=80M
post_max_size=80M
Approach B: Self-contained Bitnami installations
Modify the following options in the installdir/apps/phpmyadmin/conf/httpd-app.conf file:
<IfModule php7_module>
php_value upload_max_filesize 80M
php_value post_max_size 80M
</IfModule>
If you are using PHP-FPM, modify the settings in the installdir/apps/phpmyadmin/conf/php-fpm/php-settings.conf file
php_value[upload_max_filesize]=80M
php_value[post_max_size]=80M