Forums

Problem Showing Links (3 posts)

  1. evil_boarder
    Member
    Posted 4 years ago #

    i just started my blog, and after posting one topic, with links in it i got these errors :

    Database error: [Table 'evilboarder_lx_ro.wp_linkclicks' doesn't exist]
    SELECT link_clicks FROM wp_linkclicks WHERE link_url='http://www.worldofwarcraft.com'

    this error repeats itself for every link posted by me ...
    what's wrong ?? what should i do ??

  2. mdawaffe
    Member
    Posted 4 years ago #

    I don't see any errors.

    It looks like a plugin issue. Did you clear this up?

  3. tjw
    Member
    Posted 4 years ago #

    This error is caused by the Click Counter Plugin - By Ozh. You need to add a table to your MySQL database to support this plugin. You can use the following SQL to do that:

    CREATE TABLE wp_linkclicks (
    link_id INT NOT NULL AUTO_INCREMENT ,
    link_url TEXT NOT NULL ,
    link_clicks INT NOT NULL ,
    link_date DATETIME NOT NULL ,
    link_title TEXT NOT NULL ,
    UNIQUE (
    link_id
    )
    );

Topic Closed

This topic has been closed to new replies.

About this Topic

Tags

No tags yet.