Kayako logo
Modifications & Addon Releases Modification guides and addons are posted here to share with the community. Do not post requests in here!

Notices

Reply
 
LinkBack Thread Tools Search this Thread Rating: Thread Rating: 9 votes, 5.00 average. Display Modes
  (#16) Old
despiria Offline
New Member
 
Posts: 3
Join Date: Sep 2008
23-10-2008, 02:54 AM

Will this work for esupport 3.11.01????

Thank you, looks like a great addition I've been after for some time now.

Last edited by despiria; 23-10-2008 at 03:16 AM..
   
Reply With Quote
  (#17) Old
Matthew Offline
Member
 
Matthew's Avatar
 
Posts: 197
Join Date: Oct 2007
Location: Jakarta, Indonesia
23-10-2008, 04:23 PM

Quote:
Originally Posted by despiria View Post
Will this work for esupport 3.11.01????

Thank you, looks like a great addition I've been after for some time now.
It should work, but I wouldn't try anything unless you've had a bit of code experience. You risk breaking things. At least you can restore templates if you mess them up. Backup your files.


Matthew Arciniega
+ Free: Ticket List & Search Mods
| Dept. Display Names
+ Free: (Almost) Perfect Outlook/HTML Tickets
+ Tutorials: SLA System Explained
| Using Template Groups
Kayako v3.20.02 | PHP: 5.2.6 | MySQL: 5.0.58 | CentOS 4
   
Reply With Quote
  (#18) Old
NoFate Offline
New Member
 
Posts: 14
Join Date: Oct 2008
23-10-2008, 07:05 PM

there is something strange...

When i am logged in with a user and i do a search i get MORE results then when i am not logged in....

I created a link from another portal site to search in this support suite.

Here is the code :

so i enter

www.blabla.com/supportsuite/navision?id=12345

code :

<?php
$myvar1=$HTTP_GET_VARS["id"];
?>
<html>
<body onLoad="document.navision.submit()">
<form name="navision" action="search.php" method="post" onsubmit="new Ajax.Updater('search_results','search.php',
{asynchronous:true,evalScripts:true,parameters:For m.serialize(this)});return false;">

<script src="/javascripts/prototype.js" type="text/javascript"></script>
<script src="/javascripts/effects.js" type="text/javascript"></script>
<script src="/javascripts/controls.js" type="text/javascript"></script>
<table width="100%" border="0" cellspacing="1" cellpadding="4">
<tr>
<td width="79%"><input name="s_query" type="hidden" class="searchtext"
value="<? echo $myvar1; ?>" ></td>
<td width="21%"><input type="submit" name="Submit" value="" ></td>
</tr>
<tr>
<td colspan="2"><select name="searchfield" class="searchselect">
<option value="subject"></option>

</select></td>
</tr>
</table>
</form>
<div id="search_results"></div>
</body></html>
   
Reply With Quote
  (#19) Old
NoFate Offline
New Member
 
Posts: 14
Join Date: Oct 2008
23-10-2008, 07:10 PM

an example

so i enter www.blabla.com/supportsuite/navision?id=11888

when i am already logged (same open browser) in into support suite i get :



not logged in , new browser :



so not logged in = less hits...

any ideas?
   
Reply With Quote
  (#20) Old
despiria Offline
New Member
 
Posts: 3
Join Date: Sep 2008
24-10-2008, 01:43 AM

Quote:
Originally Posted by Matthew View Post
It should work, but I wouldn't try anything unless you've had a bit of code experience. You risk breaking things. At least you can restore templates if you mess them up. Backup your files.
Thanks for the headup!!! much appreciated

Will let you know how i go!
   
Reply With Quote
  (#21) Old
Matthew Offline
Member
 
Matthew's Avatar
 
Posts: 197
Join Date: Oct 2007
Location: Jakarta, Indonesia
24-10-2008, 09:14 AM

NoFate, if you've installed correctly then you should not even have the ability to search when a user is not logged on. The search box shouldn't even be appearing.

You know, now that we've got this cool mod, and the status filter is working, and managers are restricted to their own groups... we also need two more things:
  1. An indicator (in the navbar, in the account area?) to show a persons status as a manager
  2. a way for managers to tick a box to only show their own tickets. Or the other way around: default to show only the manager's tickets, but show all tickets in the group once a box is ticked.
Who will step forward...?


Matthew Arciniega
+ Free: Ticket List & Search Mods
| Dept. Display Names
+ Free: (Almost) Perfect Outlook/HTML Tickets
+ Tutorials: SLA System Explained
| Using Template Groups
Kayako v3.20.02 | PHP: 5.2.6 | MySQL: 5.0.58 | CentOS 4
   
Reply With Quote
  (#22) Old
judgepg Offline
New Member
 
Posts: 4
Join Date: Jul 2008
24-10-2008, 11:08 AM

Quote:
Originally Posted by Matthew View Post
NoFate, if you've installed correctly then you should not even have the ability to search when a user is not logged on. The search box shouldn't even be appearing.

You know, now that we've got this cool mod, and the status filter is working, and managers are restricted to their own groups... we also need two more things:
  1. An indicator (in the navbar, in the account area?) to show a persons status as a manager
  2. a way for managers to tick a box to only show their own tickets. Or the other way around: default to show only the manager's tickets, but show all tickets in the group once a box is ticked.
Who will step forward...?
Good ideas. I would like to add a third point here:

3. Search criteria highlighting in tickets. Searching on keywords not only brings up the tickets, but actually highlights those keywords in the ticket.


Kayako: 3.2 | PHP: 5 | MySQL: 5 | Windows 2003 Server
   
Reply With Quote
  (#23) Old
NoFate Offline
New Member
 
Posts: 14
Join Date: Oct 2008
24-10-2008, 06:16 PM

Quote:
Originally Posted by Matthew View Post
NoFate, if you've installed correctly then you should not even have the ability to search when a user is not logged on. The search box shouldn't even be appearing.
Matthew, thats why i reacreate the form in another .php file.

its working but it just doesnt list all items, any clue?
   
Reply With Quote
  (#24) Old
NoFate Offline
New Member
 
Posts: 14
Join Date: Oct 2008
25-10-2008, 08:19 AM

Matthew , a different approach.

With this link you can directly login to the website :

hxxp://server.com/index.php?_m=core&_a=login&loginemail=user@site.co m&loginpassword=54321

Is it possible to add an attribute like &search=....

http://server.com/index.php?_m=core&_a=login&loginemail=user@site.co m&loginpassword=54321&search=blabla

So that string is already in the textfield so you only have to push on the button "search". it would make this application nice if you link it from another webapplication...

Last edited by NoFate; 25-10-2008 at 08:21 AM..
   
Reply With Quote
  (#25) Old
myonforcepro Offline
New Member
 
myonforcepro's Avatar
 
Posts: 6
Join Date: Nov 2008
Location: Nevada, USA
06-11-2008, 08:12 PM

A question: I see this has within the hierarchy a modules/tickets/client_tickets.php file, but within the instructions also included, it says nothing regarding this file. I did another modification to this file which was a complete overwrite. Is this file necessary to the function of the mod, and if so, can you perhaps include what changes were made so I can 'hack' it into the file?

Last edited by myonforcepro; 06-11-2008 at 08:12 PM.. Reason: spelling
   
Reply With Quote
  (#26) Old
joshuah Offline
Member
 
Posts: 141
Join Date: Oct 2007
bug - 07-11-2008, 12:46 AM

hello there, i have installed the most recent version of this one...

the problem iam experiencing is when i use the search and use the word 'hello' under message details.. it brings up tickets which do not belong to the user...

the error message is displayed when i click on that ticket it returns in the search:

Fatal error: ERROR: You do not have access to this ticket. in C:\wamp\www\modules\tickets\client_tickets.php on line 229
   
Reply With Quote
  (#27) Old
keyguru Offline
New Member
 
Posts: 19
Join Date: May 2006
11-11-2008, 05:56 PM

Quote:
Originally Posted by Hawkwing View Post
Hi. testing this at my testserver and I found out that the ticket id search doesnt work properly. I have sequential (1,2,3....) but when I search for 4 i get the random id (OOI-280731 (0 replies) Is there anything I can do in the code to correct this?
I can confirm it. I have modified the search.php code by replacing `ticketmaskid` with 'ticketid' which solved the issue. Please note, I am not a programmer, I just intuitively made this adjustment and it worked. It would be great if somebody with programming knowledge can confirm this adjustment.
   
Reply With Quote
  (#28) Old
Joost Sanders Offline
Member
 
Joost Sanders's Avatar
 
Posts: 64
Join Date: Nov 2008
Location: Eindhoven, Netherlands
14-11-2008, 03:02 PM

This modification looks really nice (although it should already have been a part of the SupportSuite of course).
I will try and see how it works with a customized client interface.


---
Joost Sanders
CARE Internet Services Netherlands
Kayako Consultancy & Services
http://www.care.nl
   
Reply With Quote
  (#29) Old
VineHosting.com Offline
New Member
 
Posts: 22
Join Date: Oct 2005
3.40.01 --> will this mod work? - 23-12-2008, 01:00 AM

Matthew -

The latest version has been released just today
Dec 22nd 2008.

I am interested in knowing if anyone has tested this on 3.40.x
Sadly - i don't want to take down an already working desk to test this
   
Reply With Quote
Reply

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
Ticket update returns to ticket list efisher SupportSuite, eSupport and LiveResponse 2 08-04-2008 05:49 PM
Client team notifcation of ticket interactions richm Think Tank 1 09-08-2007 08:57 PM
Required field validation if client sends ticket via email richm SupportSuite, eSupport and LiveResponse 0 25-05-2007 04:31 AM
New Build: 3.10.02 STABLE Ryan Lederman News and Announcements 0 05-03-2007 09:53 PM



Powered by vBulletin® Version 3.7.5
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.2.0
Help desk software by Kayako.


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 48