Search Results for 'wordpress'
-
AuthorSearch Results
-
February 22, 2009 at 5:56 am #38523
In reply to: after login redirect to another page
Trent Adams
ParticipantYou can also check out the following plugin as well

https://wordpress.org/extend/plugins/peters-login-redirect/
Trent
February 22, 2009 at 4:58 am #38517In reply to: We really need a required full name?
tekanji
MemberI think the idea is not to have BuddyPress permanently alter the WordPress related data.
I’m new to BP and so I’m not familiar with how all the functions work, but what in the original WP data structure would be altered by deprecating fullname in favor of using the WP fields?
…then really BuddyPress should be able to modify ALL of the original WordPress user info exactly like the profile admin panel does…
I would like that, actually. Or at least to have the option to have the profile be able to modify that information.
I want the original WP functionality that allows a user to choose which fields — username, first name, last name, or nickname — to display for them. I thought that was a great addition to WP and I don’t like that installing BP has effectively cut me and my users off from that choice without some serious code modification on my end.
February 22, 2009 at 4:40 am #38515In reply to: We really need a required full name?
John James Jacoby
KeymasterI think the idea is not to have BuddyPress permanently alter the WordPress related data. Right now, and please correct me if I’m wrong, but past of the design and development process of BuddyPress is that it can be added and removed without any changes done to the WPMU data structure, apart from conveniences like changing a password, etc…
You can rename the “Full Name” in the BuddyPress to say “Nick Name” or “Display Name” or whatever you’d like, and then code your themes to use that info if you so choose…
To be honest, from a developers standpoint, I like how it is right now, as it allows me to keep things separate. If you’d like to open up the ability to modify the fullname, then really BuddyPress should be able to modify ALL of the original WordPress user info exactly like the profile admin panel does, with website, info, firstname, lastname, etc…
February 22, 2009 at 3:20 am #38506In reply to: We really need a required full name?
tekanji
MemberI’m with DJPaul; I would like to see BP’s proprietary fullname field deprecated and have WP’s native fields be used instead.
Not only would it allow for more customizability/adaptability of BP themes, plugins, etc but it would also get rid of an extra field that, as far as I can tell anyway, can be handled just as well with WP’s first_name and last_name fields.
I agree that we should put this suggestion into a trac ticket.
February 21, 2009 at 9:59 am #38469In reply to: Only one blog for user
federicobo
ParticipantIn this post (in WordPress MU forum) I’ve found a possible solution, but I’ve tried and seems not functioned (the user can again create more than one blog).
Some feedback?
February 20, 2009 at 9:51 am #38413In reply to: Next BPDEV plugin? Here your proposal
gpo1
Participant@jimthedj65, Regarding WP video framework plugin integrated into BP, you need to liaison with ddmitry on this. He got it working on his site !!
February 20, 2009 at 4:52 am #38404Burt Adsit
ParticipantWhen you use deep integration bbpress clears all the actions and filters. bp runs on actions. It does this as part of the load sequence.
In bb-settings.php:
/**
* Remove filters and action that have been set by an included WordPress install
*/
if ( defined( 'ABSPATH' ) ) {
$wp_filter = array();
$wp_actions = array();
$merged_filters = array();
$wp_current_filter = array();
}When I’m using xmlrpc I have to manually fire up the bp globals I want to refer to like:
function oci_bp_group_forums() {
// only do this if the xmlrpc server is firing up and we are servicing a request
if ( defined('XMLRPC_REQUEST') && XMLRPC_REQUEST ){
// bp's globals don't get set until a 'wp' action occurs. this seems to be all that is needed.
bp_core_setup_globals();
groups_setup_globals();
bp_activity_setup_globals();
}
}
add_action('init','oci_bp_group_forums');That gets triggered by the end of the wp-load.php sequence. do_action(‘init’) is the last thing that happens there.
bp gets woke up by listening to the ‘wp’ action. I think all of bp gets activated by ‘wp’.
I just remember having some problems with xmlrpc and the ‘wp’ action so I manually tied things to the ‘init’ action. All the plugins for bp load, it’s lots of other stuff that gets initialized by ‘wp’.
February 20, 2009 at 3:44 am #38403In reply to: Yet Another BBPress Integration Question…
Erwin Gerrits
ParticipantYou MUST share the database for them to be able to share users. bbpress will create some tables in your wordpress mu database and share the users table. If you keep separate databases, deep integration will never work.
February 20, 2009 at 3:08 am #38399In reply to: Yet Another BBPress Integration Question…
Tracedef
ParticipantAwesome, working on it now…. also, I’m assuming that you start off with a new database for BBPress and only integrate for the user tables? In step two of BBPress setup, the last checkbox is for “Show advanced database settings” and says “If your bbPress and WordPress installation do not share the same database, then you will need to add advanced settings.” ….. we don’t want to share the same database for the installs do we?
February 20, 2009 at 2:38 am #38395In reply to: Yet Another BBPress Integration Question…
Erwin Gerrits
ParticipantIt actually doesn’t matter if you do it during installation or after… it turns out to be the same.
Have you seen this article:
http://bavatuesdays.com/integrating-wpmu-buddypress-and-bbpress/
It was extremely helpful with my setup and includes the video you mentioned, with some additional pointers. Also read the comment section for some addtional info.
Just make sure you have the latest versions of both and start off fresh. Follow the article I quoted and give that sigh of relief when you switch from WordPress MU to bbpress and see “Welcome admin!” on top instead of “Login”….
February 20, 2009 at 12:00 am #38383In reply to: Reporting & Fixing Bugs
diegolopes
MemberMy admin_bar at admin wordpress mu dashboard doesn’t translated, only de admin bar at buddypress area is translated.
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 #38318In reply to: Forum Integration: HELPING HINTS
ifoundyou
MemberI am attempting to install the forum myself now. Ok so what I did first was to go ahead and in the root dirctory created a folder called forums. Next, what I did was to go ahead and download from wordpress the bp press forum module. Is this correct so far?
Regards,
Charles Pisano
February 19, 2009 at 4:31 am #38311In reply to: Forum Integration: HELPING HINTS
John James Jacoby
KeymasterQuestion about step 1.
You say that the user has to be created on the “bbPress” side. Does this refer to a user that is registered through register.php via the forums? What if my forums were integrated from day 1 with WordPress? Is it okay to just use the “admin” keymaster account?
Question about permalinks and .htaccess.
I am using pretty permalinks on the bbPress side, and there is an .htaccess file on the root of the bbpress install folder. What would I want to look out for to prevent this from causing a problem?
Question about “deep integration”
I am currently including my wp-blog-header.php file inside my bb-config.php file. Will this cause conflicts?
Question about what to do if I swear I’ve followed the steps the way they are written and the ways everyone else has said, and it isn’t working.
February 19, 2009 at 4:20 am #38308In reply to: Add Friend – not adding
modemlooper
Moderatorok I guess I spoke too soon. Had this in red with 4040 not found after it:
http://twitterfic.com/wp-content/mu-plugins/bp-core/bp-core-ajax-handler.php
then the other code:
Date
Thu, 19 Feb 2009 04:16:47 GMT
Server
Apache
Cache-Control
no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Expires
Thu, 19 Nov 1981 08:52:00 GMT
Pragma
no-cache
X-Pingback
http://twitterfic.com/xmlrpc.php
Last-Modified
Thu, 19 Feb 2009 04:16:47 GMT
Keep-Alive
timeout=15, max=99
Connection
Keep-Alive
Transfer-Encoding
chunked
Content-Type
text/html; charset=UTF-8
Request Headers
Host
twitterfic.com
User-Agent
Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.5; en-US; rv:1.9.0.5) Gecko/2008120121 Firefox/3.0.5
Accept
*/*
Accept-Language
en-us,en;q=0.5
Accept-Encoding
gzip,deflate
Accept-Charset
ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive
300
Connection
keep-alive
Content-Type
application/x-www-form-urlencoded; charset=UTF-8
X-Requested-With
XMLHttpRequest
Referer
Content-Length
888
Cookie
wp-settings-time-1=1234978735; wp-settings-1=m0%3Do%26m1%3Dc%26m2%3Dc%26m3%3Dc%26m4%3Dc%26m5%3Do%26m6
%3Dc%26m7%3Do%26m8%3Dc%26m9%3Dc%26m10%3Dc%26m11%3Dc; wp-settings-time-2=1234896835; __utma=253961357
.2322033939621672000.1234866299.1235007210.1235014438.11; __utmz=253961357.1234900041.3.2.utmcsr=trueblood
.twitterfic.com|utmccn=(referral)|utmcmd=referral|utmcct=/groups; wp-settings-2=m0%3Dc%26m1%3Dc; wp-settings-time-5
=1234989991; __utmb=253961357.60.10.1235014438; PHPSESSID=4bv8ld7abk3iutqqhht3jo9d06; __utmc=253961357
; wordpress_test_cookie=WP+Cookie+check; wordpress_logged_in_=kitchenbitch%7C1235188924%7C7aa68ef091
4f0885b507970bff70071e
_wpnonce
f149be8ca2
action
addremove_friend
cookie
wp-settings-time-1%3D1234978735%3B%20wp-settings-1%3Dm0%253Do%2526m1%253Dc%2526m2%253Dc%2526m3%253Dc
%2526m4%253Dc%2526m5%253Do%2526m6%253Dc%2526m7%253Do%2526m8%253Dc%2526m9%253Dc%2526m10%253Dc%2526m11
%253Dc%3B%20wp-settings-time-2%3D1234896835%3B%20__utma%3D253961357.2322033939621672000.1234866299.1235007210
.1235014438.11%3B%20__utmz%3D253961357.1234900041.3.2.utmcsr%3Dtrueblood.twitterfic.com%7Cutmccn%3D(referral
)%7Cutmcmd%3Dreferral%7Cutmcct%3D%2Fgroups%3B%20wp-settings-2%3Dm0%253Dc%2526m1%253Dc%3B%20wp-settings-time-5
%3D1234989991%3B%20__utmb%3D253961357.60.10.1235014438%3B%20PHPSESSID%3D4bv8ld7abk3iutqqhht3jo9d06%3B
%20__utmc%3D253961357%3B%20wordpress_test_cookie%3DWP%2BCookie%2Bcheck
fid
5
February 19, 2009 at 3:12 am #38294In reply to: Add Friend – not adding
cdutoit
ParticipantAndy, I can’t seem to post such a lengthy response in this forum…it wont save my post. I will try upload it somewhere for download (for the response), but here is some info:
The console shows a red error:
POST http://jurnl.com/wp-content/mu-plugins/bp-core/bp-core-ajax-handler.php
http://jurnl.com/wp-content/mu-plugins/bp-core/bp-core-ajax-handler.php
404 Not Found
456ms
Although I got excited, I verified the file is there.
The Request looks like this:
_wpnonce
318ee4a2ca
action
addremove_friend
cookie
PHPSESSID%3D5085d0cb2f4434771cfa8a20d63358cf%3B%20wordpress_test_cookie%3DWP%2BCookie%2Bcheck
fid
1
The Response I can’t post here so will upload it and let you know.
Will post soon.
Thanks
February 18, 2009 at 1:51 am #38194In reply to: forum integration question
ozpoker
ParticipantNope – I’ve done all that – I can post on buddypress and and appears in forum and I can post on forum end and appears in buddypress group.
the only thing I didn’t do was the intial wordpress integration when installing bbpress – which is found under “bbpress” >> setting >> wp integration.
During bbpress I got “minor” errors regard auth_salt and “cookies” which I ignored as I ssumed the buddypress/bbpress integaration would’ve superseded the initial wp/bbpress integartion.
February 17, 2009 at 8:27 pm #38179In reply to: BP Content Tags Project – Call For Ideas
John James Jacoby
KeymasterI think this makes perfect sense, but I think the word “tag” needs to be used carefully, because WordPress has sort of defined the use of “tags and a “tag cloud” as a specific function, and this does not sound like that.
This just sounds like a collective list of links that the group can add things to, more like relative content than tags in my mind. Similar to the “blog this” part of WordPress that lets you be on any web page and via a bookmark, create a blog about it, this would allow members of a group to be on either 1.) a page/post/attachment within your site, or 2.) any site on the web, and add it as a relative link for your specific group.
Am I making sense, or going off in the wrong direction maybe?
February 17, 2009 at 7:42 pm #38176In reply to: Wire as Blog
nicolagreco
Participantas i said, i made that same think you’v planned to do

not using wires but integrating buddypress membertheme with wordpress loops
February 17, 2009 at 1:39 am #38139In reply to: Running BuddyPress in a subdirectory
jugoretz
ParticipantNope, no other problems, just the messaging problem I referred to in another thread (and maybe that’s related?). The other person I’ve found who has that problem does not seem to have a subdirectory install, though. (in the comments here http://futuristguy.wordpress.com/2009/01/05/missional-tribe-not-just-another-use-of-the-word-missional/)
So far every other problem I’ve had has been clearly matched to this misalignment of /eportfolios and /eportfolios/social . And working out the right links has fixed all of those problems.
But I think maybe I wasn’t clear–it’s not just that buddypress is in a sub-directory, the issue is that the buddypress homepage (home blog) is *not* the home blog of the wpmu install. Blog number 1 of wpmu is at /eportfolios and the buddypress home is /eportfolios/social
Is that something you’ve tested and had full functionality without these changes? That would be great–would make upgrades easier–but I don’t see how.
See, siteurl() is macaulay.cuny.edu/eportfolios . but in the case of those links in the top nav (and others) it should be macaulay.cuny.edu/eportfolios/social
Tell me there’s something obvious I’m missing! That would be great!
February 17, 2009 at 1:29 am #38137Andy Peatling
KeymasterBuddyPress is a set of WordPress MU plugins.
February 16, 2009 at 10:19 am #38063In reply to: Announcement: BuddyPress RC-1
Arturo
ParticipantAndy, about _wpnonce, the problem with “WordPress failure notice” the theme is the default home/member theme, and the problem is with the email… how i resolve this? thanks!
edit: i’ve read in the svn the fixing in #1126. Thanks.
February 16, 2009 at 2:54 am #38034In reply to: Announcing BuddyPress Group Forums for bbPress
John James Jacoby
KeymasterSorry for the confusion. I’m juggling a few ideas so I’m probably not communicating in a straight line right now.
Check out http://delsolownersclub.com/discussions/topic/great-job-john for an example…
Basically some of the people logged in and posting in my forums were converted over from a wordpress.org install, and they have yet to update their buddypress profiles with real name info, so using this plugin, their names don’t show up at all, and neither do their avatars as they haven’t uploaded one yet either. Make sense?
And yes about your template… If you look at the front-page.php or forum.php files, you’ll see that the usernames still fall back on the bbPress username of ‘admin’ instead of your name as ‘Site Admin’ if that makes sense? Striving for uniformity, I’d like to get all of the names displayed the same.
February 16, 2009 at 2:00 am #38025In reply to: Announcing BuddyPress Group Forums for bbPress
John James Jacoby
KeymasterInstalled and working. Yay!

Since I converted my db from a wordpress.org install, not all of my users have converted their information, i.e. real names, etc… Is there any way to have a fall back and use the nicename in the event no real name exists? Also, if there is no avatar uploaded, it doesn’t seem to use the generated avatar for me. The idea would be to have everyone use an avatar eventually, but alas my user base can be slow to adapt…
Do you have a way to do the user names in forum.php, functions that are usually topic_last_poster() and $topic->topic_poster_name? I suppose if the user->ID of those people is within $topic then it’s pretty straight forward eh…
-
AuthorSearch Results