Today, database extractor, in the address bar input localhost/phpmyadmin altogether show no access to the English .... Check the data are a lot of solutions, the basic is to click on the green W icon, and then find the Apache under the httpd.conf, and then the inside of the Deny from the 127.0.0.1 modified to all.
<directory/> Options followsymlinks allowoverride all Order deny,allow deny from all</ Directory>
But my original is this, later found to be modified the wrong file, and the Internet does not indicate that the real to find is under the alias directory under Apache Http://localhost/phpmyadmin under the edit alias, and the following code
<directory "C:/WAMP/APPS/PHPMYADMIN3.5.1/" >options Indexes followsymlinks multiviewsallowoverride allOrder Deny,allowdeny from Allallow to 127.0.0.1
</Directory>
Revision changed to
<directory "C:/WAMP/APPS/PHPMYADMIN3.5.1/" > Options Indexes followsymlinks multiviews allowoverride All Order Deny,allowallow from all</directory>
Just need to change the contents of the inside of the line, which disk on the above is not changed, that is
Deny from Allallow from 127.0.0.1
If there's any 127.0.0.1 on it, replace all.
The results of the final modification are as follows:
Alias/phpmyadmin "C:/WAMP/APPS/PHPMYADMIN3.5.1/" # to give access to phpMyAdmin from outside # Replace the lines## Or Der Deny,allow#allow from all## by## Order allow,deny # allow from all#<directory "f:/wamp/apps/ PHPMYADMIN3.5.1/"> Options Indexes followsymlinks multiviews allowoverride all Order deny,allowallow From all</directory>
Save, restart, fix