
Originally Posted by
titangen
Hello Clyde,
I've put your correction to the right place but I still recieve this error
maybe the error come from the option (don't come on screen)
see the attatch
tahnks for your help
Chris
try running the following SQL script
copy and paste it into admin -> tools -> install sql patches
Code:
DROP TABLE IF EXISTS `links_status`;
CREATE TABLE `links_status` (
`links_status_id` int(11) NOT NULL default '0',
`language_id` int(11) NOT NULL default '1',
`links_status_name` varchar(32) NOT NULL default '',
PRIMARY KEY (`links_status_id`,`language_id`),
KEY `idx_links_status_name` (`links_status_name`)
) ENGINE=MyISAM;
INSERT INTO `links_status` VALUES (1, 1, 'Pending');
INSERT INTO `links_status` VALUES (2, 1, 'Approved');
INSERT INTO `links_status` VALUES (3, 1, 'Disabled');
Bookmarks