Hi PA
our registration form at http://w2eca.pythonanywhere.com/welcome/default/user/register fails when using IE8+ but only on pythonanywhere.com, on local server it runs fine. It also works fine in latest Firefox, whether local or at PA.
Not sure why this happens but using the IE developer tools one of the response bodies starts like this:
te this object?";
var w2p_ajax_disable_with_message = "Working...";
var w2p_ajax_date_format = "%Y-%m-%d";
var w2p_ajax_datetime_format = "%Y-%m-%d %H:%M:%S";
var ajax_error_500 = 'An error occured, please <a href="/welcome/default/user/register">reload</a> the page'
//--></script>
and the actual code (web2py_ajax.html) reads:
<script type="text/javascript"><!--
// These variables are used by the web2py_ajax_init function in web2py_ajax.js (which is loaded below).
var w2p_ajax_confirm_message = "{{=T('Are you sure you want to delete this object?')}}";
var w2p_ajax_disable_with_message = "{{=T('Working...')}}";
var w2p_ajax_date_format = "{{=T('%Y-%m-%d')}}";
var w2p_ajax_datetime_format = "{{=T('%Y-%m-%d %H:%M:%S')}}";
var ajax_error_500 = '{{=T.M('An error occured, please [[reload %s]] the page') % URL(args=request.args, vars=request.get_vars) }}'
//--></script>
so it is obviously missing a piece at the beginning.
The translation of 'Are you sure you want to delete this object?' also seems OK.
Thanks in advance for any ideas. w2eca team
[edit by admin: formatting]