autolinks modules horribly broken

Scott Kindley <ckindley-/Nmu/[email protected]> 05 Sep 2002 20:35:16 -0500
Newsgroups gmane.comp.web.envolution.devel
Message-ID <[email protected]>
The auto links module is horribly broken. The tables for it are not
installed at install time:

The table that needs to be added is:

CREATE TABLE envo_autolinks (
  pn_lid int(11) NOT NULL auto_increment,
  pn_keyword varchar(100) NOT NULL default '',
  pn_title varchar(100) NOT NULL default '',
  pn_url varchar(200) NOT NULL default '',
  pn_comment varchar(200) NOT NULL default '',
  PRIMARY KEY  (pn_lid),
  UNIQUE KEY keyword (pn_keyword)
) TYPE=MyISAM;

There is also at leats one missing define in the modules admin language
file:

_AUTOLINKSLINKCREATEFAILED. Failed to create the autolink

define('_AUTOLINKSLINKCREATEFAILED', 'Failed to create the autolink');

However after adding the table and fixing this simple define adding an
autolink returns a blank screen
(index.php?module=Autolinks&type=admin&func=view)

I checked the Database and the entry was made. But in the Admin
Panel/modules/list you click on News to activate the autolinks...except
the option to activate autolinks in no longer there!!!!!!!!!!!!!

So we either need to fix this module or delete it from the package.

Any thoughts on this??

Zoom