What version of WAMPServer did yo install. No idea how you managed to get Apache 2.2 commands into this if it was a recent version, if it was you, then please read the Apache manual before blundering about
You say you are trying to access from another PC On the LAN, a few hint, from the manual
Require all granted - allows access from any PC anywhere in the UNIVERSE
Require ip 192.168.1 - allows access from any PC on the subnet that starts with those 3 quartile
Require ip 192.168.1.1 192.168.1.2 - allows access from this list of ip addresses only
If as you say you want to access from another PC on the LAN use the second mechanism, check the ip addresses of the PC to see the subnet
# Virtual Hosts
#
<VirtualHost *:80>
ServerName localhost
ServerAlias localhost
DocumentRoot "${INSTALL_DIR}/www"
<Directory "${INSTALL_DIR}/www/">
Options +Indexes +Includes +FollowSymLinks +MultiViews
AllowOverride All
# You never want anyone getting to localhost, so make it secure using
Require local
</Directory>
</VirtualHost>
#
#
<VirtualHost *:80>
ServerName snipe-it
DocumentRoot "c:/wamp64/www/snipe-it/public"
<Directory "c:/wamp64/www/snipe-it/public/">
Options +Indexes +Includes +FollowSymLinks +MultiViews
AllowOverride All
# Just allow access from your subnet
Require ip 192.168.1
</Directory>
</VirtualHost>
#
<VirtualHost *:80>
ServerName kbcsnmpsrv01
DocumentRoot "c:/wamp64/www/snipe-it/public"
<Directory "c:/wamp64/www/snipe-it/public/">
Options +Indexes +Includes +FollowSymLinks +MultiViews
AllowOverride All
# Just allow access from your subnet
Require ip 192.168.1
</Directory>
</VirtualHost>
NOTE your subnet may be different, chcek it first!
Dont forget to restart the Apache service once you have made these changes to the httpd-vhosts.conf file---------------------------------------------------------------------------------------------
(Windows 10 Pro 64bit) (Wampserver 3.3.4 64bit) Aestan Tray Menu 3.2.5.4
<Apache versions MULTIPE> <PHP versions MULTIPLE> <MySQL Versions MULTIPLE>
<MariaDB versions MULTIPLE> <phpMyAdmin versions MULTIPLE> <MySQL Workbench 8.0.23>Read The Manuals Apache --
MySQL --
PHP --
phpMyAdminGet your Apache/MySQL/mariaDB/PHP ADDONs here from the
WAMPServer alternate Repo-X-X-X-
Backup your databases regularly Here is How dont regret it later! Yes even when developing -X-X-X-
Edited 1 time(s). Last edit at 11/04/2021 03:04PM by RiggsFolly.