Quote:
Originally Posted by ryancooper
Strange when i try to run this from my CP I get
An error occurred while attempting to execute your query. The following information was returned.
error number: 1064
error desc: You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near ';
INSERT INTO `vbcloaker` (active,randbgcolor,metatags) VALU
|
I am getting the same error and I run this query:
PHP Code:
CREATE TABLE `vbcloaker` (
`active` tinyint(1) NOT NULL default '0',
`randbgcolor` tinyint(1) NOT NULL default '0',
`titles` longtext NOT NULL,
`fillers` longtext NOT NULL,
`targets` longtext NOT NULL,
`links` longtext NOT NULL,
`metatags` text NOT NULL,
PRIMARY KEY (`active`),
KEY `active` (`active`)
) TYPE=MyISAM;
INSERT INTO `vbcloaker` (active,randbgcolor,metatags) VALUES (1, 1, '<META NAME="ROBOTS" CONTENT="NOARCHIVE">\n<META NAME="Revisit-After" CONTENT="1 Days">')