
Originally Posted by
zombiesarecute
2. when I click on the link "./config.inc.php" it takes me to the page -
http://localhost/phpmyadmin/show_config_errors.php
and on the page it says: Starting to parse config file...
Parse error: syntax error, unexpected ';' in /Applications/XAMPP/xamppfiles/phpmyadmin/config.inc.php on line 37
That's because you can't have a blank value like that in PHP; what you have now is a syntax error. And anyway that option should be either true or false, it can't be anything else (*well technically it can, but I don't want to go there).

Originally Posted by
zombiesarecute
3. will not take my user name and password.. it refreshes and shows error #1 or 2
Did you actually change your password in MySQL? The username and password in the config.php file only tell PhpMyAdmin (after here: PMA) what username and password to use for logging in to MySQL; changing the values doesn't actually change your MySQL password, but merely the password PMA uses to log in to MySQL, and as you can see when you change that value but don't change the MySQL password you get an error
You need to open up a console and enter the commands described here --
Code:
/Applications/xampp/xamppfiles/mampp security
where /Applications/xampp/xamppfiles/mampp is the command to run, and security is a parameter for that command telling it what to do -- set up the security for MySQL.
Following you should be able to set up a password for root in MySQL. Enter that, and set the password in the PMA config to the same value.
Also, don't use 'tcp' for connecting, 'socket' is fine.
Bookmarks