There has been a new release for the game involving some new features and fixes.
It is now possible to directly validate your e-mail address from the registration e-mail. Just a single click will give you notifications about players who join your game, turn switches and game endings.
We noticed that several e-mail address had an incorrect syntax. Therefore we added a check, using the following regular expression, during registration to see if the e-mail address has the correct syntax.
preg_match("/^[_a-z0-9-]+(\.[_a-z0-9-]+)*@[a-z0-9-]+(\.[a-z0-9-]+)*(\.[a-z]{2,4})$/", $email) == 0
Finally we also noticed that the Google Analytics pagetracker wasn’t recording our goals. This happened after the switch to the new universal analytics.
Previous goal tracker
<script type="text/javascript"> window.onload = function() { try { pageTracker._trackPageview("/funnel_G1/completed.html"); } catch(err) {} } </script>
New goal tracker based on this information
<script type="text/javascript"> window.onload = function() { try { ga('send', 'pageview', { 'page': '/funnel_G1/completed.html', 'title': 'Registration Completed' }); } catch(err) {} } </script>
Comments are closed, but trackbacks and pingbacks are open.