Drupal 6 RC3 shows the following error when activating Deco:
* warning: include_once(sites/all/themes/deco/forum-topic-navigation) [function.include-once]: failed to open stream: No such file or directory in /home/kinoformat/public_html/includes/theme.inc on line 283.
* warning: include_once() [function.include]: Failed opening 'sites/all/themes/deco/forum-topic-navigation' for inclusion (include_path='.:/usr/share/php:/usr/share/pear') in /home/kinoformat/public_html/includes/theme.inc on line 283.
There is a file forum-topic-navigation.tpl.php, so there just the extension is missing.
Workaround symbolic link:
ln -s forum-topic-navigation.tpl.php forum-topic-navigation
| Comment | File | Size | Author |
|---|---|---|---|
| #4 | template.patch | 401 bytes | wretched sinner - saved by grace |
Comments
Comment #1
Eudaimonius commentedsame bug here. would renaming forum-topic-navigation.tpl.php to forum-topic-navigation work too?
Comment #2
kwurzel commentedI think that's critical, because the web server can't recognize the file as a PHP file an thus won't parse it. If you don't have shell access to create symlinks, try using a PHP script with this content:
symlink("forum-topic-navigation", "forum-topic-navigation.tpl.php");in your
themesdirectory.Comment #3
klaasvw commentedComment #4
wretched sinner - saved by grace commentedAttached is a patch to be applied to deco/template.php which adds the correct suffix to the call for the forum template.
Comment #5
kwurzel commentedinstromaniac, would you please update the theme?
Comment #6
klaasvw commentedThis has been fixed in the dev (MAIN) release for quite some time already.
I'm sorry if the whole patching/release thing didn't work out well so far, I'm pretty new to CVS and drupal's versioning mechanism. I have "educated" myself on it now though :)
Anyway, I'll make a new release shortly that will work with Drupal6-RC3. For the time being please use the dev release if you don't have time to wait a few weeks.
Comment #7
Anonymous (not verified) commentedAutomatically closed -- issue fixed for two weeks with no activity.
Comment #8
scoutbaker commentedMarked http://drupal.org/node/223649 and http://drupal.org/node/224028 as duplicates.