Reputation: 133
Today I installed XAMPP (v5.6.15). Everything seems to be okay but the old orange configuration page is missing (localhost/xampp/index.php). Now I don't know how to change security settings (such as MySQL password...).
Is there a way to bring back configuration page?
Upvotes: 0
Views: 4696
Reputation: 175
The old orange XAMPP administration page is no longer included in current XAMPP versions. You cannot bring back the old orange start page unless you go back to using the older version.
As for changing the password without the Orange Page:
http://localhost/phpmyadmin
.UPDATE mysql.user SET Password=PASSWORD('password') WHERE User='root';
Click Go. You will see a message saying that the query has been executed successfully.
If you refresh the page, you will get an error message. The phpMyAdmin configuration file is not aware of our newly set root passoword. We have to modify the phpMyAdmin config file.[XAMPP Installation Path] / phpmyadmin / config.inc.php
in your favorite text editor.$cfg['Servers'][$i]['password'] = '';
Change to: $cfg['Servers'][$i]['password'] = 'password';
Here the 'password' is what we set to the root user using the SQL query.Hope this helps!
Upvotes: 1