I have installed MAMP. When I click on the server in phpmyadmin. it shows
"Error in processing Error code 404 Error not found".
I saw the same question in stackoverflow , but not a solution. Please let me know anyone who faced this problem and solved.
Thanks,
This seems to be linked to the outdated MAMP config file in the phpMyadmin directory.
I had the same issue, to fix it I backed up the old phpMyAdmin, downloaded a new one and then copied config.sample.inc.php to config.inc.php.
Edit the file so that it reads as follows:
/* Authentication type */
$cfg['Servers'][$i]['auth_type'] = 'config';
/* Server parameters */
$cfg['Servers'][$i]['host'] = 'localhost';
$cfg['Servers'][$i]['connect_type'] = 'tcp';
$cfg['Servers'][$i]['compress'] = false;
$cfg['Servers'][$i]['AllowNoPassword'] = false;
$cfg['Servers'][$i]['user'] = 'root';
$cfg['Servers'][$i]['password'] = 'root';
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With