• 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 ??

Viewing 2 replies - 1 through 2 (of 2 total)
  • I don’t see any errors.

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

    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
    )
    );

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Problem Showing Links’ is closed to new replies.