veladzic20 Posted February 8, 2014 Share Posted February 8, 2014 hi , is it possible to have one whmcs licence and to install it on two sites connecting to one whm 0 Quote Link to comment Share on other sites More sharing options...
vec Posted February 8, 2014 Share Posted February 8, 2014 no, not really... 0 Quote Link to comment Share on other sites More sharing options...
Wajdan Posted February 9, 2014 Share Posted February 9, 2014 hi , is it possible to have one whmcs licence and to install it on two sites connecting to one whm You can have two websites connected to one whmcs installation. But You cannot have two whmcs installations using one license I am afraid. 0 Quote Link to comment Share on other sites More sharing options...
veladzic20 Posted February 9, 2014 Author Share Posted February 9, 2014 what do you mean with two sites one whmcs , i need one site with one domain (english) and another domain on another na language but same hosting 0 Quote Link to comment Share on other sites More sharing options...
vec Posted February 9, 2014 Share Posted February 9, 2014 you can't... 0 Quote Link to comment Share on other sites More sharing options...
palmzenith Posted February 9, 2014 Share Posted February 9, 2014 I'm afraid you cannot do that. 0 Quote Link to comment Share on other sites More sharing options...
PPNSteve Posted February 9, 2014 Share Posted February 9, 2014 That's kind of too bad.. for us who have multiple versions (.com, net. org, etc..) and similar spellings or related domains all pointing to one site it would be a mice feature to have (as long as SSL still redirects to the SSL domain) 0 Quote Link to comment Share on other sites More sharing options...
SeanP Posted February 10, 2014 Share Posted February 10, 2014 We have multiple domains pointed to our WHMCS install. We have redirect rules setup to redirect all domains, that are not the main domain we use, to the main domain. So, all the domains end up on the main domain, and we have one WHMCS with one license. As long as you end up on the domain licensed by WHMCS, you will be fine. You could even setup rewrite rules to point specific domains to a certain languages in WHMCS. For example: http://demo.whmcs.com/index.php?language=Spanish Is that what you're trying to accomplish? 0 Quote Link to comment Share on other sites More sharing options...
mscholten Posted February 13, 2014 Share Posted February 13, 2014 We have done this with some custom coding. We have multiple brands pointing to a single WHMCS installation. Depending on the brand the client group is automatically set and after that only from the correct brand messages are send to the client. Also the client only sees that brand. We can also easily do this for different languages. The only thing is that a URL (or at least the (sub)domain part) has to be unique for that brand/language. If you want me to look at it please send an email (in English) with all details to info@tools4isp.com. Yes we asked if this was allowed by WHMCS, as long as it is a single admin interface it is fine (and WHMCS provides support on the main URL). 0 Quote Link to comment Share on other sites More sharing options...
Greenix Posted February 13, 2014 Share Posted February 13, 2014 I had this set-up previously by creating 3 different template sets to match for each of the 3 front facing websites which was the same company just different services, but same WHMCS instance, same WHMCS checkout, etc. Then I linked directly to that template set for the visual effect. But.... for some reason within the last year, this stopped working. I'm not sure why. Did you find a way to get this working for yourself? 0 Quote Link to comment Share on other sites More sharing options...
ArtisanCodesmith Posted February 16, 2014 Share Posted February 16, 2014 You can connect more than one domain by parking them or adding them as an addon domain. You can then use PHP to detect the URL and load different stylesheet, scripts, execute different code or even load entire new templates based on what the domain is set to which would create the effect of different branding/websites all on one installation. A very quick example would be: <?php switch ($_SERVER['SERVER_NAME']) { case "awebsite.com": // Load a stylesheet, template or echo some JavaScript or JQuery break; case "anotherwebsite.com": // Load a stylesheet, template or echo some JavaScript or JQuery break; case "yetanotherwebsite.com": // Load a stylesheet, template or echo some JavaScript or JQuery break; default: // None of the above break; } ?> 0 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.