ETTVd:Known Bugs

From WolfWiki
Revision as of 00:06, 28 November 2006 by Skooli (Talk | contribs)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Webinterface

Warning: Wrong parameter count for substr() in includes/ettvd.class.php on line 183

to get rid of this warning you have to change line 183 of includes/ettvd.class.php from:

$server['master']       = substr($nfo[2]);

to this:

$server['master']       = trim($nfo[2]);


Fatal error: Smarty error: unable to write to $compile_dir

Fatal error: Smarty error: unable to write to $compile_dir 'includes/smarty/compile'. Be sure $compile_dir is writable by the web server user. in includes/smarty/Smarty.class.php on line 1102

normally this error should NOT appear. It means that Smarty tried to recompile the templates which is disabled in smarty's config. To make the error disapear just set the chmod of the directory includes/smarty/compile/ to 777 to make it writable.
If you don't want to edit templates and get this message please also check the following lines of includes/smarty/Smarty.class.php: line 141 should be like this:

    var $compile_check   =  false;

line 149 should be like this:

    var $force_compile   =  false;

ETTVd Daemon

none