Antonio Silva
Antonio Silva

Reputation: 11

Change Adminer to PhpMyAdmin in Local WP

I'm learning Wordpress development, but I really prefer to use the phpmyadmin instead of adminer. How can I change it in local WP?

I really don't know how to do that

Upvotes: 1

Views: 1302

Answers (1)

Isaac Bennetch
Isaac Bennetch

Reputation: 12422

WordPress doesn't have anything to do with Adminer or phpMyAdmin. WordPress uses a database to store information, and both Adminer and phpMyAdmin are tools to manage a database. You can use either Adminer or phpMyAdmin (or both simultaneously) to administrate your database, or you could do it by hand with the command line client.

So to have both phpMyAdmin and Adminer available, just install phpMyAdmin. If you don't want Adminer, you can remove it. As long as you don't also remove your database, your WordPress will be unaffected.

Of course, it's always a good idea to make a backup and dump your database to an SQL file before making any system changes.

Upvotes: 1

Related Questions