I just switched to Pressflow and everytime I run cron I'm receiving this error now:

Illegal offset type in /var/www/XXXXXXXX/sites/all/modules/feedapi_imagegrabber/feedapi_imagegrabber.module on line 519.

This could totally be unrelated to pressflow, but it's the only thing that has changed in my setup.

Any ideas?

Comments

publicmind’s picture

I am not maintaining this module any further due to issues with the copyright company. You can look for its successor Feeds Image Grabber which supports the Feeds module (the successor for FeedAPI).

However, the following might solve your problem.

Replace line 512, in feedapi_imagegrabber.module with the following two lines:

$node = db_fetch_object(db_query("SELECT nid FROM {feedapi_node_item} WHERE url = '%s'", $original_url));
$nid = $node->nid;

Cheers,
publicmind

WhenInRome’s picture

Appreciate the quick response and the support!

publicmind’s picture

It will be nice if you could report if the above solved your problem or not.

WhenInRome’s picture

The problem is intermittent. I ran cron yesterday and didn't see the error. However, I ran cron the day before yesterday and even this morning running cron produced the error. I'll keep you updated!

Thanks,

WhenInRome’s picture

So far so good. I'm not getting any new php errors with these two new lines of code you provided. Thanks!