I am trying to use Feeds to import my Drupal 6 content to Drupal 7. I have Feeds and this module installed on Drupal 7. I am using Views RSS to map my node title, link, body, taxonomy, nid/guid, and post date.

Because I couldn't figure out how to map the image field, I rewrote the body field to include the image field in an image tag at the bottom of the body.

However, feeds imagegrabber doesn't seem to pick up the image. I applied this patch but still not having any luck. Am I missing something, or is this not possible?

Comments

rooby’s picture

Status: Active » Fixed

You may have misunderstood how the module works.

The feed itself doesn't have to contain any reference to the image.

When you are mapping rss fields to the (FIG) fields, map them to the url of the feed item.

Then this module scrapes that page to retrieve the image.
It can search the whole page or you can specify a class or ID to narrow it down.

It then pulls the image in from that page and saves it in drupal.

Feel free to set back to active if you require further information.

There will also be a new version up shortly that fixes many bugs.

Status: Fixed » Closed (fixed)

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

fhdrupal’s picture

Issue summary: View changes

In my feed i don't have id or class but have a tag like <item><media:content url="image url"></item> how can I grab image from such feed. Thanks