Apache – Wamp server Put Online is not working

apachewampwampserver

I did the following steps to setup Wamp, but not able to access the server from different machine in the network. What am I doing wrong?

  1. Installed Wamp 64 Bit Version 3.0.4 this comes with Apache version 2.4.18
  2. Started Wamp server, right click on system tray icon, choose Menu item : Online / Offline under Wamp settings
  3. Click on (left click) system tray icon and chose Put Online
  4. When I try to access the server from another machine in the network, the server return a error page with error message You don't have permission to access / on this server

I directly edited httpd-vhosts.conf file and restarted all the service, still getting the same error. Below is the content of httpd-vhosts.conf file and my system IP

httpd-vhosts.conf

#
# Virtual Hosts
#

<VirtualHost *:80>
    ServerName localhost
    DocumentRoot C:/Users/dinesh/Softwares/Wamp64/www
    <Directory  "C:/Users/dinesh/Softwares/Wamp64/www/">
        Options +Indexes +FollowSymLinks +MultiViews
        AllowOverride All
        Require local
        Require ip 100.97.67
    </Directory>
</VirtualHost>

System IP

mintty> ipconfig | grep IPv4
   IPv4 Address. . . . . . . . . . . : 100.97.67.11
mintty>

Best Answer

 #
 # Virtual Hosts
 #

    <VirtualHost *:80>
        ServerName localhost
        DocumentRoot D:/wamp/www
        <Directory  "D:/wamp/www/">
            Options +Indexes +FollowSymLinks +MultiViews
            AllowOverride All
            Require local
        </Directory>
    </VirtualHost>
 #

REPLACE BY

 #
 # Virtual Hosts
 #

    <VirtualHost *:80>
        ServerName localhost
        DocumentRoot D:/wamp/www
        <Directory  "D:/wamp/www/">
            Options +Indexes +FollowSymLinks +MultiViews
            AllowOverride All
            #Require local
        </Directory>
    </VirtualHost>
 #

Related Topic