I am trying to run 2 copies of oxwall on different urls same server.
One work just fine as the 1st virtual host in apache.
The second (which was a copy of 1st) does not work and the server reverts to the 1st one.
here is the http.conf (last part)
# Listen for virtual host requests on all IP addresses
NameVirtualHost *:80
Include "c:/wamp/alias/*"
<VirtualHost 89.20.200.69:80>
ServerName www.earthus.net
DocumentRoot "c:/wamp/www/oxwall"
# Other directives here
<Directory "C:/wamp/www/oxwall">
allow from all
order allow,deny
AllowOverride All
DirectoryIndex index.php
</Directory>
</VirtualHost>
<VirtualHost 89.20.200.69:80>
ServerName www.earthuk.net
DocumentRoot "c:/wamp/www.test/oxwall"
# Other directives here
<Directory "C:/wamp/www.test/oxwall">
allow from all
order allow,deny
AllowOverride All
DirectoryIndex index.php
</Directory>
</VirtualHost>
any ideas ?