Ok, having messed up my site totally, i decided to reinstall Drupal and make it nice and clean now that ive had a little experience with it. On my previous site, i used the Aggregator2 module to post RSS feeds as news nodes on my front page, and having tried to install it on 4.7.4 and having had issues with it, i checked the forums to find its been replaced by the leech module.

I have followed the (basic) install instructions, and no errors were given during that process. The CURL lib seems to be installed on the srver i rent, but as soon as I try to do anything with the module i receive the following error on watchdog.

Table 'spankth_drpl1.leech_opml' doesn't exist query: SELECT * FROM leech_opml WHERE nid = 1 in /home/spankth/public_html/includes/database.mysql.inc on line 121.

As I used this feature a lot on my site, im pretty desperate to get it sorted out, or find a workable replacement for this module.

Hope you can help,

D0k

Comments

alex_b’s picture

Title: Problems with leech » 'leech_opml' does not exist error

Can you take a look at your database? Does leech_opml exist? If not, something must have gone wrong during installation. Create the table manually w/:

CREATE TABLE leech_opml (
        `nid` int(10) NOT NULL,
        `template` int(10) NOT NULL,
        PRIMARY KEY (`nid`)
        );
alex_b’s picture

Status: Active » Closed (fixed)