I've made a one line change to miner.gxboxlive.php to resolve the error I get with avatars that have a single quote in their name. This appears to resolve the issue for me but I can't guarantee that it doesn't cause other problems.
In miner.gxboxlive.php, on line 106, change:
Code:
$player['avatar'] = $matches[0][2];
...to:
Code:
$player['avatar'] = addslashes($matches[0][2]);
Again, no guarantees. Just hoping the contribution helps.