Monday 08 May 2006 7:57:54 pm
MIke, You might want to walk through the setup of your top-level nodes and ini files. For instance, this setup has 3 sites, each represented by a node. Underneath each node is the content for that domain:
ez_home
|--site_1_node
|----{all site_1 content is under here}
|--site_2_node
|----{all site_2 content is under here}
|--site_3_node |----{all site_3 content is under here} Then, in your /settings//override/site.ini.append.php file, map each domain to the respective node:
[SiteAccessSettings]
MatchOrder=host
HostMatchType=map
HostMatchMapItems[]=www.site1.com;site_1_node
HostMatchMapItems[]=www.site3.com;site_3_node HostMatchMapItems[]=www.site3.com;site_3_node If you do not want the top-level node of a site to show up in the URL, you can set the path prefix for each site. Here's one sample in /settings/siteaccess/site_1/site.ini.append.php:
[SiteAccessSettings] PathPrefix=site_1_node Also, check your permissions in the /settings/ folder. I forget which -- maybe "chmod 0755 -R /settings or chmod 0777 -R /settings/". Then clear all your caches from the command line: bin/shell/clearcache.sh --clear-all Hope this helps. -Luke
|