vote up 1 vote down star

i have a page performing the following ajax request when a button is pressed.

normally i get a json object back and it works fine, i have noticed on intermittent requests (usually only the first request from that page), i get back a 200 success code with a blank page.

if i reload the html page, then press the button again it works fine straight afterwards.

by intermittent i mean i can't replicate the issue at will, but it is happening regularly enough that i need to do something about it

i am just wondering if it is most likely an ajax or in particular a prototype problem or a server side issue (i am using debian/apahce/php)

what can i try to track down the problem ?

new Ajax.Request( url, 
{
	method:'post',
	parameters: $('TeamForm').serialize(true),
	onSuccess: function(transport) {
		// do stuff						

	},
	onFailure: function(transport) { 
		// display error

	}
 });
flag

62% accept rate
I suppose you are using Firefox 3.5, and maybe Firebug ? – Fabien Ménager Jul 21 at 8:59
yes i am using that to confirm i am posting correct data and returning a blank page. i have experienced the same issue in google chrome and explorer – bumperbox Jul 21 at 9:12
Ok, if you have the same issue in Chrome and IE, I don't think that your problem is the one on thie page : code.google.com/p/fbug/… (more details here : nczonline.net/blog/2009/… ) – Fabien Ménager Jul 21 at 9:17
thanks for pointing that out, i might try a proxy to confirm what i am seeing in firebug – bumperbox Jul 21 at 10:17
1  
Maybe your PHP backend script is "crashing" sometimes ? Or you pass in a case which ends up with an "exit" or "die" statement ? Have you tried looking into Apache's error_log to see if there was anything useful there (after activating error_logging) ? – Pascal MARTIN Jul 21 at 10:40
show 4 more comments

2 Answers

vote up 1 vote down

This isn't a solution to your problem but a workaround -- in the meantime, you could detect if the response's responseJSON property is NULL, and if so, log the error and resubmit the request. That way at least the second request should go through. The easiest way to handle this might be to throw a custom object from your onSuccess handler allowing your onFailure handler to catch it and resubmit.

link|flag
good idea, i would prefer to fix it properly, but at least i have a fallback option now – bumperbox Jul 22 at 3:50
vote up 0 vote down

Based on the example you provided, the only source of concern I can see with the javascript is the $('TeamForm').serialize(true); statement. Are you sure that the TeamForm has well formed data, and your PHP backend is handling this appropriately?

Check your PHP code for any trailing whitespace. You should not end your PHP files with a closing tag.

e.g.

<?php
class Foo {
}
?> //There is a space after this closing tag!

Would result in the hidden space being sent to your browser. It is valid syntax (and recommended) to leave the closing tag off of a pure PHP file:

<?php
class Foo {
}

Also check your code for any echo's or print's that may send output to the browser. Also check your display_errors setting, as an error message could result in data being sent to the browser as well.

I'd put 99:1 odds on the problem being server-side.

link|flag
according to firebug the serialize part is working fine, and i don't have any trailing spaces. thinking about it more, i do agree on it being a server side issue. one thing i have just found out is that the json_encode only likes utf8 chars, and i am not enforcing that, so i am going to do some tests and see if that is the issue – bumperbox Jul 21 at 23:55
I wasn't implying the serialize was failing. I was suggesting that the contents of that serialization could possibly be unexpected on the server-side. Potentially causing a crash or error server-side. Do you have a demo page you can provide access to that demonstrates this problem? – hobodave Jul 22 at 2:04
When debugging your server side script make sure to use try/catch blocks and possible a custom error handler. SInce you're expecting JSON data, any errors really need to be caught or else you'll end up with the behavior you're experiencing. – Josh Jul 22 at 2:20
@hobodave, you are probably right about the upexpected data, eg being non utf-8 data. the current website is not public facing, but if i don't have any luck with the suggestions i will create a small public demo – bumperbox Jul 22 at 3:49

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.