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
Comment #1
yperment commentedSeems 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 :-)
Comment #2
scoutbaker commented@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).
Comment #3
scoutbaker commentedThis is indeed supposed to be fixed in dev. Duplicate of http://drupal.org/node/223649.
Comment #4
scoutbaker commentedComment #5
Grinch2171 commentedI still have this issue running Drupal 6 and the latest development release of Deco.
Comment #6
AndriaD commentedThat 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
Comment #7
AndriaD commentedWell, 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