I have installed a developers enterprise license on and followed all the steps here:
Configuring EPiServer CMS 5 R2 SP1 Enterprise:
http://world.episerver.com/en/Documentation/Items/Tech-Notes/EPiServer-CMS-5/EPiServer-CMS-5-R2-SP1/Configuring-EPiServer-CMS-5-Enterprise/#Configuration%20Restrictions
I have set up the second site in the IIS and pointed it to the same site as the original. The problem is that the new site seem to read the default template, even though the start page id is set correctly to the new top node I created in backoffice.
An example of the <sites> section with 2 sites set up, with <siteHosts> and <siteSettings> would be greatly appreciated.
Here is a simplified version of the sections I added:
<sites>
<site siteId="Site1" description="Site 1">
<siteHosts>
<add name="client1.company.se" />
<add name="*" />
</siteHosts>
<siteSettings ... pageStartId="1" ... siteUrl="http://client1.company.se/" uiUrl="http://client1.company.se/backoffice/" utilUrl="http://client1.company.se/Util/" siteDisplayName="Client Name 1" ... />
</site>
<site siteId="Site2" description="Site 2">
<siteHosts>
<add name="client2.company.se" />
</siteHosts>
<siteSettings ... pageStartId="2" ... siteUrl="http://client1.company.se/" uiUrl="http://client1.company.se/backoffice/" utilUrl="http://client1.company.se/Util/" siteDisplayName="Client Name 2" ... />
</site>
</sites>