Reputation: 1670
I had to install my xampp to run on localhost:1234 tp prevent a conflict with skype. Now I don't know how to access the phpMyAdmin database. What is te right address to access phpMyAdmin?
Upvotes: 0
Views: 4623
Reputation: 141
You have changed the port for apache to be 1234, not for mysql. By default your mysql from xampp is at port 3306. If localhost:3306/phpmyadmin show not found, try https://localhost:3306/phpmyadmin. Or drop the port.
Upvotes: 1