Re: Simple SEO URL [support thread]

Originally Posted by
goldenhues
Hi ,
now I get this error message
1064 You have an error in your SQL syntax near 'ENGINE=MyISAM' at line 1
in:
[CREATE TABLE IF NOT EXISTS links_aliases ( id int(10) NOT NULL auto_increment, link_url varchar(255) NOT NULL, link_alias varchar(255) NOT NULL, PRIMARY KEY (ID), UNIQUE (link_url) ) ENGINE=MyISAM;]
If you were entering information, press the BACK button in your browser and re-check the information you had entered to be sure you left no blank fields.
A pretty annoying server configuration you have there :)
Go to admin/includes/module_installation/yellow1912_ssu/db/6.sql
Replace the whole content by:
DROP TABLE IF EXISTS links_aliases;
CREATE TABLE `links_aliases` (
`id` int(10) NOT NULL auto_increment,
`link_url` varchar(255) NOT NULL,
`link_alias` varchar(255) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `link_url` (`link_url`)
) TYPE=MyISAM;
I no longer provide installation support on forum for all my modules. However, if there are real bugs with the modules please feel free to contact me
Bookmarks