WAMPserver settings allow external network access, and phpmyadmin does not automatically log in

WAMPserver settings allow external network access

WAMPserver settings allow external network access

WAMPserver settings allow external network access

WAMPserver settings allow external network access

I have to say that WAMPserver is a good thing for local debugging programs. There are many php packages on the market, but they are used. I still feel that WAMPserver is reliable and convenient. Many functions can be turned on and off directly without modifying the configuration file.

But the original intention of the author of WAMPserver may be to allow users to debug. It is not for external network access. Although I don’t need to use it on the server. But occasionally I will map the port out so that the external network can access, so I went to the network to find one Good method. Record it. It will be convenient to use later.

1. It is natural to turn off the local firewall.

2. Set WAMPserver to be accessible through the outside. (2 places to modify)

Modify the file: wamp\bin\apache\Apache2.2.21\conf\httpd.conf comment out the following two lines

Deny from all Allow from 127.0 . 0.1

So that the external network can access the main website

Similarly, to allow external network access to phpmyadmin, the same modification must be made in wamp\alias\phpmyadmin.conf.

3. Now that the external network can be accessed, you must be able to automatically log in phpmyadmin. So you also need to set it up.

Modify the file: wamp\apps\phpmyadmin3.4.10.1\config.inc.php

$cfg [ 'Servers' ][ $i ][ 'auth_type' ] = 'cookie' ; //(It was'config' )     $cfg [ 'Servers' ][ $i ][ 'user' ] = $cfg [ 'Servers' ][ $i ][ 'user' ] = 'Your username' ; $cfg [ 'Servers' ][ $i ][ 'password' ] = $cfg [ 'Servers' ][ $i ][ 'password'] = 'Your password' ;        
   

Regarding the solution to the red prompt “The configuration file now requires a phrase password” after logging in to phpmyadmin:

Modify the file: wamp\apps\phpmyadmin3.4.10.1\libraries\config.default.php

$cfg [ 'blowfish_secret' ] = 'Any string' ;

Finally restart all services of WAMPserver. All done!


Also, Checkout! Assignment solutions of Software Testing & Quality Assurance

If you find any typographical, grammatical or any other error in our site then kindly inform us. Don’t forget to provide the appropriate URL along with error description. So that we can easily correct it.

Thanks in advance.

3 thoughts on “WAMPserver settings allow external network access, and phpmyadmin does not automatically log in <p style="display:none;">WAMPserver settings allow external network access</p>”

Leave a Comment

Your email address will not be published. Required fields are marked *