Cannot log in to phpMyAdmin even after configuration -


i set wamp server. port 80 in use changed following lines in apache's httpd.conf file make use of port number 8080.

httpd.conf file

then changed mysql's root password abc123 using mysql console. fine point.

then configured phpmyadmin's setup script (config.inc file) follows (through browser using gui). , saved configurations.

<?php /*  * generated configuration file  * generated by: phpmyadmin 3.4.10.1 setup script  * date: tue, 05 jun 2012 12:42:11 +0000  */  /* servers configuration */ $i = 0;  /* server: localhost [1] */ $i++; $cfg['servers'][$i]['verbose'] = ''; $cfg['servers'][$i]['host'] = 'localhost'; $cfg['servers'][$i]['port'] = 8080; $cfg['servers'][$i]['socket'] = ''; $cfg['servers'][$i]['connect_type'] = 'tcp'; $cfg['servers'][$i]['extension'] = 'mysqli'; $cfg['servers'][$i]['auth_type'] = 'cookie'; $cfg['servers'][$i]['user'] = 'root'; $cfg['servers'][$i]['password'] = 'abc123';  /* end of servers configuration */  $cfg['blowfish_secret'] = '4fcdfe94a0e6c7.79135356'; $cfg['defaultlang'] = 'en'; $cfg['serverdefault'] = 1; $cfg['uploaddir'] = ''; $cfg['savedir'] = ''; ?> 

but still can't log in phpmyadmin when give correct user credentials. doesn't give me error messages. takes long time loading , goes blank page url this.

http://localhost:8080/phpmyadmin/index.php?token=d30e16bb6e28ae70e8c2ed12a9c4e61f 

i don't know else do. there step i'm missing out on? help/suggestion appreciated.

thank you.

got it! port number here $cfg['servers'][$i]['port'] = 8080; not port localhost. mysql's port number. should left blank default setting. didn' know before. everything's working fine now.


Comments

Popular posts from this blog

jquery - Invalid Assignment Left-Hand Side -

java - Play! framework 2.0: How to display multiple image? -

gmail - Is there any documentation for read-only access to the Google Contacts API? -