Senin, 30 April 2012

Error Website PHP function.php line 92 or 100

Error Website Joomla seperti kayak gini

Are you getting these errors in Joomla?
Warning: Parameter 1 to modMainMenuHelper::buildXML() expected to be a reference, value given in /home/xx/public_html/libraries/joomla/cache/handler/callback.php on line 99
or
Warning: Parameter 1 to HTML_content::show() expected to be a reference, value given in /home/xx/public_html/travel/includes/Cache/Lite/Function.php on line 100
Solution ya  diam2 ;)

Open /includes/Cache/Lite/Function.php and replace at line 74:
$arguments = func_get_args();
with:
$arguments = func_get_args();
$numargs = func_num_args();
for($i=1; $i < $numargs; $i++){
$arguments[$i] = &$arguments[$i];
}
Hope it will help :)

Tidak ada komentar:

Posting Komentar