Jump to content

[SOLVED] PHPmyAdmin users


Recommended Posts

Hi. I created a new user on phpmyadmin, so now i have my new user and the root user. i took away all privileges from the root user, and now i realised i dont know how to logg in with my new user. i know the username and password, all i need is to know how to logg in with a diffrent user.

http://i76.photobucket.com/albums/j37/dahwan/PHPmyADMIN.jpg

Thanks
Link to comment
Share on other sites

You'll want to change phpMyAdmins configuration. Go to where you installed phpMyAdmin and look for a file called config.ic.php

open that up for editing in notepad or whatever and look for the following line:
[code]$cfg['Servers'][$i]['auth_type']    = 'config';    // Authentication method (config, http or cookie based)?[/code]
Change config to cookie instead.

Save config.inc.php. Now go back to phpMyAdmin. You should be faced with a login box now. Enter the username and password credentials for the user you want to login to. If you dont clear any cookies for localhost. The login box should now appear.

Also keep the root user as-is dont change anythink. Do what phpMyAdmin says and give the root user a password.
Link to comment
Share on other sites

Oh yeah fogot about that. re-open up the config.inc.php file and find the following line:
[code=php:0]$cfg['blowfish_secret'] = '';[/code]


add a secret passphrase between the two quotes like so:
$cfg['blowfish_secret'] = 'pasePhraseHere';

Save the config.inc.php and relaunch phpMyAdmin a login box should now appear.
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.