I am replying to myself:
After adding:
onException: function(req,exception) {
alert("The request had a fatal exception thrown.\n\n" +
exception);
alert("exception.description:"+exception.description);
alert("exception.message"+exception.message);
return true;
},
to the request IE7 told me about could not complete the operation due
to error c00ce56e.
After I asked google about that error I found the solution:
In the PHP file I have to add the following:
header('Content-type: text/html; Charset=utf-8');
echo "123";
and it works.
Regards
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby
on Rails: Spinoffs" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/rubyonrails-spinoffs?hl=en
-~----------~----~----~----~------~----~------~--~---