Paul
Paul

Reputation: 3368

How to access Xampp home page with port changed

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.

enter image description here

I tried typing in: http://localhost:8080/xampp/ and get the following:

enter image description here

If I try typing the following into the browser, I get a 404 error. http://localhost:8080/xampp/index.php

enter image description here

What do I have to do to be able to get to the Xampp homepage? I want to run phpmyadmin.

Upvotes: 0

Views: 1083

Answers (1)

wayneOS
wayneOS

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

Related Questions