error after submitting thr mysql setting

Helpdesk for my helpdesk software

Moderator: mkoch227

Post Reply
asilveri
Posts: 10
Joined: Mon Mar 09, 2009 5:58 pm

error after submitting thr mysql setting

Post by asilveri »

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

Im getting this error message. Anyone have any idea why?

Error
Can't execute SQL: CREATE TABLE `hesk_attachments` ( `att_id` mediumint(8) unsigned NOT NULL auto_increment, `ticket_id` varchar(10) NOT NULL default '', `saved_name` varchar(255) NOT NULL default '', `real_name` varchar(255) NOT NULL default '', `size` int(10) unsigned NOT NULL default '0', PRIMARY KEY (`att_id`), KEY `ticket_id` (`ticket_id`) ) ENGINE=MyISAM

MySQL said:
You have an error in your SQL syntax near 'ENGINE=MyISAM' at line 9

Please notify webmaster at support@domain.com
Klemen
Site Admin
Posts: 10142
Joined: Fri Feb 11, 2005 4:04 pm

Post by Klemen »

Seems like you are running an old MySQL version (3.23?). I would strongly recommend that you contact your host and ask them to upgrade MySQL to the latest stable version.

You can probably avoid this error by changing all instances of

Code: Select all

ENGINE=MyISAM
to

Code: Select all

TYPE=MyISAM
in the install.php file but I cannot guarantee a 100% compatibility of Hesk with MySQL 3.23 so upgrading to a newer (more stable and secure version than this one from 2001!).
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