
There was always 4 Errors:
Quote:
Notice: Only variables should be assigned by reference in file /misc.php line 177
Notice: Only variables should be assigned by reference in file /misc.php line 182
Notice: Only variables should be assigned by reference in file /kernel/module.php line 542
Notice: Only variables should be assigned by reference in file /misc.php line 185
Well...these are not really Errors it seems...but 'advisories' that there is a sloppy character in those lines that give this version of PHP some gas.
Each line has a rogue ampersand...when you delete that character, the Error is no longer logged.
e.g.
file /misc.php line 177
$online_total =& $online_handler->getCount();
Zap the ampersand after the EQUALS sign, and the error departs.
$online_total = $online_handler->getCount();
Doesn't help my problem, but eliminates the clutter of bogus errors... I would guess one could clean up all the files that yield that error throughout the site to slim down the Debug listings.