php - Why can't I navigate to the page for creating database? -
I am following the tutorial from this page (). I am trying to create a database by following this address:
http: // localhost / phpmyadmin
but in my browser "this webpage is available is not" .
I downloaded the XMPP and started "MySQL", but still can not access the page. Should I download something to reach the page? What are they Thanks I'm using Windows7.
The issue is that you are on Windows, that IIS is currently running and listening As a result, Apache may not be running as a result of your local machine on port 80, so to fix this issue, you have to stop IIS and start Apache.
Stop IIS
- Start a new command prompt.
-
Net stop W3svc
Start up Apache
- Start a new command prompt (or use existing).
- Go to your XAMPP installation folder (for example C: \ xampp).
- Type
at apache_start
at the command prompt
Comments
Post a Comment