Kayako logo
Now Implemented (V3) Feature requests that have been implemented.

Reply
 
LinkBack (1) Thread Tools Search this Thread Rate Thread Display Modes
  (#31) Old
craigbrass Offline
Senior Member
 
Posts: 5,319
Join Date: Jun 2005
Location: Cumbria, UK
22-03-2008, 10:05 AM

It is under Will Implement for V3 but no date has been set for it.


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

Icon Headquarters - Its Elixir - Web2Messenger
   
Reply With Quote
  (#32) Old
Jamie Edwards Offline
Operations Manager
 
Jamie Edwards's Avatar
 
Posts: 5,025
Join Date: Jan 2006
Location: United Kingdom
22-03-2008, 11:28 AM

Quote:
Originally Posted by averkiev View Post
Have you finished testing yet? When the instructions are going to be available?

It's really stupid that this feature is not supported out of the box
Hi averkiev; we have just about finished testing and should be providing instructions / the appropriate changes to the code base in the next minor release (3.20.03).

Regards,


Jamie Edwards (jamie.edwards ]at[ kayako.com)
----------------------------------------------------------------
---
  • New to the forum? New user's guide here.
  • 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.
   
Reply With Quote
  (#33) Old
Jamie Edwards Offline
Operations Manager
 
Jamie Edwards's Avatar
 
Posts: 5,025
Join Date: Jan 2006
Location: United Kingdom
23-03-2008, 12:33 AM

Please see the tracker entry for this: Kayako Bug Tracker - Viewing Issue #357 - Full SSL support inc. for chat icon/loader


Jamie Edwards (jamie.edwards ]at[ kayako.com)
----------------------------------------------------------------
---
  • New to the forum? New user's guide here.
  • 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.
   
Reply With Quote
  (#34) Old
Jamie Edwards Offline
Operations Manager
 
Jamie Edwards's Avatar
 
Posts: 5,025
Join Date: Jan 2006
Location: United Kingdom
24-03-2008, 11:23 AM

Quote:
Originally Posted by pkreil View Post
If someone encounters any problems with https-Support, just add the following code to .htaccess (mod_rewrite is needed) and everything will be fine without any modification to the code:

Code:
 RewriteEngine On

RewriteCond %{SERVER_PORT} !^443$
# RewriteCond %{REQUEST_FILENAME} !/cron/index.php
RewriteRule (.*) https://%{SERVER_NAME}%{REQUEST_URI} [R=301,L]
Second Condition is only needed if Cron is triggered external and fails if redicrectet to https.


Jamie Edwards (jamie.edwards ]at[ kayako.com)
----------------------------------------------------------------
---
  • New to the forum? New user's guide here.
  • 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.
   
Reply With Quote
  (#35) Old
averkiev Offline
New Member
 
Posts: 2
Join Date: Mar 2008
24-03-2008, 12:00 PM

Unfortunately this .htaccess trick won't help customers using Kayako in shared Windows-based hosting environments.

Last edited by averkiev; 24-03-2008 at 12:19 PM.
   
Reply With Quote
  (#36) Old
mrloofer Offline
New Member
 
Posts: 2
Join Date: Feb 2008
24-03-2008, 12:18 PM

Why can't SSL be implemented for hosted version of this? helpserve.com can be certificated and implemented within hours. I don't get it ?
   
Reply With Quote
  (#37) Old
craigbrass Offline
Senior Member
 
Posts: 5,319
Join Date: Jun 2005
Location: Cumbria, UK
24-03-2008, 02:03 PM

Quote:
Why can't SSL be implemented for hosted version of this? helpserve.com can be certificated and implemented within hours. I don't get it ?
Although I am not a hosted customer, I also wondered this. Kayako could either setup a shared SSL and / or allow customers to purchase SSL certs and support install them for the user (which they can do easily with the server using Plesk on it).


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

Icon Headquarters - Its Elixir - Web2Messenger
   
Reply With Quote
  (#38) Old
Jamie Edwards Offline
Operations Manager
 
Jamie Edwards's Avatar
 
Posts: 5,025
Join Date: Jan 2006
Location: United Kingdom
24-03-2008, 02:24 PM

I'll look into the possibilities of it.


Jamie Edwards (jamie.edwards ]at[ kayako.com)
----------------------------------------------------------------
---
  • New to the forum? New user's guide here.
  • 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.
   
Reply With Quote
  (#39) Old
pkreil Offline
Member
 
Posts: 36
Join Date: Feb 2008
24-03-2008, 04:33 PM

Quote:
Originally Posted by averkiev View Post
Unfortunately this .htaccess trick won't help customers using Kayako in shared Windows-based hosting environments.
You need Apache as Webserver to use mod_rewrite, that's correct.
On IIS, you can add Components like ISAPI_Rewrite <http://www.isapirewrite.com> (other will work as well) to add URL-Rewriting capabilities.

I can't provide further help on this because we don't use IIS
   
Reply With Quote
  (#40) Old
jnet Offline
Member
 
Posts: 505
Join Date: Mar 2008
31-03-2008, 09:57 AM

I need to solve this too
   
Reply With Quote
  (#41) Old
mylove4life Offline
New Member
 
Posts: 19
Join Date: Mar 2008
12-05-2008, 09:52 PM

it works , but have to modify the popup as well...


Quote:
Originally Posted by B00MER View Post
Scenerio, kayako installed under subdir /support/ off public_html

Edit modules/livesupport/visitor_htmlcode.php

Locate:

PHP Code:
ob_start(); 
BEFORE this line add:

PHP Code:
$_SWIFT["swiftpath"] = "/support/"
Next locate:

PHP Code:
$proactivetmpl $template->displayTemplate("proactivechatdiv"); 
Change this line to:

PHP Code:
$proactivetmpl eregi_replace('http://www.yourdomain.com/support/',"/support/",$template->displayTemplate("proactivechatdiv")); 
Next locate:

PHP Code:
document.write("<?php echo addslashes(str_replace("\n"""str_replace("\r\n""\n",$template->displayTemplate("chatimage")))); ?>");
Change this line to:

PHP Code:
document.write("<?php echo addslashes(str_replace("\n"""str_replace("\r\n""\n",eregi_replace('http://www.yourdomain.com/support/',"/support/",$template->displayTemplate("chatimage"))))); ?>");
Also be sure you are using https within the JS include statement that you've pasted anywhere:
Code:
<!-- Begin SupportSuite Javascript Code -->
<script language="javascript" src="https://www.yourdomain.com/support/visitor/index.php?_m=livesupport&_a=htmlcode"></script>
<!-- End SupportSuite Javascript Code -->
This should cause the JS to load over HTTPS, and any subsequent image requests from within visitor_htmlcode.php that the above script src includes to be rewritten to just /support/ instead of 404 - Not Found making the Mixed HTTP/HTTPS errors disappear.

NOTE, obviously your going to want to change yourdomain.com and support to your relative kayako installation domain and directory.

Hope this helps anyone out, until Kayako can come up with a better out of box resolution.
   
Reply With Quote
  (#42) Old
jphaynes1966 Offline
New Member
 
Posts: 4
Join Date: Apr 2008
Location: Broomfield, CO US
SSL Issue creates multiple pop-ups in IE7 - 04-06-2008, 10:52 PM

We are trying to run our entire site under SSL and are getting those annoying pop-ups in Windows Internet Explorer 7 stating that there are insecure items on the page. We temporarily fixed this by editing the file staffcpmenuclick.js (this is in the cache directory) and replacing the calls to URL's that pull images using HTTP to HTTPS.

Does anyone know how this file is generated and/or if there is a way to fix the program that generates this cache file?

Thank you.

J. Haynes
MindWorks Incorporated.
   
Reply With Quote
  (#43) Old
jeffshead Offline
New Member
 
jeffshead's Avatar
 
Posts: 24
Join Date: Jun 2008
05-06-2008, 12:17 AM

B00mer's fix does not work for me (Kayako v.3).

When I access the client area via https and login as a client, I get the following alert from FF 2.0.0.14 when clicking on the Login button:




I then removed all of the changes and tried the .htaccess fix. This does not work for me either.

If I access http://www.mysite.com/support/, I do get redirected to https://www.mysite.com/support/ but, the login fails and I still get the same FF alert.

UPDATE: I think I fixed it so only the .htaccess fix is needed!!!

I forgot to...
Make sure the URL entered in your software Admin CP > Settings > General matches the URL using which you are accessing the helpdesk with.

From this thread: HTTPS problems

UPDATE #2: Get warning about displaying nonsecure items when accessing Admin control panel.

The icons do not display in the dashboard. When I right click them and view the properties, the images' URL starts with http.

Anyone have any ideas on how to fix the issue with the icons?

Last edited by jeffshead; 05-06-2008 at 02:34 AM.
   
Reply With Quote
  (#44) Old
jeffshead Offline
New Member
 
jeffshead's Avatar
 
Posts: 24
Join Date: Jun 2008
05-06-2008, 02:49 AM

Quote:
Originally Posted by jphaynes1966 View Post
We are trying to run our entire site under SSL and are getting those annoying pop-ups in Windows Internet Explorer 7 stating that there are insecure items on the page. We temporarily fixed this by editing the file staffcpmenuclick.js (this is in the cache directory) and replacing the calls to URL's that pull images using HTTP to HTTPS.

Does anyone know how this file is generated and/or if there is a way to fix the program that generates this cache file?

Thank you.

J. Haynes
MindWorks Incorporated.
My issue (UPDATE #2) from my previous post, is caused by 'cpadminnavbar.js' which is also located in the 'cache' directory. All of the URL's start with http. All of the URL's in my 'staffcpmenuclick.js' file start with https.

Anyone have any ideas?
   
Reply With Quote
  (#45) Old
jeffshead Offline
New Member
 
jeffshead's Avatar
 
Posts: 24
Join Date: Jun 2008
05-06-2008, 03:50 AM

Quote:
Originally Posted by jeffshead View Post
My issue (UPDATE #2) from my previous post, is caused by 'cpadminnavbar.js' which is also located in the 'cache' directory. All of the URL's start with http. All of the URL's in my 'staffcpmenuclick.js' file start with https.

Anyone have any ideas?
I just deleted all of the files in the 'cache' directory and so far, all is working great with https!
   
Reply With Quote
Reply

Tags
>, absolute, pages, ssl or nonssl, support

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

LinkBacks (?)
LinkBack to this Thread: http://forums.kayako.com/f93/system-absolute-support-ssl-non-ssl-pages-4612/
Posted By For Type Date
Kayako Bug Tracker - Viewing Issue #357 - Full SSL support inc. for chat icon/loader This thread Refback 23-03-2008 12:30 AM

Similar Threads
Thread Thread Starter Forum Replies Last Post
SLAs -> Option to completely disable SLA and escalation system Jamie Edwards Now Implemented (V4) 1 31-01-2008 12:37 PM
New Build: 3.10.02 STABLE Ryan Lederman News and Announcements 0 05-03-2007 09: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