I solved an issue with Apache and MySQL after that I am getting an error - Localhost not found.
No webpage was found for the web address: http://localhost/phpmyadmin
The issue I have resolved for MYSQL is :
# The following options will be passed to all MySQL clients
[client]
# password = your_password
#port = 3306
port =8111
socket = "C:/xampp/mysql/mysql.sock"
Entries for specific program:
# The MySQL server
[mysqld]
#port= 3306
port = 8111
socket = "C:/xampp/mysql/mysql.sock"
basedir = "C:/xampp/mysql"
tmpdir = "C:/xampp/tmp"
datadir = "C:/xampp/mysql/data"
I have a port to 8111 in both the cases as this was the only option that helped me out while running MYSQL.
Can someone guide me to do this?