Hi all,
I installed phpMyAdmin from the Yast software install option, thinking it would save time, hassle, etc since it would be natively installed as it were.
It all went fine until I decided to import databases that had been exported via a Debian-based phpMyAdmin.
Most of these databases are well over 100MB in size. Having noticed that my OpenSuse phpMyAdmin had a file upload limit set at 64MiB, I immediately went to “/etc/php8/apache2/php.ini” and upped some values:
memory_limit = 512M
...
post_max_size = 512M
...
upload_max_filesize = 512M
Note: the above lines are straight copy-paste from the php.ini in the console.
I then restarted the apache server.
Changing these values did not alter the phpMyAdmin max upload file size of 64MiB.
I cleared the browser cache: still no change.
To test that phpMyAdmin is reading the proper php.ini, I changed the values to:
memory_limit = 256M
...
post_max_size = 32M
...
upload_max_filesize = 32M
I restarted apache and cleared the cache.
phpMyAdmin did register the change and showed a max upload file size of 32MiB.
I restored the values to what I need:
memory_limit = 512M
...
post_max_size = 512M
...
upload_max_filesize = 512M
I restarted apache and cleared the cache.
phpMyAdmin did register the change somewhat but restored its seemingly own max upload file size of 64MiB.
Anything I’m missing here?
Help appreciated.
Thank you.