I get the following error after installing deco on a D6.0 site:

warning: include_once(themes/deco/forum-topic-navigation) [function.include-once]: failed to open stream: No such file or directory in /home/.rowf/px4padmin/xtfer.com/includes/theme.inc on line 283.
warning: include_once() [function.include]: Failed opening 'themes/deco/forum-topic-navigation' for inclusion (include_path='.:/usr/local/php5/lib/php:/usr/local/lib/php') in /home/.rowf/px4padmin/xtfer.com/includes/theme.inc on line 283.

The file is there, so im not sure what the problem is.

Comments

yperment’s picture

Seems like it's looking for forum-topic-navigation.php, while only forum-topic-navigation.tpl.php exists. Either renaming forum-topic-navigation.tpl.php to forum-topic-navigation.php or adding .tpl to the include_once might resolve this issue... i guess :-)

scoutbaker’s picture

@xtfer: Be sure to try the 6.x-1.x-dev release. It has a lot of updates that resolve numerous issues. I'm not sure if it will address your issue or not, but it won't hurt to try it (or at least look at the appropriate code to see if it is different).

scoutbaker’s picture

This is indeed supposed to be fixed in dev. Duplicate of http://drupal.org/node/223649.

scoutbaker’s picture

Status: Active » Closed (duplicate)
Grinch2171’s picture

I still have this issue running Drupal 6 and the latest development release of Deco.

AndriaD’s picture

That is actually correct -- I changed line #129 in template.php, which did read

'file' => 'forum-topic-navigation',

to read

'file' => 'forum-topic-navigation.tpl',

and the error went completely away. Someone said that they still had the error after trying the .dev release -- this will fix it.

:-)

Andria

AndriaD’s picture

Well, as it turns out, I was wrong with the above -- that change didn't actually fix anything. So I got the .dev release, and it works fine.

Andria