Kayako logo
How do I? Questions about how to do specific things in SupportSuite, eSupport and LiveResponse. Not for reporting problems.

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  (#1) Old
nellermann Offline
New Member
 
Posts: 1
Join Date: Oct 2007
Location: USA - Falls Church, VA
Forcing my eSupport guest to use HTTPS - 06-10-2007, 06:30 PM

I didn't have much luck finding good advice to force my eSupport users to a secure HTTPS path. (If this feature is built in to the product, I missed it!) So I experimented with about four different ways to make the website handel this automaticlly. The best method I have found is the following.

Edit the index.php file in the root of the eSupport website.

Add the following just below the Kayako Copyright:

/**
* ###############################################
* Custom Addition - Check for Secure port
* ###############################################
*/
if($_SERVER['SERVER_PORT'] == '443')
{
//echo "Secure Connection";
} else {
//echo "Connection Not Secure";
// Change to the URL you want to redirect to
$URL=https://support.myexampledomain.com/;
header ("Location: $URL");
}

//End Example

This was the easiest option that I found after trying different tricks in IIS.
   
Reply With Quote
  (#2) Old
craigbrass Offline
Senior Member
 
Posts: 5,712
Join Date: Jun 2005
Location: Cumbria, UK
06-10-2007, 06:39 PM

Thanks for sharing that with the community!


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

Icon Headquarters - Its Elixir - Web2Messenger
   
Reply With Quote
Reply

Tags
esupport, forcing, guest, https

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
eSupport v2.2 Stable Released Varun Shoor News and Announcements 3 24-06-2004 12:39 AM
eSupport v2.2 RC2 Released Varun Shoor Technical Chat 1 11-06-2004 11:24 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