Results 1 to 11 of 11

Thread: Option to use same install for multiple domains

  1. #1
    Join Date
    Aug 2011
    Posts
    17

    Wink Option to use same install for multiple domains

    This is a option that I would really like to see and I know many others out there as well would love it.

    Having the option to add a 2nd (or more) website/sub business into the same WHMCS account, even if the cost was the same for having a 2nd website linked into it.
    The amount of work it would save really would be worth it from what I've looked at and talked with other hosts.

    Sure you could work around this by setting up a main site for both businesses and then using the themes however that still creates almost more work than creating and using two WHMCS installs.

    I know that a lot of other business use Ubersmith because of this feature they support, from our standpoint this would help save a lot of time and headaches vs having to maintain and monitor two different setups.

    *Note to those who think of this idea being cheap on our end I would not mind paying extra for this feature or even the same price or a little extra in order to have that extra option.

  2. #2
    Join Date
    Jul 2010
    Posts
    645

    Default

    Yeah I agree with this. Most people when they mention this want the sub-licenses to be free which obviously wouldn't make sense from WHMCS's perspective but as you mentioned many of us would love to see this feature added even at full price for additional domains.
    Web hosting templates The best WHMCS & Wordpress + WHMCS templates | WHMCS Services

  3. #3
    Join Date
    Aug 2011
    Posts
    17

    Default

    Yes, I've seen a few people wanting this for free and can see why they would not agree with this as that would loose them out on money etc. Most people who would like to use this would be more than happy paying the extra cost to have this option.

    I just hate the thought of having to log into multiple accounts to try and keep track of things.

  4. #4
    Join Date
    Dec 2010
    Location
    Cumbernauld, Scotland, UK
    Posts
    731

    Default

    Why not do what I have done and have a white label central WHMCS installation
    Then all your customers are in there

    You can then have as many branded websites as you like, and the customers are none the wiser
    You setup the customer to a specific group (website name)
    It's a little clunky but for the extra click of a mouse, well worth it
    m8internet.com from Manage My Hosting
    Using WHMCS since 11 December 2011, running v5.0.3 since 27 April 2012

  5. #5
    Join Date
    Aug 2011
    Posts
    17

    Default

    I've been in the middle of setting this up, however for somethings it really becomes more work than it should have to be. The option to buy and have this host another site would be wonderful to have.

    Customers also dislike being switched to a new site for paying etc which is the main reason this would have to be used, support emails etc would make it pretty hard. It can be done however I just think the amount of work and issues it can be just sucks.

  6. #6
    Join Date
    Aug 2011
    Posts
    17

    Default

    A little bump for this as I feel this is a great thing many different providers I know a large amount of companies who would like to use this however end up using others that support multiple brands.

  7. #7
    Join Date
    Jan 2010
    Posts
    3

    Default

    This would be a great feature to have... We've been asking WHMCS for a multi-domain license option for a long time..

  8. #8
    Join Date
    Aug 2011
    Posts
    17

    Default

    Yes, I think one of their issues with it was most people when asking wanted multiple domains for free which I can see them not wanting to offer as that does not make them money however any business like mine or others here would love to have this option and even pay the extra money or same amount of money, heck I'd even pay a little more money to have another one on the same account as it would help my company save time and work not having to log into two or four different accounts and try to keep track of everything.

    Hopefully we can get a reply from one of them and maybe they are working on a feature like this or think about it.
    I like using whmcs however a large part of me wants to switch to another program which supports this as time is money.

  9. #9
    Join Date
    Jul 2008
    Location
    Northumberland, UK
    Posts
    2,774

    Default

    we manage OK with 3 websites all feeding off the same WHMCS as long as you have on the other sites that billing will be in the name of company A
    The Easyhost Media Group t/a Niceday Hosting
    FREE Browser Toolbar

  10. #10
    Join Date
    Aug 2011
    Posts
    17

    Default

    Billing, support etc, would then all be from that same said company.
    Not all people would like to have it setup like this. I know that's a way around this however it's not a clear fix for it which is something that they could build into this and then everything could be kept separate. (Which some people rather have)

  11. #11
    Join Date
    May 2010
    Posts
    18

    Default

    Sorry to jump right in here, but has anyone tried hard coding all HREF and IMG tags in the smarty template for the second domain?

    For example, I wrote a bash script to go through the smarty template for my DOMAIN2.com , where DOMAIN1.com is my main site :

    Code:
    #!/bin/sh
    
    for file in $(grep -il "img src\=\|.php" *.tpl)
    do
    echo "doing $file .. ."
    sed -i 's/img src\=\"/img src\=\"http:\/\/domain2.com\//g' $file
    done
    Replace "img src" with "a href" in the same script and you can easily replace all IMG and HREF references in the smarty template for domain2.com with hard coded links. This strategy coupled with the rewrite rules mentioned earlier, such as the following (I added an extra rule to avoid 301 looping) :

    Code:
    RewriteEngine On
    RewriteCond %{HTTP_HOST} domain2\.com$
    RewriteCond %{QUERY_STRING} !^systpl=domain2template
    RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}?systpl=domain2template [R=301,L]

    Separate branded support can be handled by the following actions :

    • separate support department with domain2.com
    • modifying the email templates to have the if-statements check which support department before displaying any domain or company name specific language (check the whmcs wiki for email template howto's)
    • Email autoresponders use the ${companyname} variable, unfortunately. I find that if you just enter a blank space for this in the WHMCS general settings, and hard code all tags that have ${companyname} in the templates for domain1.com and domain2.com , it will have minimal impact. Then name each support department with the full company name associated with each department and each autoresponder email will be 100% unique.


    Separate products might be a problem, but you could just have all your products hidden in whmcs and just have static selling pages that hard link to each respective product. It might not be ideal for everybody, but it would keep things 100% separate. Perhaps someone has a better suggestion for that.

    There are many things you could do to go even further, but I thought my experience would help others. I hope this helps!
    Linux VPS Hosting | *.hosting | 24x7x365 15 minute average support response time

Similar Threads

  1. Multiple form option within a same configuration
    By 6degres in forum Feature Requests
    Replies: 2
    Last Post: 07-14-11, 09:45 PM