2 urls, 2 forums 1 xenforo

Thanks Brogan,

You might want to add "Multiple Domains" as I am not planning on using subdomains.

Yeah within those limits, please advise on cool ways to accomplish a US and UK version to co-exist within 1 install.
 
I'm looking to do similar with XF with my forums - expand to add more forums to the network, share common areas between all forums and then have seperate forums for the various seperate sites.

Each would require an XF license, which is fair enough, but currently no way to do the above, I'm going to end up having to code the functionality into XF.

I did a test run with VB 3.x a couple of years back and to be honest, its not ultra hard, just a bit of a brain ***k to work it all out, to be honest. until I dive into the XF code though, I won't know how hard or easy its going to be with XF.
 
why could you not point...

mydomain.com -> myxenforo.com/community/mydomain/
myseconddomain.com -> myxenforo.com/community/myseconddomain/

then apply different styles/skins to the sub-boards.

a corporate example,

http://unrealtournament.com there forums point to:
http://utforums.epicgames.com/forumdisplay.php?f=21
simple really - you might not want to use the same domain name for SEO or simply forum indenity purposes.

I.e. if I run a Honda forum and I want to expand to cover Toyota as well, I'd want two seperate forum domains.
 
Not sure if this works because I only have 1 domain name and haven't tried it.

Park your second domain and use this to display different logos depending on which domain was used to access the site.

<xen:if is="$_SERVER[HTTP_HOST] == 'www.domain-1.net'">
Logo link for domain-1
<xen:else />
Logo link for domain-2
</xen:if>
 
Top Bottom