Quote Originally Posted by mdo82 View Post
I am currently busy with my site to convert to 139, but I am getting an error when installing this script.

I am currently working in Xampp for my site to get right before I go live

What am I doing wrong?

I get also this error by installing a new version of the software.
And the SQL version of Xampp is 5.5.20

PHP Code:
1064 You have an error in your SQL syntaxcheck the manual that corresponds to your MySQL server version for the right syntax to use near 'TYPE=MyISAM' at line 1
in
:
[
CREATE TABLE testimonials_manager testimonials_id int(11NOT NULL auto_incrementlanguage_id int(11NOT NULL default '1'testimonials_title varchar(64NOT NULL default ''testimonials_url VARCHAR255 NULL DEFAULT NULLtestimonials_name text NOT NULLtestimonials_image varchar(254NOT NULL default ''testimonials_html_text texttestimonials_mail text NOT NULLtestimonials_company VARCHAR255 NULL DEFAULT NULLtestimonials_city VARCHAR255 NULL DEFAULT NULLtestimonials_country VARCHAR255 NULL DEFAULT NULLtestimonials_show_email char(1) default '0'status int(1NOT NULL default '0'date_added datetime NOT NULL default '0000-00-00 00:00:00'last_update datetime NULL default NULLPRIMARY KEY (testimonials_id) ) TYPE=MyISAM ;]
If 
you were entering informationpress the BACK button in your browser and re-check the information you had entered to be sure you left no blank fields
Please help!!
Code:
TYPE=MyISAM
TYPE is deprecated
use ENGINE instead
Code:
ENGINE=MyISAM