register_globals
could be an issue
This is a problem, because it is STRONGLY Recommended but most anyone
from security & privacy reasons,
to have:
register_globals OFF
On the other hand, old php scripts, otherwise very good coding,
needs, in order to work, to have:
register_globals ON
So, you may have to add and rewrite a few lines/pages
to make script up-to-date with modern PHP standard and Good Security.
You may have use this in
hlstats.php
$mode = $_GET['mode'];
You can find out your HOST settings by run this simple
test and check for register_globals ... in the Left Column (local settings)
phpinfo.php
<?php
phpinfo();
?>