Kayako logo
SupportSuite, eSupport and LiveResponse Discussion, troubleshooting and feedback related to Kayako's flagship support desk products SupportSuite, eSupport and LiveResponse.

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  (#1) Old
gerardo Offline
New Member
 
Posts: 18
Join Date: Apr 2005
Submit ticket does not continue if using https - 11-04-2006, 02:40 PM

Hello,

I'm having problems submitting a ticket on my eSupport setup. I go to "Submit a Ticket" select the Department the click on "Next >>" button and it brings me back to the main page of the Support Center.

I have checked permissions on cache and files dirs. My apache logs show no error.

All this is due to redirection of all traffic on port 80 to port 443. When I comment out redirection (Rewrite rule) in httpd.conf it works fine; i.e. I can submit the ticket.

Is traffic handle differently for submitting a ticket? Any insight info?

Any ideas, hints, advice or help is much appreciated
Gerardo
   
Reply With Quote
  (#2) Old
gerardo Offline
New Member
 
Posts: 18
Join Date: Apr 2005
12-04-2006, 01:06 PM

Does anyone have kayako under https? Any feedback?
   
Reply With Quote
  (#3) Old
gerardo Offline
New Member
 
Posts: 18
Join Date: Apr 2005
12-04-2006, 01:18 PM

In case it helps somebody.

I found another post which helped:
http://forums.kayako.com/showthread....ighlight=https
I was missing the setting "Product URL" under General in Settings

The way I do traffic redirection is as follows:
---------- in httpd.conf ----------
#This module simply tells apache2 that all connections to
#port 80 need to go to port 443 - SSL - No exceptions
<IfModule !mod_rewrite.c>
LoadModule rewrite_module modules/mod_rewrite.so
</IfModule>
<IfModule mod_rewrite.c>
RewriteEngine on
# The line below sets the rewrite condition. That is,
if the server port does not equal 443, then this condition is true
ReWriteCond %{SERVER_PORT} !^443$
# The line below is the rule, it states that if above
condition is true, and the request can be any url, then redirect
to https:// plus the original url that was requested.
RewriteRule ^/(.*) https://%{HTTP_HOST}/$1 [NC,R,L]
</IfModule>
---------- httpd.conf ----------
   
Reply With Quote
Reply

Tags
continue, https, submit, ticket

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
Free Desktop screenshot to submit with ticket murryc Modifications & Addon Releases 6 27-08-2007 11:51 AM
Submit ticket starnge behaviour Laco SupportSuite, eSupport and LiveResponse 11 03-08-2007 06:01 PM
How do i/Bug? Disallow ticket submission for a usergroup Sheep How do I? 8 07-06-2007 03:18 PM
Submit Ticket is not creatign tickets RAJAYOGANAND SupportSuite, eSupport and LiveResponse 1 12-03-2006 10:29 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