Adding owner to tickets
Moderator: mkoch227
-
- Posts: 6
- Joined: Mon Nov 09, 2009 3:13 pm
Adding owner to tickets
Script URL:
Version of script:2.1
Hosting company:
URL of phpinfo.php:
URL of session_test.php:
What terms did you try when SEARCHING for a solution:
Write your message below:
Hi all
I have managed (for us) to have owner for tickets.
For this is necesary to create new field in hesk_tickets table, named owner (smalint).
Modified files an new files can be dowloaded from http://www.almexa.ro/hesk.zip .
Regards to all
Version of script:2.1
Hosting company:
URL of phpinfo.php:
URL of session_test.php:
What terms did you try when SEARCHING for a solution:
Write your message below:
Hi all
I have managed (for us) to have owner for tickets.
For this is necesary to create new field in hesk_tickets table, named owner (smalint).
Modified files an new files can be dowloaded from http://www.almexa.ro/hesk.zip .
Regards to all
Thanks for sharing. Something similar will be included in HESK version 2.2.
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
Future Upgrades to Help Desk
I'd gladly buy you a beer once you add some of the requests to this product.Klemen wrote:Thanks for sharing. Something similar will be included in HESK version 2.2.
Anyway, we are hoping to see a method for assigning tickets to specific users in the database. Currently, we have to log the request ourselves and use our name and email for the user that's requested the problem. It gets a little confusing as time passes as far as who entered the request. Fortunately, we have a fairly small department. This sort of help desk solution would not work for a large department.
Re: Adding owner to tickets
Can you tell me which script controls the Email Reply Title? Everything I've implemented which you created works great except for the email sent out when an owner has been assigned has the subject as follows:paul.mercea wrote:Script URL:
Version of script:2.1
Hosting company:
URL of phpinfo.php:
URL of session_test.php:
What terms did you try when SEARCHING for a solution:
Write your message below:
Hi all
I have managed (for us) to have owner for tickets.
For this is necesary to create new field in hesk_tickets table, named owner (smalint).
Modified files an new files can be dowloaded from http://www.almexa.ro/hesk.zip .
Regards to all
Ticket owner has changed to %s
I see that the text.php file contains the new owner information. Is this something to be modified in reply_ticket.php or possibly the admin_ticket.php file? Thank you for your help. This really would be helpful if we can get the subject line of the automated email to be correct.
Adding owner to tickets
Hi,
Has anyone been able to resolve the issue with the emails containing the variable names rather than the correct values.
The owner assignment update is great but it would be the icing on the cake to resolve the email issue as well.
Anyone provide a fix or point me in the right direction.
Thanks.
Has anyone been able to resolve the issue with the emails containing the variable names rather than the correct values.
The owner assignment update is great but it would be the icing on the cake to resolve the email issue as well.
Anyone provide a fix or point me in the right direction.
Thanks.
Re: Adding owner to tickets
Try this(line #118 in owner.php):emmettg wrote: Has anyone been able to resolve the issue with the emails containing the variable names rather than the correct values.
Code: Select all
@mail($email,$hesklang['owner_email'].$owner_name['name'],$msg,$headers);
Code: Select all
$hesklang['owner_email']='Ticket owner has changed to ';