While running Joomla applications using PHP 5.3.9, the contents or aticles may not be displayed properly. There is a simple work around for this glitch.
Go to Joomla application folder > includes > Cache > Lite
Open the file Function.php for editing.
Go to line number 74
Replace the code :
$arguments = func_get_args();
with
Go to Joomla application folder > includes > Cache > Lite
Open the file Function.php for editing.
Go to line number 74
Replace the code :
$arguments = func_get_args();
with
$arguments = func_get_args();
$numargs = func_num_args();
for($i=1; $i < $numargs; $i++)
{
$arguments[$i] = &$arguments[$i];
}
Now your articles will be properly displayed on the Joomla site.
No comments:
Post a Comment