I am getting this error:

warning: is_file() [function.is-file]: open_basedir restriction in effect. File(/images/kml.png) is not within the allowed path(s)

I cannot change server parameters. What can be done, and how can this be avoided?

CommentFileSizeAuthor
#6 736100-6_remove_kml_leftovers.patch1008 bytesalex_b
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

huizache’s picture

in: managingnews/includes/theme.inc on line 1213.

huizache’s picture

Priority: Normal » Critical
Status: Active » Fixed

This was the problem:
managingnews/modules/contrib/views_rss/views/views_plugin_style_rss_fields.inc:
line18
$this->feed_image = drupal_get_path('module', 'views_kml') . '/images/kml.png';

changed to
$this->feed_image = drupal_get_path('module', 'views_kml') . 'images/kml.png';

huizache’s picture

Priority: Critical » Normal
huizache’s picture

Status: Fixed » Active

need to send a patch

alex_b’s picture

Project: Managing News » Advanced Views RSS Feed
Version: 6.x-1.0-beta6 » 6.x-1.x-dev

I'm wondering what this views_kml code is doing in views_rss in the first place...

alex_b’s picture

Status: Active » Fixed
FileSize
1008 bytes

I just talked to rsoden. The method init() is not supposed to be there in the first place. This patch removes it.

Status: Fixed » Closed (fixed)

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