Loading...
Real Time Issues

How to login without password in phpMyAdmin

Error: Login without a password is forbidden by configuration (see AllowNoPassword)

This error occurs because phpMyAdmin is normally configured to disable passwordless login due to security reasons.

Solution for this to set the AllowNoPassword variable, located in phpMyAdmin’s configuration file, to TRUE. On an Ubuntu 15.04 server edit the following file:

vim /etc/phpmyadmin/config.inc.php

Find the line:

// $cfg[‘Servers’][$i][‘AllowNoPassword’] = TRUE;

Uncomment that line; you’ll remove the //.

 

Leave a Reply

Your email address will not be published. Required fields are marked *