up vote 0 down vote favorite
share [g+] share [fb]

On my development machine everything works fine. On the live server (Godaddy), the AJAX requests from BuddyPress are returning results and a 404 error in FireBug. But the script is seeing the results as a fail and the indicators continue to spin.

Example: http://jobaru.com/ on the homepage there is Newest | Active | Popular under memebers using the AJAX as well as the letters on the groups page.

Things I have tried: Double checked the file was actually there first, checked permissions to be able to read. Did a fresh install.

Any ideas on why it would return 404 header and valid response?

link|improve this question
feedback

6 Answers

up vote 2 down vote accepted

I don't know why it returns 404, but try adding this line of code to /wp-content/plugins/buddypress/bp-core/bp-core-ajax-handler.php before do_action()

status_header( 200 );

I'm running a heavily modified version of BuddyPress 1.0 RC1, and intercept the ajax posts in bp-custom.php, but setting the status header in the custom file before I did my own logic worked just fine for me.

link|improve this answer
That totally did it! Wow, thank you. – joelpittet Jun 6 '09 at 15:10
feedback

This seems like it's something with GoDaddy, judging by your comments. Until you hear back from their support, I'd modify the AJAX script to ignore the 404 error for that particular request.

link|improve this answer
feedback

I'm taking a look at the AJAX response, and it looks like instead of pure HTML that it's returning, it has this at the beginning: 0[[SPLIT]] and a zero at the end. Could this have something to do with it?

link|improve this answer
0[[SPLIT]] is actually a positive response in BuddyPress and -1[[SPLIT]] is a negative response. – joelpittet Jun 4 '09 at 2:25
Can you post the AJAX code? – James Skidmore Jun 4 '09 at 2:26
feedback

make sure you already added the error handler for the ajax fail (error)? try to hide the spin indicator first to see the effect taking place.

link|improve this answer
It seems to handle the AJAX fail, the weird thing is the response is coming through fine but it is sending along 404 header which is confusing the ajax script. 2 others have reported this on Godaddy with no successful results. I have a support request in to them but thinking you guys may be more helpful. – joelpittet Jun 4 '09 at 3:29
feedback

FWIW, I have seen the exact same problem with JSON-formatted replies as part of a WordPress plugin when hosted at GoDaddy.com. The JSON results are sent correctly, but the HTTP response has a status code of 404.

I am fairly convinced that this is a problem with their Apache header/configurations, and I will be trying to get a hold of their tech support team (wish me luck) in an attempt to get to the bottom of this.

I will post here if I get a response back from them.

link|improve this answer
Problem was also resolved by adding the status_header( 200 ) function call when making an AJAX request: if($_GET['ajax']){ status_header( 200 ); ... } – Jason Buberel Dec 20 '09 at 1:07
feedback

I was getting the 404 response error while playing with Country city dropdown menu using AJAX and the problem was

<select name="lm_country" id="lm_coutry" 
    onChange="getCity('getcities.php?country='+this.value)">

Then I gave a complete url as listed hereunder;-

<select name="lm_country" id="lm_coutry" 
    onChange="getCity('http://localhost/civic/includes/getcities.php?country='+this.value)">
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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