Posted by:
johnyct9760
(---.hsd1.mi.comcast.net)
I tryed to add this code to my config.ini.php file within my PHP-MyAdmin folder
Or, if you prefer to not be prompted every time you log in:
<?php
$cfg['Servers'][$i]['user'] = 'root';
$cfg['Servers'][$i]['password'] = 'my_pass_goes_here';
?>
That code come from this link:
[
www.phpmyadmin.net]
But sadly it didn't take
( still getting prompted to enter my root and pass every time I turn on PHP-MyAdmin
Just to put it in context let me share my full config.ini.php code what ya:
LOCATION: C:\wamp\apps\phpmyadmin3.1.1\config.ini.php
-CODE-
<?php
/*
* Generated configuration file
* Generated by: phpMyAdmin 3.1.1 setup script by Michal Čihař <michal@cihar.com>
* Version: $Id: setup.php 10748 2007-10-10 07:30:59Z cybot_tm $
* Date: Wed, 11 Feb 2009 09:24:08 GMT
*/
/* Servers configuration */
$i = 0;
/* Server localhost (cookie) [1] */
$i++;
$cfg['Servers'][$i]['host'] = 'localhost';
$cfg['Servers'][$i]['extension'] = 'mysqli';
$cfg['Servers'][$i]['connect_type'] = 'tcp';
$cfg['Servers'][$i]['compress'] = false;
$cfg['Servers'][$i]['auth_type'] = 'cookie';
/*Newly added code:*/
$cfg['Servers'][$i]['user'] = 'root';
$cfg['Servers'][$i]['password'] = 'my_pass_goes_here';
/* End of servers configuration */
$cfg['blowfish_secret'] = '***************';
?>
-END CODE-
Thx for the assist everyone!
John
Edited 3 time(s). Last edit at 02/11/2009 04:11PM by johnyct9760.