At Basic settings > Style: RSS Feed - Fields > * > Channel elements : core > image
views_rss accepts a full url (http://...) but then it displays in the feed

...
<image>
<url>http://server.com/sites/default/files/http://server.com/sites/default/files/basic_logo.png</url>
<title>news feed</title>
<link>http://server.com</link>
<description>description</description>
</image>
...

if, on the other hand, I give the relative path, views_rss complains its not valid.

Comments

maciej.zgadzaj’s picture

Status: Active » Postponed (maintainer needs more info)

Relative path is something you should use, as per example in field's description.

You say views_rss complains its not valid - what is the error message exactly? What path are you trying to use? Is your Drupal installation placed in a subdirectory of your webserver's root?

maciej.zgadzaj’s picture

Status: Postponed (maintainer needs more info) » Fixed

Ok, there was something else I haven't noticed before - I believe the fix for #1655138: Core channel element for image does not resolve to valid URL I have just pushed to d.o. should resolve your issue too. Feel free to re-open this ticket if it is not the case.

eiland’s picture

Status: Fixed » Closed (fixed)

Indeed, now it works, thanks!