Kayako logo
Installation & Upgrading Questions and issues regarding the installation and upgrade procedure of SupportSuite, eSupport and LiveResponse.

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  (#1) Old
msmartinwsx Offline
Member
 
Posts: 78
Join Date: Jul 2003
Multi Domain helpdesk. - 18-03-2006, 07:18 PM

OK Then.

After raising a helpdesk ticket asking the best way to do this and getting a reply that was really rather poor considering the product - I thought I would post to see what everyone else thinks.

If you have multiple groups/brands using the same SS install you have to use groups e.g brand1 and brand2 having to use a url such as http://helpdesk.com/?group=brand2

Now, that is all well and good until someone visits the helpdesk directly (either via book marks, another browser by entering the address from memory and to be presented with the default brand (brand1) and on the intended brand2.

As such, given the current form - the is very little point in the multi domain keys.

It would be much better for these settings to be held in the group configuration and then the URL requested is linked to this (from header information) and the correct group shown e.g

http://support.mybrand1.com > shows the brand1 group
http://support.mybrand2.com > shows the brand2 group

That way - there is complete anonymity and no references to either group.

The current system is very poor and something that I had hoped was better in v3 over v2.

Maybe Kayako (Varun) can tell us if he plans to change this or if this is how it is. If we have to change back to Cerberus (which copes with this perfectly, I would rather do it now than later).

M
   
Reply With Quote
  (#2) Old
Digital Mayhem Offline
Community Moderator
 
Digital Mayhem's Avatar
 
Posts: 889
Join Date: May 2005
Location: Henderson, Nevada
18-03-2006, 09:40 PM

Well here is a solution have your install at for example

http://www.whatever.com/support19ladjfal/

then create support.mybrand1.com and have it just forward too http://www.whatever.com/support19ladjfal/

then create support.mybrand2.com and have it just forward too http://www.whatever.com/support19ladjfal/
   
Reply With Quote
  (#3) Old
msmartinwsx Offline
Member
 
Posts: 78
Join Date: Jul 2003
18-03-2006, 09:42 PM

No - That does not deal with the issue in hand and does not answer my question as to what is the point of a multi-domain key if they cant use it in any useful way.

Despite wwhat SupportSuite hopes to achive with groups - it is implemented very poorly.
   
Reply With Quote
  (#4) Old
netFusion Offline
Member
 
Posts: 393
Join Date: Sep 2003
Location: My wife calls it the doghouse...
18-03-2006, 09:57 PM

Quote:
Originally Posted by msmartinwsx
. . . my question as to what is the point of a multi-domain key if they cant use it in any useful way.
I believe the point is to give you a price break such that you can run three "separate" installations on three "separate" domains.

When I read about it, that is how I interpreted it. I did not get the impression that it's purpse was to have one installation that combines support for three separate domains into one area...

Kayako will have to respond for the definitive answer, but I'm pretty sure that is how it is implemented...

Good luck!


netFusion Computer and Network Solutions
Web Site: http://www.netFusionKC.com
Web Store: https://www.netfusionkc.com/store/

Anything I say or do is my own opinion and may make absolutely no sense to anyone but me...
   
Reply With Quote
  (#5) Old
msmartinwsx Offline
Member
 
Posts: 78
Join Date: Jul 2003
18-03-2006, 10:03 PM

In some ways I agree - but then that it was I *thought* groups were for.

You template each group as per each of your brands. Then the multi domain key allows you to install SS onto each of those using the same database.

It looks to me as if something major is missing here. Having 3 (or however many) helpdesks is really not a time saver, let alone convinient!

Matt
   
Reply With Quote
  (#6) Old
Digital Mayhem Offline
Community Moderator
 
Digital Mayhem's Avatar
 
Posts: 889
Join Date: May 2005
Location: Henderson, Nevada
18-03-2006, 10:37 PM

Additional Domain Keys are for additional installation doesnt matter if they are ghost copies sharing the same database or if they are just totally different installations.... Now Template Groups dont require you to have Domain Keys as they aint ran on other domains....
   
Reply With Quote
  (#7) Old
msmartinwsx Offline
Member
 
Posts: 78
Join Date: Jul 2003
18-03-2006, 10:49 PM

I know template groups do not require you to have domain keys for each domain - I have not said once that they DO require you to.

Once again XETechnologies, you are missing my point.

If you have a multi-domain key with blah1.com and blah2.com you *should* be able to run X amount of different helpdesks without need to prepend group= or place in a subdirectory as you have said.

The reason this was posted here is because this forum is aptly named "Suggestions & Feedback"
   
Reply With Quote
  (#8) Old
mhunt Offline
Member
 
Posts: 63
Join Date: May 2005
19-03-2006, 10:09 AM

msmartinwsx....I agree that the way SS handles template groups using cookie controls does cause many end user frustrations. We receive dozens of calls a day from users whom have accidentally accessed another template group as they have entered a base URL instead of the redirect URL we have provided them.

I'm also interested to see if Varun has plans or options to achieve a better way to achieve the satellite helpdesks function, specifically for those who have purchased multiple domains, and wish to allocate these to a single SS database instance.

Mark
   
Reply With Quote
  (#9) Old
pwnm Offline
New Member
 
Posts: 4
Join Date: Oct 2005
19-03-2006, 01:11 PM

I would also put a strong vote in for this (changing the template group based on the hostname)
   
Reply With Quote
  (#10) Old
bear Offline
Community Moderator
 
Posts: 705
Join Date: Jan 2005
20-03-2006, 01:46 AM

Quote:
Originally Posted by msmartinwsx
If you have a multi-domain key with blah1.com and blah2.com you *should* be able to run X amount of different helpdesks without need to prepend group= or place in a subdirectory as you have said.
Simple enough to use mod_rewrite to fix this until such time as Kayako solves it.
Code:
RewriteEngine on
RewriteRule http://www.blah1.com$ http://www.blah1.com/?group=brand1 [L,R]
RewriteRule http://www.blah2.com$ http://www.blah2.com/?group=brand2 [L,R]
The above is untested, but should redirect any call to the root domain to instead deliver the ?group information.
   
Reply With Quote
  (#11) Old
Vagrant X Offline
New Member
 
Posts: 5
Join Date: May 2006
31-05-2006, 06:06 AM

Or if you don't have or can't assume you'll have a URL rewriter, just drop a check at the top of index.php (for example):

[mailer]

PHP Code:
<?php
  
if ( !isset( $_GET['group'] ) {
    if ( 
stristr$_SERVER['HTTP_HOST'], 'mydomain.name' ) > ) {
      
$_GET['group'] = 'mydomain';
    }
  }
?>
[/mailer]

There's still the problem of product URL links in the group's templates, which I posted on another thread - any suggestions on that front? (eg, keeping mydomain.name or myother.name in URLs, form POSTs, and so on)
   
Reply With Quote
  (#12) Old
MisterPopularity Offline
New Member
 
MisterPopularity's Avatar
 
Posts: 26
Join Date: Aug 2005
Location: Boston, MA
24-08-2006, 11:15 PM

Quote:
Originally Posted by Vagrant X
Or if you don't have or can't assume you'll have a URL rewriter, just drop a check at the top of index.php (for example):

[mailer]

PHP Code:
<?php
if ( !isset( $_GET['group'] ) {
if ( 
stristr$_SERVER['HTTP_HOST'], 'mydomain.name' ) > ) {
$_GET['group'] = 'mydomain';
}
}
?>
[/mailer]

There's still the problem of product URL links in the group's templates, which I posted on another thread - any suggestions on that front? (eg, keeping mydomain.name or myother.name in URLs, form POSTs, and so on)
actually, the above doesnt work for 3.00.90, so i've made this, which works fine.

PHP Code:
if (stripos$_SERVER['HTTP_HOST'], 'domain1.com' )) { 
$_GET['group'] = 'domain1.comtemplate';
}
else {
$_GET['group'] = 'defaulttemplate';

   
Reply With Quote
  (#13) Old
ckirby Offline
New Member
 
Posts: 4
Join Date: Aug 2006
Multi-domain helpdesk - 28-08-2006, 06:05 AM

I have to agree that the Kayako multi-domain support is poorly implemented and I would go as far as saying it simply does not work at all. It is useless. I used to use Cerberus Helpdesk which implemented this feature perfectly.

Although Kayako has its advantages over Ceberus, I feel that that the folks at Ceberus listen more carefully to customer requests and are much faster at implementing new features.

Kayako, I hope you are listening. I like your product and bought it for a reason but I am baffled as to why some glaring bugs and missing features take so long to fix or implement. There are some huge bugs that remain still broken after so long has passed. I hope something can be done about this.
   
Reply With Quote
  (#14) Old
velocis Offline
New Member
 
Posts: 2
Join Date: Jan 2007
Solutions To Multi-domain / Single Install - 04-01-2007, 12:42 AM

Yes I have to agree with all of you that the multi-domain support is a bit wanting and talking to Livesupport or logging tickets is like talking to an automated response machine that does not read your actual question.

will explain what i am trying to achieve and how close I got (but no cigar)

Need to setup one single installation of Kayako, with multiple domains (help.domain1.com, help.domain2.com, help.domain3.com) pointing to it.

We managed to setup the single instance, create multiple templates which is fine, and we then pointed the multiple domains to this.

Now we can go to the primary install domain (help.domain1.com) and specify index.php?group=domain2 and it will come up with the correct template and everything is fine, but we really want the url to be help.domain2.com as this is help for help.domain2.com.

If we go to help.domain2.com/index.php?group=domain2 it works and brings up the correct template and the domain looks correct, but as soon as we try and do anything involving a FORM/POST action then it defaults back to the domain help.domain.com, along with loading the wrong template off domain1.com which I still have a cookie for.

SOLUTIONS:
From what I can gather you could possibly try one of the following, any help on which ones would work would be good.

1. Use a mod_rewrite hack (going to test this)

2. Try using a FRAMED page with a TOP and BOTTOM section to spoof the URL

3. Somehow re-write the {$basepath} template variable somehow to reflect the current host.

4. Create 1 database and then create a GHOST install of the app for each domain you wish to use (this is not a very good solution as it means you need to do heaps of work each time you want to set up a new domain.)

Any help from people that know would be great
   
Reply With Quote
  (#15) Old
neosurge Offline
Member
 
Posts: 35
Join Date: Jun 2003
09-02-2007, 09:31 AM

Intrested in hearing a response on this item as well.
   
Reply With Quote
Reply

Tags
domain, helpdesk, multi

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
ERROR: Domain does not match license key file domain virtualp SupportSuite, eSupport and LiveResponse 1 12-02-2007 05:42 AM
Moving data to new domain suhailc SupportSuite, eSupport and LiveResponse 0 04-07-2006 07:49 PM
Which domain do you install your kayako? Success SupportSuite, eSupport and LiveResponse 0 10-01-2006 02:43 PM
ERROR: Domain does not match license key file domain jsnape SupportSuite, eSupport and LiveResponse 3 03-01-2006 03:40 AM



Powered by vBulletin® Version 3.7.2
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.2.0


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47