1
slooz
WF-Links 1.03b FULLTEXT Error
  • 2006/9/20 21:18

  • slooz

  • Just popping in

  • Posts: 2

  • Since: 2006/9/15


I am trying to install WF-Links on MySQL 4.1.21, PHP 5 and ZOOPS 2.0.15. I am receiving the following erroe:

Installing WF-links

The used table type doesn't support FULLTEXT indexes

Unable to install wflinks. Error(s):


Back to Module Administration page

Does anyone know a fix for this?

2
McDonald
Re: WF-Links 1.03b FULLTEXT Error
  • 2006/9/20 22:41

  • McDonald

  • Home away from home

  • Posts: 1072

  • Since: 2005/8/15


I am not sure, but you might try to replace the file sql/wflinks.sql with the original one from WF-Links 1.03.

wflink.sql:
-- phpMyAdmin SQL Dump
-- version 2.6.0-pl3
-- http://www.phpmyadmin.net
-- 
-- 
Hostlocalhost
-- Generation TimeJun 162005 at 10:21 PM
-- Server version4.1.8
-- PHP Version5.0.3
-- 
-- 
Database: `xoops2092a`
-- 

-- 
-- 
Table structure for table `wflinks_altcat`
-- 

CREATE TABLE wflinks_altcat (
  
lid int(11unsigned NOT NULL default '0',
  
cid int(5unsigned NOT NULL default '0',
  
PRIMARY KEY  (lid,cid)
ENGINE=MyISAM;

-- 
-- 
Table structure for table `wflinks_broken`
-- 

CREATE TABLE wflinks_broken (
  
reportid int(5NOT NULL auto_increment,
  
lid int(11NOT NULL default '0',
  
sender int(11NOT NULL default '0',
  
ip varchar(20NOT NULL default '',
  `
datevarchar(11NOT NULL default '0',
  
confirmed enum('0','1'NOT NULL default '0',
  
acknowledged enum('0','1'NOT NULL default '0',
  
title varchar(255NOT NULL default '',
  
PRIMARY KEY  (reportid),
  
KEY lid (lid),
  
KEY sender (sender),
  
KEY ip (ip)
ENGINE=MyISAM;

-- 
-- 
Table structure for table `wflinks_cat`
-- 

CREATE TABLE wflinks_cat (
  
cid int(5unsigned NOT NULL auto_increment,
  
pid int(5unsigned NOT NULL default '0',
  
title varchar(50NOT NULL default '',
  
imgurl varchar(150NOT NULL default '',
  
description varchar(255NOT NULL default '',
  
total int(11NOT NULL default '0',
  
spotlighttop int(11NOT NULL default '0',
  
spotlighthis int(11NOT NULL default '0',
  
nohtml int(1NOT NULL default '0',
  
nosmiley int(1NOT NULL default '0',
  
noxcodes int(1NOT NULL default '0',
  
noimages int(1NOT NULL default '0',
  
nobreak int(1NOT NULL default '1',
  
weight int(11NOT NULL default '0',
  
PRIMARY KEY  (cid),
  
KEY pid (pid)
ENGINE=MyISAM;

-- 
-- 
Table structure for table `wflinks_indexpage`
-- 

CREATE TABLE wflinks_indexpage (
  
indeximage varchar(255NOT NULL default 'blank.gif',
  
indexheading varchar(255NOT NULL default 'WF-Links',
  
indexheader text NOT NULL,
  
indexfooter text NOT NULL,
  
nohtml tinyint(8NOT NULL default '1',
  
nosmiley tinyint(8NOT NULL default '1',
  
noxcodes tinyint(8NOT NULL default '1',
  
noimages tinyint(8NOT NULL default '1',
  
nobreak tinyint(4NOT NULL default '0',
  
indexheaderalign varchar(25NOT NULL default 'left',
  
indexfooteralign varchar(25NOT NULL default 'center',
  
FULLTEXT KEY indexheading (indexheading),
  
FULLTEXT KEY indexheader (indexheader),
  
FULLTEXT KEY indexfooter (indexfooter)
ENGINE=MyISAM;

-- 
-- 
Dumping data for table `wflinks_indexpage`
-- 

INSERT INTO wflinks_indexpage VALUES ('logo-en.gif''WF-Links''Welcome to the WF-Links.''WF-Links Footer'00001'left''left');

-- --------------------------------------------------------

-- 
-- 
Table structure for table `wflinks_links`
-- 

CREATE TABLE wflinks_links (
  
lid int(11unsigned NOT NULL auto_increment,
  
cid int(5unsigned NOT NULL default '0',
  
title varchar(100NOT NULL default '',
  
url varchar(255NOT NULL default '',
  
screenshot varchar(255NOT NULL default '',
  
submitter int(11NOT NULL default '0',
  
publisher varchar(255NOT NULL default '',
  `
statustinyint(2NOT NULL default '0',
  `
dateint(10NOT NULL default '0',
  
hits int(11unsigned NOT NULL default '0',
  
rating double(6,4NOT NULL default '0.0000',
  
votes int(11unsigned NOT NULL default '0',
  
comments int(11unsigned NOT NULL default '0',
  
forumid int(11NOT NULL default '0',
  
published int(11NOT NULL default '0',
  
expired int(10NOT NULL default '0',
  
updated int(11NOT NULL default '0',
  
offline tinyint(1NOT NULL default '0',
  
description text NOT NULL,
  
ipaddress varchar(120NOT NULL default '0',
  
notifypub int(1NOT NULL default '0',
  
urlrating tinyint(1NOT NULL default '0',
  
PRIMARY KEY  (lid),
  
KEY cid (cid),
  
KEY `status` (`status`),
  
KEY title (title(40))
ENGINE=MyISAM;

-- 
-- 
Table structure for table `wflinks_mod`
-- 

CREATE TABLE wflinks_mod (
  
requestid int(11NOT NULL auto_increment,
  
lid int(11unsigned NOT NULL default '0',
  
cid int(5unsigned NOT NULL default '0',
  
title varchar(255NOT NULL default '',
  
url varchar(255NOT NULL default '',
  
screenshot varchar(255NOT NULL default '',
  
submitter int(11NOT NULL default '0',
  
publisher text NOT NULL,
  `
statustinyint(2NOT NULL default '0',
  `
dateint(10NOT NULL default '0',
  
hits int(11unsigned NOT NULL default '0',
  
rating double(6,4NOT NULL default '0.0000',
  
votes int(11unsigned NOT NULL default '0',
  
comments int(11unsigned NOT NULL default '0',
  
forumid int(11NOT NULL default '0',
  
published int(10NOT NULL default '0',
  
expired int(10NOT NULL default '0',
  
updated int(11NOT NULL default '0',
  
offline tinyint(1NOT NULL default '0',
  
description text NOT NULL,
  
modifysubmitter int(11NOT NULL default '0',
  
requestdate int(11NOT NULL default '0',
  
urlrating tinyint(1NOT NULL default '0',
  
PRIMARY KEY  (requestid)
ENGINE=MyISAM;

-- 
-- 
Table structure for table `wflinks_votedata`
-- 

CREATE TABLE wflinks_votedata (
  
ratingid int(11unsigned NOT NULL auto_increment,
  
lid int(11unsigned NOT NULL default '0',
  
ratinguser int(11NOT NULL default '0',
  
rating tinyint(3unsigned NOT NULL default '0',
  
ratinghostname varchar(60NOT NULL default '',
  
ratingtimestamp int(10NOT NULL default '0',
  
title varchar(255NOT NULL default '',
  
PRIMARY KEY  (ratingid),
  
KEY ratinguser (ratinguser),
  
KEY ratinghostname (ratinghostname),
  
KEY lid (lid)
ENGINE=MyISAM;


Don't forget to replace the file class/xoopsform/form.php with this one, otherwise the submit form doesn't appear with XOOPS 2.0.15.

3
slooz
Re: WF-Links 1.03b FULLTEXT Error
  • 2006/9/21 20:55

  • slooz

  • Just popping in

  • Posts: 2

  • Since: 2006/9/15


Thanks. That worked. Now I have another problem. I can't get any blocks to display on the main page unless I am logged in as the Admin. Any ideas?

4
McDonald
Re: WF-Links 1.03b FULLTEXT Error
  • 2006/9/21 21:37

  • McDonald

  • Home away from home

  • Posts: 1072

  • Since: 2005/8/15


I would suggest to check the permissions settings for each user group of the blocks.

Login

Who's Online

397 user(s) are online (98 user(s) are browsing Support Forums)


Members: 0


Guests: 397


more...

Donat-O-Meter

Stats
Goal: $100.00
Due Date: Oct 31
Gross Amount: $0.00
Net Balance: $0.00
Left to go: $100.00
Make donations with PayPal!

Latest GitHub Commits