Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

MAMP - Phpmyadmin (Error in processing, error code : 404, error not found)

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,

like image 901
user2617611 Avatar asked Apr 20 '26 06:04

user2617611


1 Answers

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';
like image 114
CapeCoder Avatar answered Apr 22 '26 20:04

CapeCoder



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!