link list plugin

Creating and modifying plugins.
mgroeninger
Regular
Posts: 546
Joined: Mon Dec 20, 2004 11:57 pm
Contact:

Post by mgroeninger »

It should be serendipity_links,, and it should have been installed when you added the plugin...

I'll test that this weekend sometime to see if I can recreate...

You could try to remove the plugin and reinstall if you like...

Or, here is a mysql specific create that should work.

Code: Select all

CREATE TABLE `serendipity_links` (
  `id` int(11) NOT NULL auto_increment,
  `date_added` int(10) unsigned default NULL,
  `link` varchar(250) default NULL,
  `title` varchar(250) default NULL,
  `descrip` text,
  `order_num` int(4) default NULL,
  `category` int(11) default NULL,
  `last_result` int(4) default NULL,
  `last_result_time` int(10) unsigned default NULL,
  `num_bad_results` int(11) default NULL,
  PRIMARY KEY  (`id`),
  KEY `dateind` (`date_added`),
  KEY `titleind` (`title`),
  KEY `catind` (`category`)
) 
aeturnum
Posts: 4
Joined: Tue Apr 12, 2005 9:47 am

Post by aeturnum »

Awesome! it works! Thanks so much for the tech support, and thanks for making the plugin. I've been looking for a link plugin for a while, and yours (now that you helped me get it working) rocks.
Guest

Post by Guest »

is there a way to display links in a new window
oxygenws
Regular
Posts: 148
Joined: Thu Jan 20, 2005 11:20 am
Location: Iran
Contact:

Post by oxygenws »

Dear Guest,
read the following thread:
http://www.s9y.org/forums/viewtopic.php?t=1581
My Blog, powered by s9y is http://oxygenws.com/blog/
Post Reply