Script URL:
Version of script: 2.7.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:
I wonder, if there is a way to bulk move tickets (with all kind of status) from one category to other? We did some internal analysis and want to merged few categories but we dont want to lose ticket data inside each category.
Any suggestions/workarounds also welcome.
Farrukh.
Tickets bulk move to other category.
Moderator: mkoch227
Re: Tickets bulk move to other category.
There is no built-in way of doing that.
However, you could do it directly in the database (over SSH or using a tool such as phpMyAdmin, most hosting companies provide it):
1. BACKUP existing database
2. find out OLD category ID
3. find out NEW category ID
4. run this SQL code on the Hesk database:
So, to move all tickets from category ID 2 to category ID 10, you would run:
However, you could do it directly in the database (over SSH or using a tool such as phpMyAdmin, most hosting companies provide it):
1. BACKUP existing database
2. find out OLD category ID
3. find out NEW category ID
4. run this SQL code on the Hesk database:
Code: Select all
UPDATE `hesk_tickets` SET `category` = 'NEW CATEGORY ID' WHERE `category` = 'OLD CATEGORY ID'
Code: Select all
UPDATE `hesk_tickets` SET `category` = '10' WHERE `category` = '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