Is it possible to change the timezone?
Currentyl helpdesk is running 6 hours behind my timezone.
Changing Timezone
Moderator: mkoch227
Hi,
Interesting question. Hesk uses the time that is set on your MySQL server. To change that you need to modify files
submit_ticket.php
reply_ticket.php
admin_reply_ticket.php
Inside these files find this code:
If your time is behind add:
If it is ahead add:
Haven't tested it, but should work.
Regards
Interesting question. Hesk uses the time that is set on your MySQL server. To change that you need to modify files
submit_ticket.php
reply_ticket.php
admin_reply_ticket.php
Inside these files find this code:
Code: Select all
NOW()
Code: Select all
DATE_ADD(NOW(),INTERVAL 6 HOUR)
Code: Select all
DATE_SUB(NOW(),INTERVAL 6 HOUR)
Regards
Klemen, creator of HESK and PHPJunkyardWas this helpful? You can buy me a drink here 
You should follow me on Twitter here
Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...
Also browse for php hosting companies, read php books, find php resources and use webmaster tools


Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...
Also browse for php hosting companies, read php books, find php resources and use webmaster tools
-
- Posts: 23
- Joined: Tue Jan 03, 2006 7:53 pm