How to add an email verify field
How to make v1.9.14 Open ticket form responsive
how to add columns to ticket list and to user list?
Add external link outside to the main menu in class.nav.php
My apologies if anyone has done this, as I've searched for weeks trying to find the answer.
On the landing page on the Main Menu, there is Support Center Home.... Open A New Ticket... Check Ticket Status.
1 of our biggest bugs is having the support center open up into a new tab or window, and we wanted to keep everything together so customers can click away using the same window.
in class.nav.php
The default menu for example is.... $navs['new']=array('desc'=>__('Open a New Ticket'),'href'=>'open.php','title'=>'');
So after searching and looking into things we discovered that it will never accept http://yoursite.com, or any other type of link you want customers to go to, unless you want to put a link in the landing page only. Which by doing that, wont carry to the other php pages.
So here's what we've done to add another external outside link for customers to come back to our main site once there done.
1) go to class.nav.php and copy / paste $navs['new']=array('desc'=>__('Open a New Ticket'),'href'=>'open.php','title'=>''); and put in the order of your choice where you want it to be in the main menu...
then change to $navs['main-site']=array('desc'=>__('Back to Main Site'),'href'=>'main-site.php','title'=>''); or anything else you'd like, and save the file.
2) we need to create a php page and redirect to the site of your choice by placing a redirect script in the page.
3) Open note pad and place this code in note pad, and save it as main-site.php which is the same name as the last bit of the link
4) change the location URL to whatever you want for your customer to go to.
<?php
/* Redirect browser */
header("Location: http://yoursite.com/");
/* Make sure that code below does not get executed when we redirect. */
exit;
?>
4) upload the file to the main directory where index.php is. example. subdomain.com/support/index.php
That's it, You'll now be able to have customers go to any place you'd like without opening tabs and 15 different windows ect.
Resizing form data field to hold many addresses
Server Information | |
---|---|
osTicket Version | v1.9.14 (8b927a0) — Up to date |
Web Server Software | Apache/2.2.31 (Unix) mod_ssl/2.2.31 OpenSSL/1.0.1e-fips mod_bwlimited/1.4 |
MySQL Version | 5.6.33 |
PHP Version | 5.5.34 |
Add Skype / Twitter field to landing page?
Hi.
Anybody know if there's a way to add an extra field to the landing page without hacking the HTML and MySQL? Because of our international customers, I'd like to add a Skype/Twitter field below the Phone field (please see screenshot).
Thanks!

Ticket Statistics - Date Picker
Hi Guys,
I was hoping I might be able to modify the dashboard.php and the report timeframe fields.
Currently, the first field is a date picker but the second is a static drop down list of intervals (Up to Today, One Week, Two Weeks etc).
Is it possible to change the second field to a date picker also?
Our end goal, is to be able to see how many tickets have been created in a date range.
We previously had the 'reports' mod in an existing install of OsTicket (that I didn't setup).
It doesn't appear there's a free/limited version of this mod.
Any help would be much appreciated.
How to domain mapping fileds on osTicket?

Our customer osTicket build

Features
- Bookmark tool bar at the top
- frequently access urls
- As you click and draw, a socket.io backend makes sure all other instances have the same drawing
- If there are keywords in a ticket, it links to our internal documentation on how to fix the issue
- Each member has there own and can access every one elses
ost_file_chunk table management
I'm running osTicket 1.9.12 on xampp infrastructure on Win 2008 Server, and as in the title, I need to face the problem of manage the ost_file_chunk table.
Saving attachment on db is a requirement and 90% of the backup space (around 5GB after 2 months) is made by file chunks in the table.
So, I thought that having a routine that periodically (e.g. once per month) deletes attachments that refers to tickets that have been closed more than a month ago, would solve somehow the problem of having a huge ost_file_chunk table. In this way I would keep ticket threads also for older tickets loosing just the attachments.
So the question now is: what I'm missing in the big picture? which would be the pros and cons of such a strategy? Any other ideas?
Thank you in advance for time and advices you will share here.
Gianlukas
Osticket - TimeMod - help
I installed this great mod (TimeTracking) i have discovered on this thread : http://osticket.com/forum/discussion/78064/time-spent-manual-mod/p2
So i downloaded from here : https://www.strobe-it.co.uk/services/opensource/ but iam confused with the notice. However i saved my files first then erased with the downloaded and i run the commands through phpmyadmin. Everything seems to be updated because i can see in the "list" :

But... i dont understand how it works ? Whats the next steps ? I tried to create a new bill but when i log in as technician i have no "cell" talking about timespent.
Hope you could understand, sorry for my eng. Thx you.
P.S : my osticket version : 1.9.14
Change search
Completar información de Formulario general según el tema de ayuda seleccionado
Custom Ticket Form
users can edit form fields
from the title you might have guessed what this is about :)
what I want is just that a user can edit the form fields in a ticket even if it's already submitted.
is there a function for that or there has to be a source/code edit :)
Reporting Mod Where in the world is Scottro
Change Status automatically
1.10 How to add Full Name Tab to Tickets
I would like to see the Full Name there as well to make it visually easier to know what whose ticket im selecting.
Can someone tell me how to do that?
osTicket 1.10 - Language Pack
Ldap Plugin Authentication - using ldaps / ssl
i installed actual osticket version 1.9.14 with the ldap plugin.
I was wondering why it was not working via ldaps connection to our
active directory server, where we are using ldaps common port 636.
After trying a few settings i found out that the osticket ldap plugin is only supporting start TLS connections,
that uses port 389 and which is less secure then the commong ldaps / ssl on port 636.
Maybe there is another solution or a tool to use ldaps / ssl on port 636 or any idea?
In our old osticket version 1.7.1.4 installation we used a mod (ldap_mod_V16)
that was working great and able to use ldaps / ssl.
http://www.osticket.com/forum/discussion/9246/mod-ldap-authentication
Thanks for all replys!