PHPFixing
  • Privacy Policy
  • TOS
  • Ask Question
  • Contact Us
  • Home
  • PHP
  • Programming
  • SQL Injection
  • Web3.0

Monday, January 10, 2022

[FIXED] This localhost page can’t be found :Phpmyadmin

 January 10, 2022     apache, mysql, phpmyadmin     No comments   

Issue

after resolving the issue of Apache and Mysql, suddenly I am facing the issue as Localhost not found.

No webpage was found for the web address: http://localhost/phpmyadmin

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"

Here follows entries for some specific programs

# 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 port to 8111 in both the cases as this was the only option which helped me out while running MYSQL.

Any help?


Solution

The problem may be related with Your Localhost Port. rather than typing http://localhost/phpmyadmin type like 'http://localhost:PortNumber/phpmyadmin'. check Your port Number at 'httpd.conf' file. these are the basic

  1. Listen 'Your Port number like 80 or else
  2. ServerName localhost:'Your Port number like 80 or else


Answered By - Mequanent Wondimu
  • Share This:  
  •  Facebook
  •  Twitter
  •  Stumble
  •  Digg
Newer Post Older Post Home
View mobile version

0 Comments:

Post a Comment

Note: Only a member of this blog may post a comment.

Total Pageviews

Featured Post

Why Learn PHP Programming

Why Learn PHP Programming A widely-used open source scripting language PHP is one of the most popular programming languages in the world. It...

Subscribe To

Posts
Atom
Posts
Comments
Atom
Comments

Copyright © PHPFixing