Reputation: 3368
I could not get Xampp to work with the default port, so I changed the port to 8080. Now, I cannot figure out how to load the Xampp home page.
I tried typing in: http://localhost:8080/xampp/
and get the following:
If I try typing the following into the browser, I get a 404 error. http://localhost:8080/xampp/index.php
What do I have to do to be able to get to the Xampp homepage? I want to run phpmyadmin.
Upvotes: 0
Views: 1083
Reputation: 1425
By default the xampp index.php is always at the server root http://localhost/
. If you changed the port this still applies like http://localhost:8080/
.
To change the password for your mysql-database open your my.ini
from the config-button in xampp-control and uncomment and change the line
#password = your_password
Upvotes: 1