Still tracking down my scores problem.
I have tracked the problem down to arcade.php, inside
PHP Code:
if ($_POST['sessdo'] == "permrequest") {
specifically this area:
PHP Code:
globalize($_POST, array('note'=>STR_NOHTML, 'id'=>INT, 'gametime'=>INT, 'score'=>STR_NOHTML, 'key'=>INT));
// Turn negative globalize results into errors
if ($_POST['note'] == 0 || $_POST['id'] == 0 || $_POST['gametime'] == 0 || $_POST['fakekey'] == 0) {
exit;
}
Inside these vars I have:
note=0
id=0
gametime=1076957565
fakekey=3
so it is note and id that are causing me to exit without recording the score.
These are _POST variables, why would they not be present here?