Jump to content

set password for phpmyadmin


jeeva

Recommended Posts

For HTTP authentication (windows security window will come up and ask you for your mysql userid and password) make sure the following three lines look like this:

 

$cfg['Servers'][$i]['auth_type']     = 'http';    // Authentication method (config, http or cookie based)?
$cfg['Servers'][$i]['user']          = '';          // MySQL user
$cfg['Servers'][$i]['password']      = '';          // MySQL password (only needed

 

For cookie authentication (a phpmyadmin login page comes up for you to enter your username and password), You first need to create a PassPhrase (this can be anything):

$cfg['blowfish_secret'] = 'MyPhrase'; //Change MyPhrase to your PassPhrase

and then make sure these three lines look as follows:

$cfg['Servers'][$i]['auth_type']     = 'cookie';    // Authentication method (config, http or cookie based)?
$cfg['Servers'][$i]['user']          = '';          // MySQL user
$cfg['Servers'][$i]['password']      = '';          // MySQL password (only needed

 

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.