Reputation: 31
I am following the tutorial from this page(http://www.copterlabs.com/blog/creating-an-app-from-scratch-part-2/). I am trying to create database by following this address:
http://localhost/phpmyadmin
but "This webpage is not available" in my browser.
I downloaded XAMPP and started "MySQL", but still can't access to the page. Is there something I should download to access the page? What are they? I am using Windows7. Thanks.
Upvotes: 2
Views: 43
Reputation: 19635
The issue, assuming you're on Windows, is that IIS is currently running and listening for requests on port 80 on your local machine. As a corollary, Apache is probably NOT running. So, to fix the issue you'll need to stop IIS and start Apache.
Stop IIS
net stop w3svc
Start Apache
apache_start
at the command promptUpvotes: 1