I get this message. I have 4 applications of which 3 work fine and the fourth not.
hosts file looks like this (* used to sensor application names)
127.0.0.1 Out*****Series
::1 Out*****Series
127.0.0.1 M****Us
::1 M****Us
127.0.0.1 Paed
::1 Paed
127.0.0.1 Me****AQ
::1 Me****AQ
httpd-vhosts.conf setup like this
<VirtualHost *:80>
DocumentRoot "E:\WEB\Out*****"
ServerName Out*****Series
<Directory "E:\WEB\Out*****">
AllowOverride All
Require all granted
</Directory>
</VirtualHost>
<VirtualHost *:80>
DocumentRoot "E:\WEB\M****Us"
ServerName M****Us
<Directory "E:\WEB\M****Us">
AllowOverride All
Require all granted
</Directory>
</VirtualHost>
>>>>>>>>>>>>>THIS IS THE ONE GIVING ME THE FORBIDDEN MESSAGE -> OTHERS WORK
<VirtualHost *:80>
DocumentRoot "E:\WEB\Paed"
ServerName Paed
<Directory "E:\WEB\Paed">
AllowOverride All
Require all granted
</Directory>
</VirtualHost>
<VirtualHost *:80>
DocumentRoot "E:\WEB\Me****AQ"
ServerName Me****AQ
<Directory "E:\WEB\Me****AQ">
AllowOverride All
Require all granted
</Directory>
</VirtualHost>
What am I missing.
I did the net stop dnscache and net start dnscache.
I did restart all services in Wamp.
I restarted the machine. Still other 3 apps work, this one not.
Please help the blind to see again.