Search Results for 'buddypress'
-
AuthorSearch Results
-
February 19, 2009 at 11:10 pm #38380
In reply to: Announcement: BuddyPress RC-1
Andy Peatling
KeymasterWhere specifically, on which user actions? If it’s links in emails then this is a known issue, it’ll be fixed soon.
February 19, 2009 at 10:20 pm #38373In reply to: Add Friend – not adding
Burt Adsit
Participant@awarner20 your problem with the email friendship requests is a bug. Can’t be solved with a one liner. Sorry. I did submit a workaround patch in trac though:
https://trac.buddypress.org/ticket/519
It eliminates the problem by eliminating the problem. Lemme explain. When a user requests friendship an email is sent out to the destination user. The destination user is supposed to click the link and it automatically approves or rejects the request. Doesn’t work due to the fact that a security mechanism is being used to validate the process. The ‘nonce’ security scheme uses the originating user’s identity and some other stuff to come up with this ‘nonce’ key. The key is only valid when used by the originating user.
When the destination user clicks on the link the key is used but they are not the originating user. So the security check fails. Andy is aware of the problem. I just removed the automatic accept/reject links and used a link to the destination user’s friendship notifications page where it will have to be manually accepted or rejected.
February 19, 2009 at 8:39 pm #38368In reply to: Announcement: BuddyPress RC-1
Joss Winn
ParticipantAndy, I’m running the latest default themes from SVN but still having the _wpnonce error.
February 19, 2009 at 5:53 pm #38351In reply to: Announcement: BuddyPress RC-1
Andy Peatling
KeymasterJosswin: you need to upgrade the themes, or read the second post on this thread – the bit about _wpnonce.
February 19, 2009 at 5:42 pm #38350In reply to: forum integration question
nsheriff
MemberHi Fishbowl81,
I want to make the bbpress forum to load in my buddypress site from a tab ‘forum’ which is like other tabs like home, blog, members. As you have on your site gorgeousgamers.com.
So that it incorporates the sites design theme and can still navigate through other tabs.
What is the best way around this?
Many thanks,
February 19, 2009 at 3:16 pm #38342In reply to: Announcement: BuddyPress RC-1
Joss Winn
Participant“Whenever I click on a link to accept a friendship request…” should read:
“Whenever I click on a link IN AN EMAIL to accept a friendship request…”
February 19, 2009 at 2:37 pm #38340In reply to: Announcement: BuddyPress RC-1
Joss Winn
ParticipantI’m running the latest version of SVN trunk, using the default home and members themes. Whenever I click on a link to accept a friendship request, I get the “Are you sure you want to do this?” message. Any suggestions? Thank you.
I might add this is also happening on my test installation, too, running the same setup, only in a sub dir.
February 19, 2009 at 1:43 pm #38338In reply to: Announcing: Events component
nicolagreco
Participantegerrits are you working too on that?
I’ve almost finished mine

