Sunday 18 June 2006 3:47:06 am
hi, I think your problem is more related to a wrong apache (VHOST) config:
Remove all modification in your /etc/hosts file. Then make sure, that your domain including all subdomains is correctly pointing to your server (you could check this simply by pinging your subdomain and check if there is a response from the right ip).
Then check your apache config: You should have all domain-names und subdomains in your vhost config (www is also a subdomain that must be configured!):
<VirtualHost 83.76.66.133>
...
DocumentRoot [PATH_TO_YOUR_EZ_ROOT]
ServerName www.linuxorable.net
ServerAlias linuxorable.net admin.linuxorable.net assoc.linuxorable.net
...
</VirtualHost>
Than modify override/site.ini.append.php:
[SiteAccessSettings]
CheckValidity=false
AvailableSiteAccessList[]=linuxorable
AvailableSiteAccessList[]=admin
AvailableSiteAccessList[]=linuxorable_assoc
MatchOrder=host
HostMatchMapItems[]=linuxorable.net;linuxorable
HostMatchMapItems[]=www.linuxorable.net;linuxorable
HostMatchMapItems[]=admin.linuxorable.net;admin
HostMatchMapItems[]=assoc.linuxorable.net;linuxorable_assoc
Make sure, that the respective configuration directories under settings/siteaccess/[linuxorable|admin|linuxorable_assoc] exist and atleast contain a site.ini.append.php file with custom siteaccess specific configuration options.. cheers, patrick
Best regards,
Patrick
|