Syntax Fehler?

webbie

Benutzer
Beiträge
7
Hallo, kann irgendjemand in diesen Zeilen einen Syntax Fehler erkennen?
Ich denke, da muss einer sein, da muss irgendwo einer sein, da

a) ich immer eine Fehlermeldung beim migrieren bei untenstehender Zeile erhalte und
b) auch im Editor der gesamte untere Teil irgendwie nur grau und ohne Syntax-Highlighting dargestellt wird. Was ja wohl heißt, dass da irgendwo ein Fehler sein muss, sonst würde der Code ja farbig dargestellt.

Code:
CREATE TABLE IF NOT EXISTS 'jos_vm_manufacturer_category` (
  `mf_category_id` int(11) NOT NULL auto_increment,
  `mf_category_name` varchar(64) default NULL,
  `mf_category_desc` text,
  PRIMARY KEY  (`mf_category_id`),
  KEY `idx_manufacturer_category_category_name` (`mf_category_name`)
) TYPE=MyISAM COMMENT='Manufactorers are assigned to these categories';INSERT INTO jos_vm_manufacturer_category (`mf_category_id`,`mf_category_name`,`mf_category_desc`) VALUES ( '1','-default-','This is the default manufacturer category');
       
Zeile mit Fehlerausgabe
 
 
CREATE TABLE IF NOT EXISTS `jos_vm_module` (
  `module_id` int(11) NOT NULL auto_increment,
  `module_name` varchar(255) default NULL,
  `module_description` text,
  `module_perms` varchar(255) default NULL,
  `module_publish` char(1) default NULL,
  `list_order` int(11) default NULL,
  PRIMARY KEY  (`module_id`),
  KEY `idx_module_name` (`module_name`),
  KEY `idx_module_list_order` (`list_order`)
) COMMENT='VirtueMart Core Modules, not: Joomla modules';
 
 
 
INSERT INTO jos_vm_module (`module_id`,`module_name`,`module_description`,`module_perms`,`module_publish`,`list_order`) VALUES ( '1','admin','<h4>ADMINISTRATIVE USERS ONLY</h4>\r\n\r\n<p>Only used for the following:</p>\r\n<OL>\r\n\r\n<LI>User Maintenance</LI>\r\n<LI>Module Maintenance</LI>\r\n<LI>Function Maintenance</LI>\r\n</OL>\r\n','admin','Y','1');
INSERT INTO jos_vm_module (`module_id`,`module_name`,`module_description`,`module_perms`,`module_publish`,`list_order`) VALUES ( '2','product','<p>Here you can adminster your online catalog of products.  The Product Administrator allows you to create product categories, create new products, edit product attributes, and add product items for each attribute value.</p>','storeadmin,admin','Y','4');
INSERT INTO jos_vm_module (`module_id`,`module_name`,`module_description`,`module_perms`,`module_publish`,`list_order`) VALUES ( '3','vendor','<h4>ADMINISTRATIVE USERS ONLY</h4>\r\n<p>Here you can manage the vendors on the phpShop system.</p>','admin','Y','6');
INSERT INTO jos_vm_module (`module_id`,`module_name`,`module_description`,`module_perms`,`module_publish`,`list_order`) VALUES ( '4','shopper','<p>Manage shoppers in your store.  Allows you to create shopper groups.  Shopper groups can be used when setting the price for a product.  This allows you to create different prices for different types of users.  An example of this would be to have a \'wholesale\' group and a \'retail\' group. </p>','admin,storeadmin','Y','4');
I

Irgendetwas stimmt da nicht. Vielleicht hat ja jemand eine Idee oder einen geschulten Blick und erkennt den Fehler??? Dankeschön!
 
Werbung:
Werbung:
Zurück
Oben