Joomla 1.0.13 and PHP 5.3.x issues - Frontpage contents disappeared

If you cannot see contents in frontpage then try the following.

In joomla folder: includes/Cache/Lite/Function.php

Replace:

$arguments = func_get_args();

with

$arguments = func_get_args();
$numargs = func_num_args();
for($i=1; $i < $numargs; $i++){
$arguments[$i] = &$arguments[$i];
}

 

  • 1 Users Found This Useful
Was this answer helpful?

Related Articles

How to enable php errors

PHP errors are disabled by default in our servers. If you want to enable them edit .htaccess and...

Joomla 1.5.x backend menus disappeared

This is mostly a Joomla 1.5.x and php 5.3.x issue. If you login in administrator pane and you...

Joomla 1.0.13 and PHP 5.3.x issues - Contacts disappeared

com_contacts uses the includes/vcard.class.php file, which also needs to be modified to avoid...