phppp 10 Jun 2006 2:34 PM12228 Reads 18 Comment(s)
User guide: 1 Check the file xoops-module-mediawiki-167/readme.html for details 2 Make sure to always use the latest Frameworks by checking the emtpy file xoops-module-mediawiki-167/art/version *.** (applicable to all modules using the Frameworks/art/) 3 If you have error of “Specified key was too long” with installation, modify modules/mediawiki/maintenance/tables.sql (Not fully validated yet):
le="color: #000000"><?php CREATE TABLE /*$wgDBprefix*/job ( job_id int(9) unsigned NOT NULL auto_increment, -- Command name, currently only refreshLinks is defined job_cmd varchar(255) NOT NULL default '', -- Namespace and title to act on -- Should be 0 and '' if the command does not operate on a title job_namespace int NOT NULL default '0', job_title varchar(255) binary NOT NULL default '', -- Any other parameters to the command -- Presently unused, format undefined job_params blob NOT NULL default '', PRIMARY KEY job_id (job_id), KEY (job_cmd, job_namespace, job_title) ) TYPE=InnoDB, DEFAULT CHARACTER SET latin1 collate utf8_general_ci;