Add it here http://buddypressdev.org/add-plugin
February 19, 2009 at 10:22 am #38333In reply to: Announcing: Events component
gpo1
Participantegerrits, If you need help for that posting twitter issue, liaison with this developer
http://www.phpvrouwen.nl/2009/01/04/twitme-17-on-buddypress/
February 19, 2009 at 8:03 am #38328In reply to: Forum Integration: HELPING HINTS
John James Jacoby
Keymaster./wordpress-mu-root-dirctory/whatever-you-want
Mine is at delsolownersclub.com/discussions/
You just need to make sure you reference that directory everyplace you need to within BuddyPress and bbPress to make sure they see each other.
February 19, 2009 at 7:04 am #38325In reply to: Group forums not working? On a DV?
John James Jacoby
KeymasterSWEEET SUCCESSSSS!
Okay… For those of that might be using “deep integration” namely using your BuddyPress/MU functions in bbPress, at the time of this writing at the top of your bb-config.php file, put…
if ( !defined( 'ABSPATH' ) & !defined('XMLRPC_REQUEST')) {
include_once( 'absolute/path/to/your/wordpressmu-directory/wp-blog-header.php' );
}This way, it only tries to include the MU/BP functions if they haven’t already been defined and if it’s NOT a xmlrpc request!
DUH! Yay! Burt, haha you rule…
February 19, 2009 at 6:38 am #38319In reply to: wierd bugs
Frumph
ParticipantFound the problem with the 404 page showing up on a redirect with buddypress. It’s not buddypress.
in wp-includes/pluggable.php in the main wp core the function wp_redirect –
if ( $is_IIS ) {
header(“Refresh: 0;url=$location”);
} else {
if ( php_sapi_name() != ‘cgi-fcgi’ )
status_header($status); // This causes problems on IIS and some FastCGI setups
header(“Location: $location”);
}
the $is_IIS is doing a REFRESH: 0; url=location when on windows server 2008 header(“Location: $location”); works fine with the latest fast-cgi module release
SOO basically in wp-includes vars.php making this change:
/**
* Whether the server software is IIS or something else
* @global bool $is_IIS
*/
if (strpos($_SERVER, ‘Microsoft-IIS’)) {
if (strpos($_SERVER, ‘Microsoft-IIS/7.0’)) {
$is_IIS = false;
} else {
$is_IIS = true; // (strpos($_SERVER, ‘Microsoft-IIS’) !== false) ? true : false;
}
} else {
$is_IIS = false;
}
fixed it, by declaring that a microsoft-iis/7.0 server is *not* iis
February 19, 2009 at 6:06 am #38314In reply to: Forum Integration: HELPING HINTS
Burt Adsit
ParticipantJohn, the user you use for group forums just has to have an ‘Administrator’ role or better. Keymaster should work. You should be aware that the password for that user is stored on the wpmu side in plain text in the blog 1 meta data table. Gotta have access to phpmyadmin to get it but..
Your permalinks on the bbpress side don’t have anything to do with it at all. XMLRPC is used and the only query for any type of asset by URL is to the xmlrpc.php file. Permalinks don’t come into play at all. As long as the wpmu side can find your site’s root url and the xmlrpc.php file that is supposed to live there all is well.
Don’t know about the deep integration question.
I followed all the steps and it still wasn’t working. I was doing everything right. I did everything right about 10 times. Still wasn’t working. This thread is me finding out why: https://buddypress.org/forums/topic.php?id=426
February 19, 2009 at 4:43 am #38312In reply to: Turn of BP Home theme to users
John James Jacoby
KeymasterYou’re quite welcome. Oh, and welcome to BuddyPress!
February 19, 2009 at 4:26 am #38310In reply to: Announcing: Events component
Burt Adsit
Participantegerrits, come on over to this thread and contribute to the discussion there.
BP Content Tags Project – Call For Ideas
February 19, 2009 at 4:12 am #38304In reply to: wierd bugs
Frumph
Participantthanks appreciate it very much, the users are loving the buddypress
i’m very happy that i’m using itthe members, directory and blog -> widget area (sidebar) are all the same where it needs the float cleared at the end of the loop if you could
sorry I forgot this one:
define( ‘NOBLOGREDIRECT’, ‘http://webcomicplanet.com/’ );
I need to use ^^ that in the wp-config.php so that it redirects however if I do that, the 404 error doesnt refresh to the appropriate page when doing a buddypress action so i’m guessing that’s related
this is windows server 2008 so i’m sure there are some problems here and there
February 19, 2009 at 3:00 am #38291In reply to: Is this a bug ? – User Reg time wrong
Trent Adams
ParticipantStand corrected…it is a bug, but not a buddypress bug
February 19, 2009 at 2:43 am #38289In reply to: Turn of BP Home theme to users
John James Jacoby
KeymasterActivate the theme per normal for the main website, or main blog of your website. Then, in Site Admin under themes, disable it. At that point it will stay enabled for your 1 blog, and no one else can choose it.
If you edit a blog specifically from the Blog menu in Site Admin, you can still optionally enable the BuddyPress Home theme if you’d like.
February 19, 2009 at 12:48 am #38282In reply to: Albums – Update?
Kevin Ryman
ParticipantAlbums should be a core BuddyPress feature. Hopefully we will see this feature soon.
February 18, 2009 at 11:17 pm #38271In reply to: Site-wide recent blog widget is still farked
Burt Adsit
ParticipantHis previous post on same problem https://buddypress.org/forums/topic.php?id=1256
I can point to other threads about this same issue on the mu forums by Bill. Wouldn’t do much good though it’s the same problem and there was no resolution over there either.
I don’t know how the problem was resolved in the thread above. I was just told by Bill that it was fixed in a PM. I got the impression that Bill had found the problem and it was a *smack forehead* duh! kinda thing. I didn’t pursue it any further. Closed the topic so people wouldn’t think it was an outstanding issue.
Nobody else is having this particular issue and yes it’s been going on for some time now.
February 18, 2009 at 10:35 pm #38268In reply to: Site-wide recent blog widget is still farked
February 18, 2009 at 10:22 pm #38265In reply to: Site-wide recent blog widget is still farked
peoriapundit1
MemberI made a snarky post because it was the only thing that generated any sort of assistance. I expect to have problems with RC-1 versions. I also expect the support forum to work. This is the first comment I’ve been able to successfully post in days. I spend months telling my members bloggers that BuddyPress was going to do wonders for their blog.
As I recall, the post that most recently preceded the break was one that included an image, followed by one line of text.
I’m not trying to be snarky here, but I would expect a plugin to not break when this happens. I have bloggers who post almost nothing but pictures and YouTube videos.
It’s not a theme issue, since this has happened using at least three different themes on my front page and on a member blog.
February 18, 2009 at 10:14 pm #38264In reply to: Site-wide recent blog widget is still farked
Andy Peatling
KeymasterWith all due respect, your attitude makes me want to help you less, and I’m sure I’m not the only one.
First of all, this is pre-release software, if you were not prepared or did not expect potential headaches, then you should not have installed BuddyPress.
The community around this project is coming on leaps and bounds, usually all threads will eventually get an answer which is almost unheard of for something so new. There have been caching issues with the forums, nothing to do with bbPress, and it has been temperamental with all forums on Automattic servers. This should be cleared up now.
Your problem sounds like perhaps something in a post is breaking the blogs widget, which would explain why it sometimes works, and sometimes does not.
If you can somehow monitor which post was the newest when the widget stopped working, that would help a great deal to address what it is in the post that is breaking the widget.
If anyone else has experienced this issue – please post a reply here.
February 18, 2009 at 9:10 pm #38256In reply to: Forum Integration: HELPING HINTS
bobman024
ParticipantOk so…I have successfully installed bbpress, WPMU and buddypress via the instructions here…Still getting this when trying to create forum: “Attention Site Admin: Group forums require correct setup and configuration of a bbPress installation.”
I have ran through the steps 10 times and have MU 2.7, bbpress 1.0-alpha-6 & Buddypress beta 2.
I also should know that in dev, I followed all the same steps and had success. Would there be any reason why cookies work, duplicate log-ins work and yet no forum sync up?
February 18, 2009 at 7:07 pm #38250In reply to: Add Friend – not adding
John James Jacoby
KeymasterNot using WP Cache are you? If so, obviously delete files in cache?
I’ve also noticed some quirks with the jQuery versions. Make sure you’re using the .js file versions included with both BuddyPress and WPMU, as updating to the new versions available at the jQuery website seems to break things for me. Don’t ask how I know.
-
AuthorSearch Results