Click here to Skip to main content
15,886,199 members
Please Sign up or sign in to vote.
2.00/5 (3 votes)
When I access the WAMP server by my IP am able to access php my admin mysql server. But when I try to access the same from another machine which is in same LAN network I receive Wamp Server Configuration page. When I click php info I receive the response but when I click php my admin I get forbidden error, but not the php my admin and database. Please note I have given all privileges for all user.
Posted
Updated 27-Jul-15 6:43am
v3
Comments
Paul Conrad 27-Jul-15 12:33pm    
Have you checked your firewall settings?

1 solution

1. left click on wamp server icon on tray, Rollover the Apache > folder and then to Alias directories > folder and in the new panel rollover again to the folder [localhost] > and choose the text "Edit alias"

2. In this new text document in the end of it you will see that it allows for phpmyadmin to be accesible from the main computer that the wamp is installed
"Allow from 127.0.0.1"

So you need after that to just add a line and allow the ip of the lan network to be accesible only from lan computers e.x. "Allow from 192.168.1.64"

See full text below

<directory>
Options Indexes FollowSymLinks MultiViews
AllowOverride all
Order Deny,Allow
Deny from all
Allow from 127.0.0.1
Allow from 192.168.1.64
 
Share this answer
 
v3

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900