I started to log POST and got the following after I played Asteroids and the game ended:
note=0&sessdo=permrequest&id=0&score=640&fakekey=4 &gametime=1075893553
Then there's the following in arcade.php
Code:
// Turn negative globalize results into errors
if ($_POST['note'] == 0 || $_POST['id'] == 0 || $_POST['gametime'] == 0 || $_POST['fakekey'] == 0) {
exit;
}
See that note=0 and id=0
Why after I have played the client sends note=0 and id=0 because that results into "exit"?