Joomla 1.0 content missing after php 5.3 upgrade?
Joomla 1.0 content missing after php 5.3 upgrade?
Reference
If you are like me you may have a few old sites still running on Joomla 1.0. When I recently upgraded my server to php 5.3.x, I found that my Joomla 1.0 sites suffered from missing content. Here's the fix:
Locate the file 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];
}
That should fix the problem!

