Content not showing on some pagesand the error message is related to function.php files. Go to Function.php files /public_html/includes/Cache/Lite.
Then replace:
$arguments = func_get_args();
with
$arguments = func_get_args(); $numargs = func_num_args(); for($i=1; $i < $numargs; $i++){ $arguments[$i] = &$arguments[$i]; }
This article applies to joomla 1.0 in PHP 5.3 environment.