Click to See Complete Forum and Search --> : [Resolved] Can anyone help me to install phpMyAdmin for mysql on windows xp?


Dollar
07-21-2003, 06:59 PM
Hi I'm a new PHP user. I installed PHP and MySQL on windows xp. right now, I'm trying to install phpMyAdmin. Can anyone explain to me how to install it,please? Thank you.

stolzyboy
07-21-2003, 07:10 PM
if you downloaded it and it was a zip, unzip it into your web directory

then open up the config.inc.php file and look thru there for where you need to configure mysql and such

you will access it like http://youripaddresshere/phpMyAdmin/index.php

Dollar
07-22-2003, 04:05 AM
Could you please tell me what I should do to configure mMySQL in confic.ini.php? Thanks

stolzyboy
07-22-2003, 10:39 AM
change these lines to your usernames and passwords and change the top one to config, instead of http(if it's on your own server), otherwise, keep it http


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

Dollar
07-22-2003, 02:55 PM
GOTCHA!!!
Everything work perfectly fine now. Thank a lot for your help.