Forum Replies Created
-
Thank you sbrajesh, I think that is what I was looking for. I will do that for the time being.
Watch out for the new Welcome Widget HTML entity encoding, it got me and I had to turn it off because I had HTML in my Welcome widget.
See the release notes or forum comments for where to take it out from Andy
The 1.0.1 also fixes this issue
A guy from Stackoverflow had the solution
http://stackoverflow.com/questions/948116/ajax-404-with-results-using-buddypress/957561#957561
Try adding this line of code to /wp-content/plugins/buddypress/bp-core/bp-core-ajax-handler.php before do_action()
status_header( 200 );
A guy from Stackoverflow had the solution
http://stackoverflow.com/questions/948116/ajax-404-with-results-using-buddypress/957561#957561
Try adding this line of code to /wp-content/plugins/buddypress/bp-core/bp-core-ajax-handler.php before do_action()
status_header( 200 );
Your welcome, glad to help:)
I am on the same boat. Godaddy. Did any of you solve this?
Ok I see you have position relative set for both on the header, this allows for some handy position absolute inside.
Set the margin on the #nav and #nav li to 0 and leave all the other properties, then set the nav to position: absolute, and top: -5px, right 20px(or your pref from the right)
#header ul#nav {
margin: 0;
position: absolute;
top: -5px;
right: 20px;
}
#header ul#nav li {
marign:0 0 0 18px;
}This should make it more consistent instead of fighting with negative margins.
Thanks DJPaul, I was really tired starying at that bp-xprofile.php and didn’t spot any of those handy functions. Thanks for pointing me back to that file. I ended using
xprofile_get_field_data() to save myself a step.
I tried a fresh install, worked through a few permission settings (755 wp-content/ recursively from FTP and again from SSH) that some related forum topics suggested and still no luck.
bp-core-ajax-handler.php Seems to be returning 404 also for messages AJAX call and the letters on the groups page.
Does anybody see the same issue in firebug, maybe I am going nutty.
I see the response in firebug, and the 404 too, and the ajax loader keeps spinning.
It is definitely not a symlink. That server is a godaddy server and weird thing is on my laptop here it works fine. My assumption was that it might be a crappy upload on filezilla’s part but I reuploaded and it does return results and 404 through firezilla. I will check what is up. Any other suggestions would be helpful.
I am having a similar problem:
Request Friend
/members/username/
Ajax keeps spinning. Firebug is saying 404 was returned but returning the following response:
Members Home Widget
Newest | Active | Popular
Ajax keeps spinning. Firebug is saying 404, but also returning results which is quite odd.
/wp-content/plugins/buddypress/bp-core/bp-core-ajax-handler.php
Versions:
MU 2.7.1
BuddyPress
FF 3.0.10
OSX Leopard 10.5.7
It’s quite easy to see with firebug on the homepage:
jobaru.com
In your site-wide.css(side wide) or custom.css(home) in your wordpress themes theme.
custom.css (line 83)
#header {
background: none;
padding:0 25px 20px;
position: relative;
}
custom.css (line 87)
#header ul#nav {
float:right;
margin:-63px -5px 0 0;
}
custom.css (line 91)
#header ul#nav li {
float:left;
margin:-20px 0 0 18px;
}
Hope that helps, I had the same problem there is some style inconsistencies between the bphome and bpmembers styles.