Re: phpadmin and mysql
Posted by:
Nick Roper
Date: August 01, 2004 11:35AM
Jason,
If you look in the directory in which you installed phpmyadmin you should find the config.inc.php file. Open the file and you will probably see something similar to the following:
-------------------------------------------------------------------
...
$cfg['Servers'][$i]['host'] = 'localhost';
...
$cfg['Servers'][$i]['user'] = 'root';
$cfg['Servers'][$i]['password'] = '';
...
-------------------------------------------------------------------
This assumes that you are connecting to MySQL on the same machine as phpmyadmin is installed on and that the root user is still in place with no password set (which is the default after MySQL is installed). You need to set the host, user and password to whatever are applicable on your server. You should also find a Documentation.html file in the phpmyadmin directory.
Note: You should set up a new user account to use with phpmyadmin as it is not a good idea to connect as root.
--
Nick Roper
Subject
Written By
Posted
Re: phpadmin and mysql
August 01, 2004 11:35AM
Sorry, you can't reply to this topic. It has been closed.
Content reproduced on this site is the property of the respective copyright holders.
It is not reviewed in advance by Oracle and does not necessarily represent the opinion
of Oracle or any other party.