Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

nothing display for localhost n PHPMYADMIN 2

Status
Not open for further replies.

sham123

IS-IT--Management
Apr 4, 2008
3
MY
well....i just install the wamp2 in my computer...i follow all the instruction needed then i start all the service...it works, but..when i click at the local host there is nothing display...and also the PHPMYADMIN...nothing....PLease.....help Me...suffering this for 3 days u know?
 
Sounds like a security problem. Not sure about Windows, but on Linux, phpMyAdmin has a config.inc.php which holds the MySQL password. Make sure those are sync'd. If need be log into mysql and change the password for the users phpMyAdmin will use, usually "root". If you're not sure how to do that, google it, or ask here and we'll walk you through it.

Mark
 
sham123,

I hate to say it, but it sounds like you need to read the documentation.
sham123 said:
when i click at the local host there is nothing display
And you have something like 'index.html' in the directory that the Apache configuration has as the DocumentRoot, right?

Wishdiak
A+, Network+, Security+, MCSE: Security 2003
 
yes , there is index file in root folder...im install it in windows vista...im blurr...where is the problem...
 
Kozusnik

at config.inc.php which holds the MySQL password. how to sync'd?.

"If need be log into mysql and change the password for the users phpMyAdmin will use, usually "root". If you're not sure how to do that, google it, or ask here and we'll walk you through it."kozusnik say...

im not clear about it...can u tell me more...n for ur information in case it is imprtant im using windows vista
 
I'm not a windows user, but if you bring up a command shell. Change directory to the mysql/bin folder, and run...

mysql -uroot -p

If it does not prompt for a password, the root password for mysql is blank. You should change your mysql root password.

Code:
mysql> use mysql;
mysql> update user set Password=PASSWORD("your_new_password") where User='root';
#it should say how many rows were affected probably 1
mysql>quit;

Add that password to the config.inc.php in phpmyadmin/config and you will be syncronized. As long as phpmyadmin is under apache's DocumentRoot, you should be able to get there by...

If this does not work for you, find the file under Apache which contains DocumentRoot. Paste it here along with the phpmyadmin config.inc.php file and it's location.

Mark

Mark
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top