I installed meta tags 5.x-1.8-rc1 on a Drupal 5.7 site and got lots (well, 6) of errror messages like this:
---
warning: _nodewords_get_possible_tags(modules/nodewords/metatags/abstract.inc) [function.-nodewords-get-possible-tags]: failed to open stream: No such file or directory in /srv/www/htdocs/drupal/modules/nodewords/nodewords.module on line 730.
warning: _nodewords_get_possible_tags() [function.include]: Failed opening 'modules/nodewords/metatags/abstract.inc' for inclusion (include_path='/usr/share/php') in /srv/www/htdocs/drupal/modules/nodewords/nodewords.module on line 730.
---
A little digging around revealed that the nodewords.module code had line 730 as:

      include_once($filename);

Now, my default PHP include_path is '/usr/share/php', per the error message above. I noticed that
other Drupal calls to include_once prefixed the included filename with "./" to signify the local
directory tree.
Changing the highlighted code to

       <b>include_once "./$filename";</b>

removes the warning messages

Comments

pete_l’s picture

ooops,
lose the <b> </b> around the include_once statement.

Shai’s picture

Hi pete_l,

The place to submit your post is on the project page. Click "Submit bug report" there. The fact that you are suggesting a solution with your bug report will only earn you points.

FYI, the DrupalCon code sprint is happening today in Boston. Previous to that 950 drupalers gathered for DrupalCon since Monday. So many hard core developers are likely quite busy/burned out, so be patient. But posting the problem/proposed fix in the right place really helps.

Shai

content2zero.com

Robrecht Jacques’s picture

Bug reported as http://drupal.org/node/231229 , will be fixed in nodewords-5.x-1.8 shortly.