Canned response

Helpdesk for my helpdesk software

Moderator: mkoch227

Post Reply
power
Posts: 31
Joined: Fri Feb 16, 2007 3:05 am

Canned response

Post by power »

Script URL:
Version of script: 94
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:

Is there a way to increase the Canned response chars ???

Title (max 50 chars)
Klemen
Site Admin
Posts: 10142
Joined: Fri Feb 11, 2005 4:04 pm

Post by Klemen »

The Title is only viawable to the staff, to change the length you need to do two things:

1. Open manage_canned.php in Notepad, find this code (line 208):

Code: Select all

<input type="text" name="name" size="40" maxlength="50">
and change maxlength to for example "100"

2. Edit the "hesk_std_replies" table in MySQL. You can do that for example with phpMyAdmin - change title length to 100 or use this SQL code:

Code: Select all

ALTER TABLE `hesk_std_replies` CHANGE `title` `title` VARCHAR( 100 )
Klemen, creator of HESK and PHPJunkyardWas this helpful? You can buy me a drink here Image

Image 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
power
Posts: 31
Joined: Fri Feb 16, 2007 3:05 am

Post by power »

is it safe to set it to 9999999
Klemen
Site Admin
Posts: 10142
Joined: Fri Feb 11, 2005 4:04 pm

Post by Klemen »

It's safe, but some servers have a limit and won't actually set it so high.
Klemen, creator of HESK and PHPJunkyardWas this helpful? You can buy me a drink here Image

Image 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
Post Reply