Kayako logo
Will Implement (V4) Feature requests in this forum will be implemented in Version 4 of the product line (the current version).

Reply
 
LinkBack Thread Tools Search this Thread Rate Thread Display Modes
  (#1) Old
bradycreel Offline
New Member
 
Posts: 12
Join Date: Oct 2005
Lightbulb System -> LoginShare -> For staff and admin - 28-10-2005, 02:20 AM

Can we get a LoginShare module so I can use LDAP for my staff?

Also, any way to disable the public registration/login box?
   
Reply With Quote
  (#2) Old
Varun Shoor Offline
Chief Executive Officer
 
Varun Shoor's Avatar
 
Posts: 2,829
Join Date: May 2003
28-10-2005, 08:50 PM

We are planning to expand LoginShare to cover Staff and Admin Interface but have no set date for this.

Regards,

Varun Shoor


Varun Shoor (varun.shoor ]at[ kayako.com)
----------------------------------------------------------------
---
   
Reply With Quote
  (#3) Old
bradycreel Offline
New Member
 
Posts: 12
Join Date: Oct 2005
LDAP or AD login for staff? - 01-04-2006, 05:16 AM

I really, really want to get an LDAP login feature for staff. Anybody else?
   
Reply With Quote
  (#4) Old
craigbrass Offline
Senior Member
 
Posts: 5,552
Join Date: Jun 2005
Location: Cumbria, UK
01-04-2006, 02:33 PM

This has been suggested in the past. Varun has said he will be looking to extend LoginShare to the staff area in 3.1. We'll just have to wait and see.


Craig Brass - Kayako Forum Squatter (Note: I am NOT a staff member)

Icon Headquarters - Its Elixir - Web2Messenger
   
Reply With Quote
  (#5) Old
overworkedchimp Offline
New Member
 
Posts: 2
Join Date: Jan 2006
10-04-2006, 02:57 PM

Quote:
Originally Posted by bradycreel
I really, really want to get an LDAP login feature for staff. Anybody else?
Oh yeah!!!!!!!!!!!
   
Reply With Quote
  (#6) Old
jaga Offline
Member
 
Posts: 54
Join Date: Nov 2005
15-04-2006, 01:34 PM

I'd also like this feature.
   
Reply With Quote
  (#7) Old
bradycreel Offline
New Member
 
Posts: 12
Join Date: Oct 2005
LDAP or AD login for staff? - 21-09-2006, 09:21 PM

Are we ever going to see this feature?
   
Reply With Quote
  (#8) Old
slarson Offline
New Member
 
Posts: 26
Join Date: Jul 2006
Question Allow for both AD loginshare or SupportSuite login - 28-01-2007, 02:12 AM

Is there a way to allow for both AD loginshare or SupportSuite Login?

I have setup two template groups. One uses AD loginshare for our internal users (This is the default group). The other uses the SupportSuite Login Routine (Not the default group). I have also setup two ticketing departments. One to use the AD template and the other to use the supportsuite template.

I figured by setting this up I could allow for both my internal users and external customers to use the same site. But it does not look like I am able to do this since I so not see a register icon on my support center home page, just a AD login page. If there is something I am missing or need to explain my config further, please let me know. Thanks
   
Reply With Quote
  (#9) Old
brendan Offline
New Member
 
Posts: 20
Join Date: Dec 2006
20-03-2007, 01:56 AM

Any update on this? LDAP is used in most corps so I would like to see this available in staff CP.
   
Reply With Quote
  (#10) Old
Jamie Edwards Offline
Operations Manager
 
Jamie Edwards's Avatar
 
Posts: 5,256
Join Date: Jan 2006
Location: United Kingdom
09-08-2007, 10:14 PM

Quite possibly, in Version 4.


Jamie Edwards (jamie.edwards ]at[ kayako.com)
----------------------------------------------------------------
---
  • Submit bug reports here.
  • Submit support tickets via the members area.
  • Submit sales queries either via live chat or via e-mail.
  • There is no official ETA on Version 4.
  • This is not an official support forum - submit a support ticket.
   
Reply With Quote
  (#11) Old
sureshkumar.mr Offline
Member
 
Posts: 149
Join Date: May 2006
System -> LoginShare -> For staff and admin - 28-08-2007, 07:08 AM

We want to know whether it is possible to use Single Sign on facility for Staff and Admin module.

We have many staff users in different departments and it has become difficult to maintain. We can't keep a resource to create Staff ID and password when they join and delete their IDs when they leave the organization.

We will be having more control when we use single sign on, we can disable at one place.

Let us know if there are any workarounds.

Thanks & Regards,
SURESH KUMAR M R
   
Reply With Quote
  (#12) Old
craigbrass Offline
Senior Member
 
Posts: 5,552
Join Date: Jun 2005
Location: Cumbria, UK
28-08-2007, 08:51 AM

It isn't currently possible.

It is however in consideration for V4.


Craig Brass - Kayako Forum Squatter (Note: I am NOT a staff member)

Icon Headquarters - Its Elixir - Web2Messenger
   
Reply With Quote
  (#13) Old
caitlyntw Offline
Member
 
Posts: 99
Join Date: Jul 2006
26-09-2007, 04:34 AM

You can actually achieve this with some code modifications.

In /admin/index.php and /staff/index.php, around line 44, instead of

Code:
		// Authentication successfull, Generate a sessionid for this user
		$session->insertSession(SESSION_ADMIN, $staffid);
or
Code:
	// Authentication successfull, Generate a sessionid for this user
		$session->insertSession(SESSION_STAFF, $staffid);
put this
Code:
	// Authentication successfull, Generate a sessionid for this user
		$session->insertSession(SESSION_ADMIN, $staffid);
		$session->insertSession(SESSION_STAFF, $staffid);
Similar changes for the logout loop (line 73) in the /admin/index.php and /staff/index.php files.
Code:
} else if ($_REQUEST["_ca"] == "logout") {
	$result = $session->logoutSession(SESSION_ADMIN);
	$result = $session->logoutSession(SESSION_STAFF);
   
Reply With Quote
  (#14) Old
Varun Shoor Offline
Chief Executive Officer
 
Varun Shoor's Avatar
 
Posts: 2,829
Join Date: May 2003
26-09-2007, 06:07 AM

Quote:
Originally Posted by caitlyntw View Post
You can actually achieve this with some code modifications.

In /admin/index.php and /staff/index.php, around line 44, instead of

Code:
		// Authentication successfull, Generate a sessionid for this user
		$session->insertSession(SESSION_ADMIN, $staffid);
or
Code:
	// Authentication successfull, Generate a sessionid for this user
		$session->insertSession(SESSION_STAFF, $staffid);
put this
Code:
	// Authentication successfull, Generate a sessionid for this user
		$session->insertSession(SESSION_ADMIN, $staffid);
		$session->insertSession(SESSION_STAFF, $staffid);
Similar changes for the logout loop (line 73) in the /admin/index.php and /staff/index.php files.
Code:
} else if ($_REQUEST["_ca"] == "logout") {
	$result = $session->logoutSession(SESSION_ADMIN);
	$result = $session->logoutSession(SESSION_STAFF);
There is an isadmin flag set in for the staff team (swstaffgroup table). Please make sure you wrap the insertSession code based on that flag otherwise it basically opens up the admin cp to all staff users.

Regards,

Varun Shoor


Varun Shoor (varun.shoor ]at[ kayako.com)
----------------------------------------------------------------
---
   
Reply With Quote
  (#15) Old
tintin85 Offline
New Member
 
Posts: 8
Join Date: May 2007
LoginShare for Staff - 28-09-2007, 09:47 PM

I'm wondering how do you add Loginshare for the path staff.
http://mysite.com/staff
I want to change that login to authenticate with another service.

Thank you for replying,
Tin
   
Reply With Quote
Reply

Tags
>, admin, loginshare, staff

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes Rate This Thread
Rate This Thread:

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
Misc / General Admin -> Template groups -> LoginShare -> Order LoginShare List by Name craigbrass Will Implement (V3) 1 09-08-2007 04:30 PM
Ticket Purchaser (Pay-Per-Ticket System) greengiant Developers & Code 24 23-05-2007 04:14 PM
Staff / Admin / Users...?? Brent How do I? 7 19-05-2007 09:59 AM
New Build: 3.10.02 STABLE Ryan Lederman News and Announcements 0 05-03-2007 08:53 PM



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


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