Hi

I configured and followed the tutorial, but every time I run an import I get:

Notice: Undefined property: stdClass::$feeds_imagegrabber in feeds_imagegrabber_node_update() (line 100 of /modules/feeds_imagegrabber/feeds_imagegrabber.module).

Thanks

Support from Acquia helps fund testing for Drupal Acquia logo

Comments

Yorgg’s picture

subscribing

OldAccount’s picture

I got rid of the Notice by changing line 100 of feeds_imagegrabber.module:

Old
if ($node->feeds_imagegrabber['enabled']) {

New
if (isset($node->feeds_imagegrabber['enabled'])) {

But my images still aren't importing. :(

rooby’s picture

Title: No image grabbed and undefined property error » Undefined property: feeds_imagegrabber in feeds_imagegrabber_node_update() (line 100 of feeds_imagegrabber.module)
Status: Active » Needs review
FileSize
636 bytes

Here is a patch to fix the error message.

If your imports are not working it is a separate issue.

Try some of the patches in other issues in the issue queue and also try clearing your drupal cache.

rooby’s picture

Status: Needs review » Fixed

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.