Search Results for 'buddypress'
-
AuthorSearch Results
-
December 7, 2009 at 11:39 pm #58208
In reply to: Upgrading to 1.1.3 break template changes?
Brajesh Singh
Participantfrom which version of buddypress you are trying to upgrade ? if 1.0.x ,then you need to update your theme. btw nothing is overwritten(at least the themes) unless you do it manually.
December 7, 2009 at 11:15 pm #58206Seobrien
ParticipantGreat thread, if I could add, I’d really like to see the themes section of buddypress built out (https://buddypress.org/extend/themes/). I appreciate and agree that it is hardly a priority but have there really only been 2 themes created in the past year??
December 7, 2009 at 11:09 pm #58204In reply to: BP could handle a huge number of members?
John James Jacoby
KeymasterWordPress scales just fine. Is it perfectly and sveltely built for all applications? No.
http://ma.tt/2006/03/wordpress-and-lyceum/ is a good read about this from a few years back.

BuddyPress doesn’t really suffer any of these as advantages or disadvantages, since it currently sits on top of an MU installation; it just kinda “is.”
December 7, 2009 at 11:08 pm #58203Andrea Rennick
ParticipantThe user blogs are handled by MU though, not buddypress.
It’s easy enough to strip out what you don’t need from a copy of the theme, or as suggested above, use a child theme for the blogs area.Also, you need to either move the folders to the default theme folder, so it gets correctly applied, or use a plugin to control this (I like new blog defaults).
December 7, 2009 at 11:07 pm #58202Andrea Rennick
ParticipantI’m working on something.
It’s a little more involved with just moving stuff over.
December 7, 2009 at 10:57 pm #58201In reply to: a template question
grosbouff
Participant(PS : the problem will be the same with the loaded CSS and JS files. You should really add something to the buddypress core to make this easier).
Here’s how I did to load CSS & JS from the plugin directory (default) if there’s no files for the plugin into the current theme :
define ( ‘BP_QUICKPRESS_PLUGIN_NAME’, ‘buddypress-quickpress’ );
define ( ‘BP_QUICKPRESS_PLUGIN_URL’, WP_PLUGIN_URL . ‘/’ . BP_QUICKPRESS_PLUGIN_NAME );
wp_enqueue_script( ‘bp-quickpress-expandable-tree-js’, apply_filters(‘bp_quickpress_locate_js’,’_inc/js/expandableTree.js’),array(‘jquery’), ‘1.0’ );
wp_enqueue_style( ‘bp-quickpress-screen’, apply_filters(‘bp_quickpress_locate_css’,’style.css’) );
function bp_quickpress_load_template_files($file) {
$theme_path = STYLESHEETPATH . ‘/quickpress’;
$theme_url = get_stylesheet_directory_uri() . ‘/quickpress’;
if ( file_exists( $theme_path.’/’.$file ) ) {
return $theme_url.’/’.$file;
}else {
return BP_QUICKPRESS_PLUGIN_URL.’/theme/quickpress/’.$file;
}
}
add_filter(‘bp_quickpress_locate_js’,’bp_quickpress_load_template_files’);
add_filter(‘bp_quickpress_locate_css’,’bp_quickpress_load_template_files’);
December 7, 2009 at 10:22 pm #58200In reply to: Error Log with PHP Fatal Errors
Jean-Pierre Michaud
Participantthe buddypress files have to be uploaded in the wp-content/plugins directory, not the root.
December 7, 2009 at 10:11 pm #58198In reply to: Error Log with PHP Fatal Errors
Brajesh Singh
Participanta far as I see, your problem is the “BP_PLUGIN_DIR” is not getting used correctly.It is output in error log as literal ,which should not happen.
Please delete the old buddypress, use FTP and upload a fresh copy of buddypress to wp-content/plugins
Try activating and see if this error occurs again
December 7, 2009 at 9:59 pm #58197In reply to: Error Log with PHP Fatal Errors
blakicemg
ParticipantBuddypress should work in both subdomain and subdirectory setups, at least when I first looked at it it did. But thats something to look into.
December 7, 2009 at 8:31 pm #58193In reply to: Error Log with PHP Fatal Errors
blakicemg
Participant1. Which version of WPMU are you running?
2.8.4
2. Did you install WPMU as a directory or subdomain install?
Subdomain
3. If a directory install, is it in root or in a subdirectory?
n/a
4. Did you upgraded from a previous version of WPMU? If so, from which version?
2.8.3
5. Was WPMU functioning properly before installing/upgrading BuddyPress?
Yes
6. Which version of BuddyPress (BP) are you running?
1.1.3
7. Did you upgraded from a previous version of BP? If so, from which version?
no
8. Do you have any plugins other than BuddyPress installed and activated?
yes
9. Are you using the standard BuddyPress themes or customized themes?
Customised
10. Have you modified the core files in any way?
No
11. Do you have any custom functions in bp-custom.php?
no
12. If running bbPress, which version? Or did your BuddyPress install come with a copy of bbPress built-in?
Not installed yet
13. Please provide a list of any errors in your server’s log files.
There are no errors in the wordpress log
BP Errors:
[07-Dec-2009 10:11:07] PHP Fatal error: Call to undefined function plugins_url() in /home/brownsw/public_html/wp-content/plugins/buddypress/bp-core.php on line 12
[07-Dec-2009 10:15:14] PHP Warning: require(BP_PLUGIN_DIR/bp-wire/bp-wire-classes.php) [function.require]: failed to open stream: No such file or directory in /home/brownsw/public_html/wp-content/plugins/buddypress/bp-wire.php on line 7
[07-Dec-2009 10:15:14] PHP Fatal error: require() [function.require]: Failed opening required ‘BP_PLUGIN_DIR/bp-wire/bp-wire-classes.php’ (include_path=’.:/usr/lib/php:/usr/local/lib/php’) in /home/brownsw/public_html/wp-content/plugins/buddypress/bp-wire.php on line 7
[07-Dec-2009 10:16:36] PHP Warning: require(BP_PLUGIN_DIR/bp-blogs/bp-blogs-classes.php) [function.require]: failed to open stream: No such file or directory in /home/brownsw/public_html/wp-content/plugins/buddypress/bp-blogs.php on line 9
[07-Dec-2009 10:16:36] PHP Fatal error: require() [function.require]: Failed opening required ‘BP_PLUGIN_DIR/bp-blogs/bp-blogs-classes.php’ (include_path=’.:/usr/lib/php:/usr/local/lib/php’) in /home/brownsw/public_html/wp-content/plugins/buddypress/bp-blogs.php on line 9
[07-Dec-2009 10:18:02] PHP Warning: require(BP_PLUGIN_DIR/bp-groups/bp-groups-classes.php) [function.require]: failed to open stream: No such file or directory in /home/brownsw/public_html/wp-content/plugins/buddypress/bp-groups.php on line 9
[07-Dec-2009 10:18:02] PHP Fatal error: require() [function.require]: Failed opening required ‘BP_PLUGIN_DIR/bp-groups/bp-groups-classes.php’ (include_path=’.:/usr/lib/php:/usr/local/lib/php’) in /home/brownsw/public_html/wp-content/plugins/buddypress/bp-groups.php on line 9
[07-Dec-2009 10:19:29] PHP Warning: require(BP_PLUGIN_DIR/bp-forums/bp-forums-bbpress.php) [function.require]: failed to open stream: No such file or directory in /home/brownsw/public_html/wp-content/plugins/buddypress/bp-forums.php on line 11
[07-Dec-2009 10:19:29] PHP Fatal error: require() [function.require]: Failed opening required ‘BP_PLUGIN_DIR/bp-forums/bp-forums-bbpress.php’ (include_path=’.:/usr/lib/php:/usr/local/lib/php’) in /home/brownsw/public_html/wp-content/plugins/buddypress/bp-forums.php on line 11
[07-Dec-2009 10:20:55] PHP Warning: require_once(WP_PLUGIN_DIR/buddypress/bp-core.php) [function.require-once]: failed to open stream: No such file or directory in /home/brownsw/public_html/wp-content/plugins/buddypress/bp-loader.php on line 19
[07-Dec-2009 10:20:55] PHP Fatal error: require_once() [function.require]: Failed opening required ‘WP_PLUGIN_DIR/buddypress/bp-core.php’ (include_path=’.:/usr/lib/php:/usr/local/lib/php’) in /home/brownsw/public_html/wp-content/plugins/buddypress/bp-loader.php on line 19
[07-Dec-2009 10:22:21] PHP Warning: require(BP_PLUGIN_DIR/bp-status/bp-status-templatetags.php) [function.require]: failed to open stream: No such file or directory in /home/brownsw/public_html/wp-content/plugins/buddypress/bp-status.php on line 5
[07-Dec-2009 10:22:21] PHP Fatal error: require() [function.require]: Failed opening required ‘BP_PLUGIN_DIR/bp-status/bp-status-templatetags.php’ (include_path=’.:/usr/lib/php:/usr/local/lib/php’) in /home/brownsw/public_html/wp-content/plugins/buddypress/bp-status.php on line 5
[07-Dec-2009 10:23:48] PHP Warning: require(BP_PLUGIN_DIR/bp-friends/bp-friends-classes.php) [function.require]: failed to open stream: No such file or directory in /home/brownsw/public_html/wp-content/plugins/buddypress/bp-friends.php on line 9
[07-Dec-2009 10:23:48] PHP Fatal error: require() [function.require]: Failed opening required ‘BP_PLUGIN_DIR/bp-friends/bp-friends-classes.php’ (include_path=’.:/usr/lib/php:/usr/local/lib/php’) in /home/brownsw/public_html/wp-content/plugins/buddypress/bp-friends.php on line 9
[07-Dec-2009 10:25:14] PHP Warning: require(BP_PLUGIN_DIR/bp-xprofile/bp-xprofile-admin.php) [function.require]: failed to open stream: No such file or directory in /home/brownsw/public_html/wp-content/plugins/buddypress/bp-xprofile.php on line 8
[07-Dec-2009 10:25:14] PHP Fatal error: require() [function.require]: Failed opening required ‘BP_PLUGIN_DIR/bp-xprofile/bp-xprofile-admin.php’ (include_path=’.:/usr/lib/php:/usr/local/lib/php’) in /home/brownsw/public_html/wp-content/plugins/buddypress/bp-xprofile.php on line 8
[07-Dec-2009 10:26:40] PHP Warning: require(BP_PLUGIN_DIR/bp-messages/bp-messages-classes.php) [function.require]: failed to open stream: No such file or directory in /home/brownsw/public_html/wp-content/plugins/buddypress/bp-messages.php on line 9
[07-Dec-2009 10:26:40] PHP Fatal error: require() [function.require]: Failed opening required ‘BP_PLUGIN_DIR/bp-messages/bp-messages-classes.php’ (include_path=’.:/usr/lib/php:/usr/local/lib/php’) in /home/brownsw/public_html/wp-content/plugins/buddypress/bp-messages.php on line 9
[07-Dec-2009 10:28:06] PHP Warning: require(BP_PLUGIN_DIR/bp-activity/bp-activity-classes.php) [function.require]: failed to open stream: No such file or directory in /home/brownsw/public_html/wp-content/plugins/buddypress/bp-activity.php on line 9
[07-Dec-2009 10:28:06] PHP Fatal error: require() [function.require]: Failed opening required ‘BP_PLUGIN_DIR/bp-activity/bp-activity-classes.php’ (include_path=’.:/usr/lib/php:/usr/local/lib/php’) in /home/brownsw/public_html/wp-content/plugins/buddypress/bp-activity.php on line 9
14. Which company provides your hosting?
I have a VPS with Servint
December 7, 2009 at 7:52 pm #58185In reply to: Completely Integrating a Previous bbPress Install
John James Jacoby
KeymasterThis is exactly what I’ve done in the past.
There’s a lot of pitfalls and problems trying to guess at integration methods to program BuddyPress to understand how to adjust existing installations to match the new setup. There really isn’t a database upgrade involved in keeping your existing forums, it’s just making sure that everything knows where to look to accomplish what tasks.
Having two separate platforms bridged in the middle isn’t a new or uncommon thing, it just isn’t something that makes your average site admin smile.
December 7, 2009 at 7:42 pm #58181In reply to: Error Log with PHP Fatal Errors
Paul Wong-Gibbs
KeymasterPlease would you answers these questions so we can see if we can spot something? Thanks.
December 7, 2009 at 7:34 pm #58179In reply to: Help out with bbPress / Forum-software
Xevo
ParticipantOnly extra that buddypress needs now is an easier wordpress intergration, bbPress already has all the core functions of a good forum software, if you need more, write a plugin.
I’d rather not have bbPress get bloated like one of the other huge forum softwares out there.
December 7, 2009 at 6:57 pm #58175In reply to: more info please on BuddyPress
416member
ParticipantThanks for that
December 7, 2009 at 4:54 pm #58172In reply to: more info please on BuddyPress
Paul Wong-Gibbs
KeymasterBuddyPress rus on WPMU, so you need that. BBPress is integrated into BuddyPress. For the majority of installations, you will only need to install WPMU and BuddyPress.
December 7, 2009 at 4:08 pm #58169federalistnp
ParticipantI am sorry to bother this board but if the process is easy, can someone explain the easy parts? Is it merely a matter of moving the bpress folders to the wp-content/theme folders?
What is the easy process?
December 7, 2009 at 2:38 pm #58163In reply to: BuddyPress Twibbon
Bowe
Participantsexy
December 7, 2009 at 12:02 pm #58158In reply to: Spam eggs chips and spam.
December 7, 2009 at 10:55 am #58156In reply to: Selective content on site wide activity feed
Andy Peatling
KeymasterIt’s possible to filter very fine grained. You just need to pass the right parameters:
https://trac.buddypress.org/browser/trunk/bp-activity/bp-activity-templatetags.php#L119
December 7, 2009 at 9:55 am #58152In reply to: Registration not working for subdomain blogs
danbpfr
ParticipantXevo
ParticipantIsn’t the only big difference between wpmu and wp, the blogs? If you can cramp those in a single table, I wouldn’t see why it’s impossible to run buddypress on a single wp.
December 7, 2009 at 6:39 am #58146blahaye
ParticipantHi,
I was frustrated that the “users blogs” did not match the main theme
and am surprised that there is not a matching “user blog” theme in the package.
What I did was create a child them based on the default buddypress theme
and then changed the code in the header.php file so that the correct title of the user blog shows instead of the title of the main blog.
you have to make sure you don’t use buddypress widgets, they will not work.
There may be a better way to do it but that seemed to work for me.
The child theme thing is great when you get the hang of it.
Cheers,
B
December 7, 2009 at 5:43 am #58144Xevo
ParticipantThere are no tutorials about this and no one is working on one either, as far as I know. Changing a normal wordpress theme to a buddypress theme isn’t that hard, since after all wordpress is still the core, but you need a lot of extra template tags and styling in order for this to work properly.
December 7, 2009 at 4:19 am #58142In reply to: BuddyPress Twibbon
Brajesh Singh
Participant
I added it ,but damn ,It got twice,so will edit again tomorrow. So I am the second to support it
December 7, 2009 at 3:34 am #58140In reply to: Achievements throwing error on BP 1.1
AndreMartin
ParticipantThe new achievements moved the admin menu link into the BuddyPress group but now I can’t find the retro-activate function anymore. Is that gone?
It’s important when the site uses Gigya’s login as accounts created that way are not (or were not in previous releases) registered by the Achievements plugin until after running the retro-activate manually.
-
AuthorSearch Results