> Dear Midgard liststers,
>
> Thankyou for your helpful suggestions. We still can't get the live site
> working. Here's what we've tried:
>
> 1. John suggested:
> Try changing the <VirtualHost 127.0.0.1:80> to
> <VirtualHost 192.168.0.193:80>.
>
> We have tried that one also <VirtualHost
> 192.168.0.193:80>..</VirtualHost>, and the result still the same

Common pitfal is improper NameVirtualHost definitions and further
derivatives. You should have similar to:

NameVirtualHost 192.168.0.193:80
NameVirtualHost 192.168.0.193:8001

<VirtualHost 192.168.0.193:80>
 ServerName www.walhi.int
 Port 80
....
</VirtualHost>

<VirtualHost 192.168.0.193:8001>
 ServerName www.walhi.int
 Port 8001
....
</VirtualHost>

Note: Exact form of NameVirtualHost is required and Port directives as well.

Solt


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to