Difference between revisions of "ETTVd:Known Bugs"

From WolfWiki
Jump to: navigation, search
 
(Warning: Wrong parameter count for substr() in includes/ettvd.class.php on line 183)
Line 1: Line 1:
 
== Webinterface ==
 
== 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]);
 
  
  

Revision as of 19:11, 13 December 2006

Webinterface

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