Bugs of Version 2.2
Moderator: mkoch227
Bugs of Version 2.2
1.) Admin Interface - Home (admin_main.php): When sorting the tickets (doesn't matter which criteria) the "+ New ticket"-Link (in the upper right corner) is gone.
2.) Admin Interface - New Ticket (new_ticket.php): The assignment of the owner should be the logged on staff member instead of "unassigned". Or this option should be choosable in the settings (admin_settings.php).
2.) Admin Interface - New Ticket (new_ticket.php): The assignment of the owner should be the logged on staff member instead of "unassigned". Or this option should be choosable in the settings (admin_settings.php).
Re: Bugs of Version 2.2
1) see viewtopic.php?f=13&t=3182
2) not sure what you mean exactly? Can you give a real-life example?
2) not sure what you mean exactly? Can you give a real-life example?
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
Re: Bugs of Version 2.2
1) Thanks! it worked (hopefully it will be fixed in v2.3!?)
2) Every time I (as a staff member) create a new ticket, the owner dropdown box of a ticket is "unassigned" by default. It would be nice to have it automatically set to my logged on account. Then you don't forget to assign a ticket to somebody. The enhanced version would be to choose in the admin settings if the default value is "unassigned" or assigned to the "logged on staff member" by default.
2) Every time I (as a staff member) create a new ticket, the owner dropdown box of a ticket is "unassigned" by default. It would be nice to have it automatically set to my logged on account. Then you don't forget to assign a ticket to somebody. The enhanced version would be to choose in the admin settings if the default value is "unassigned" or assigned to the "logged on staff member" by default.
Re: Bugs of Version 2.2
to 2) Shouldn't only staff members from the same category be listet in the owner-dropdown-list? Example: My user account is in the category A but I can assign tickets to users from category B.
Re: Bugs of Version 2.2
I won't give any promises, but will see what I can do in 2.3.
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
Re: Bugs of Version 2.2
Here is the change to be done that the ticket is by default assigned to the logged on user instead of unassigned:
admin\new_ticket.php
Line 561
if ($v == $_SESSION['name'])
instead of
if ($k == $owner)
admin\new_ticket.php
Line 561
if ($v == $_SESSION['name'])
instead of
if ($k == $owner)
Re: Bugs of Version 2.2
hello,
In the submit ticket staff (/admin/new_ticket.php) it is possible display only name my category authorize (from admin)..and not the list display of all the categories?
thankyou,
wedlock
In the submit ticket staff (/admin/new_ticket.php) it is possible display only name my category authorize (from admin)..and not the list display of all the categories?
thankyou,
wedlock
Re: Bugs of Version 2.2
3.) Searching by Tracking ID does not work properly.
Example: If I have a Ticket with the ID "TNNEEUAM8H" I only get a hit when I exacly know this ID. If I search for "TNN" or "TNN*" I don't get any result.
Example: If I have a Ticket with the ID "TNNEEUAM8H" I only get a hit when I exacly know this ID. If I search for "TNN" or "TNN*" I don't get any result.
Re: Bugs of Version 2.2
That's the expected behaviour with the current version.
To change it you can try modifyign this code in admin/find_tickets.php to
To change it you can try modifyign this code in admin/find_tickets.php
Code: Select all
$sql .= "`trackid` = '".hesk_dbEscape($q)."' ";
Code: Select all
$sql .= "`trackid` LIKE '%".hesk_dbEscape($q)."%' ";
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
Re: Bugs of Version 2.2
Thanks Klemen! The TickedID lookup works now as expected.
Re: Bugs of Version 2.2
hello klemen,
In the submit ticket staff (/admin/new_ticket.php) it is possible display only name category authorize (from admin)..and not the list display of all the categories?
thankyou,
wedlock
In the submit ticket staff (/admin/new_ticket.php) it is possible display only name category authorize (from admin)..and not the list display of all the categories?
thankyou,
wedlock
Re: Bugs of Version 2.2
Mod added - nice oneKlemen wrote:That's the expected behaviour with the current version.
To change it you can try modifyign this code in admin/find_tickets.phptoCode: Select all
$sql .= "`trackid` = '".hesk_dbEscape($q)."' ";
Code: Select all
$sql .= "`trackid` LIKE '%".hesk_dbEscape($q)."%' ";

Re: Bugs of Version 2.2
Works just fine and for me works a little better as I now don't end up with staff members forgetting to assign support tickets received via telephone/email to themselvessnifty wrote:Here is the change to be done that the ticket is by default assigned to the logged on user instead of unassigned:
admin\new_ticket.php
Line 561
if ($v == $_SESSION['name'])
instead of
if ($k == $owner)

Thank you
Re: Bugs of Version 2.2
Yup, a much needed fix....wedlock wrote:hello klemen,
In the submit ticket staff (/admin/new_ticket.php) it is possible display only name category authorize (from admin)..and not the list display of all the categories?
thankyou,
wedlock
-
- Posts: 3
- Joined: Tue Feb 22, 2011 3:51 pm
Re: Bugs of Version 2.2
One man's fix is another man's problem.
I use the Unassigned for Helpdesk to sort / dispatch.
If you "fix" it to default to logged in user, please make that an option, not hard coded.
Thanks.
I use the Unassigned for Helpdesk to sort / dispatch.
If you "fix" it to default to logged in user, please make that an option, not hard coded.
Thanks.