Search Results for 'buddypress'
-
AuthorSearch Results
-
April 19, 2010 at 10:26 pm #74309
5887735
Inactive@andy We have put in place most of the steps in that article and have seen some results, but thats kind of the point I was making. To really put those measures in place you need a dedicated server.
@MrMaz Maybe “BP php is extremely inefficient” was a little wide-ranging, but it was a phrase that came up over and over again in discussions with several hosting companies. For example, a senior tech at Blue Host/Host Monster told me every BP install they host (and they host over 1 million domains) is throttled (if users find their site slow this may be why).
In order for BP to be the next killer CMS I believe it should be able to be run on a shared server. To get the kind of plugin support and wide variety of quality themes BP needs to get those users that are either unwilling or unable to pay for a dedicated server.
PS
My current skill set is limited to testing and reporting back. That’s all I’m doing here, reporting what we experienced and what we where told. I’ll try to get better details.
I should also note I love BP. It’s a huge step forward and we will continue to use it and grow with it. I am only trying to offer feedback to help that growth. Thanks to everyone for their hard work that got us this far.
One more note. We have around 4000 members and are adding about 50 per day, so we would need a dedicated server regardless, but having a tighter BP would of course still be a big help.
April 19, 2010 at 10:19 pm #74307In reply to: BuddyFace free BuddyPress theme
April 19, 2010 at 10:12 pm #74305In reply to: BuddyFace free BuddyPress theme
Xevo
ParticipantWas planning on building a facebook theme on the theme they have now, but now working on the new (to come) design of facebook.

Anyway, reminds me off the old buddypress theme.
April 19, 2010 at 10:10 pm #74304In reply to: BuddyFace free BuddyPress theme
José M. Villar
ParticipantBravissimo theme Arturo ! Pensate lasciare il theme dal suo forum in bbpress ?
Nice theme Arturo ! Have you thought releasing your bbpress forum theme ?
April 19, 2010 at 10:10 pm #74303In reply to: BuddyFace free BuddyPress theme
r-a-y
KeymasterPiu e meglio!
April 19, 2010 at 10:06 pm #74302In reply to: BuddyFace free BuddyPress theme
Arturo
Participantin italy an icecream advertising say “two is meglio che one” (two is better than one)
April 19, 2010 at 10:01 pm #74301In reply to: BuddyFace free BuddyPress theme
r-a-y
KeymasterCool! I think this is the second Facebook-like BP theme out there.
The first was Fishbook by Mike Kuhlmann – http://www.michaelkuhlmann.com/buddypass/
April 19, 2010 at 10:01 pm #74300In reply to: BuddyPress-Links 0.4.x Releases and Support
MrMaz
Participant@dennis_h
No, nothing has changed.
April 19, 2010 at 9:57 pm #74299r-a-y
KeymasterYou could probably use this snippet in your theme’s functions.php file:
https://buddypress.org/forums/topic/how-to-make-a-private-community/page/2#post-44729
If you attempt to access the site and you’re not logged in, you will be redirected to the register page.
April 19, 2010 at 9:56 pm #74298In reply to: BuddyPress-Links 0.4.x Releases and Support
5887735
InactiveAre there any changes to the themes from 0.4 beta to 0.4.1?
April 19, 2010 at 9:54 pm #74297In reply to: Login moved from sidebar to admin bar
r-a-y
KeymasterIf you’re using a child theme of the default BP theme, use this tidbit to remove the login widget from the sidebar:
https://buddypress.org/forums/topic/how-to-remove-login-sidebar-from-bp-12-default-theme#post-46264
To add the login form to the BuddyBar, you’ll need to create a function that outputs the login form and then you’ll need to hook it to the BuddyBar.
Here’s some sample code that you can add to your theme’s functions.php:
function my_login_bar() {
// basically a copy of the login form from the BP sidebar
?>
<form name="login-form" id="sidebar-login-form" class="standard-form" action="<?php echo site_url( 'wp-login.php', 'login' ) ?>" method="post">
<label><?php _e( 'Username', 'buddypress' ) ?><br />
<input type="text" name="log" id="sidebar-user-login" class="input" value="<?php echo attribute_escape(stripslashes($user_login)); ?>" /></label>
<label><?php _e( 'Password', 'buddypress' ) ?><br />
<input type="password" name="pwd" id="sidebar-user-pass" class="input" value="" /></label>
<p class="forgetmenot"><label><input name="rememberme" type="checkbox" id="sidebar-rememberme" value="forever" /> <?php _e( 'Remember Me', 'buddypress' ) ?></label></p>
<input type="submit" name="wp-submit" id="sidebar-wp-submit" value="<?php _e('Log In'); ?>" tabindex="100" />
<input type="hidden" name="testcookie" value="1" />
</form>
<?php
}
// the magic that hooks your my_login_bar() function to the BuddyBar
add_action( 'bp_adminbar_menus', 'my_login_bar', 2);Keep in mind, you’ll need to style the form to make it look nice in the admin bar, but that should get you started.
More info in modifying the BuddyBar can be found here:
https://codex.buddypress.org/how-to-guides/modifying-the-buddypress-admin-bar/
April 19, 2010 at 9:49 pm #74295In reply to: comment a gallery picture
6015794
Inactivesome gallery plugin dont work with buddypress templates. So i wanted some help with that.
April 19, 2010 at 9:39 pm #74291r-a-y
KeymasterMake a copy of the bp_adminbar_notifications_menu() function (located in /buddypress/bp-core/bp-core-adminbar.php) and add a check to see if there are any notifications to the main list item, if there are, output a CSS class for the list item.
You’ll need to override the default notifications menu in the BuddyBar.
Read this guide to find out how to modify the BuddyBar:
https://codex.buddypress.org/how-to-guides/modifying-the-buddypress-admin-bar/
April 19, 2010 at 9:28 pm #74289In reply to: Seo for Buddypress 1.0 beta
guigoz
MemberOk. Thanks !
April 19, 2010 at 9:25 pm #74287r-a-y
KeymasterUse the bbPress admin backend to create your forum categories.
/yourdomain.com/your-bbpress-install/bb-admin/
Please do not bump several-related posts in order to get a response.
April 19, 2010 at 9:12 pm #74285unodewaal
MemberI get the same error on multiple sites (using the same host though).
It’s fine when I have a localhost install, and it’s also fine when I’m not using buddypress.
I go to the registration page, fill out my details and then click on Complete Sign-up. It then takes me to the same page again, almost as it if just refreshes.
My registration URL is http://ferryglide.com/wordpress/register
April 19, 2010 at 9:11 pm #74284In reply to: BBpress existing integration
6002845
InactiveI know where my forum is. I don’t understand is this integration. Basically the integration kill my forum.
The members don’t appear in the members list, the topics, messages, categories don’t show up in buddypress…
So I can’t understand what kind of integration is….
April 19, 2010 at 8:46 pm #74277In reply to: BuddyPress-Links 0.4.x Releases and Support
Mark
Participantah – well in 0.4.1, on my test platform, it never appears.
April 19, 2010 at 7:53 pm #742673sixty
ParticipantUpdated: version 0.0.3
Same Download Link: http://bpanswers.com/buddypress-forums-posts-since-last-visit.zip
April 19, 2010 at 7:36 pm #74262In reply to: Install on MU or regular WP?
kalico
ParticipantThanks to both of you! I will try WPMU.
I am curious — if anyone has the time or inclination to enlighten me — what differences I might encounter between Buddypress on MU vs. normal WP? Or if there is any documentation somewhere….? Thanks.
April 19, 2010 at 7:36 pm #74261In reply to: BuddyPress-Links 0.4.x Releases and Support
MrMaz
ParticipantI use a waiting/loader icon in several other places. There is supposed to be one there, and I’m not sure what happened to it. The e_loader.toggle() is actually the ajax-loading icon call.
April 19, 2010 at 7:27 pm #74259In reply to: BP Album+ || New Features Requests and Discussion
foxly
ParticipantOkay, well clearly you’re smart and you’ve put some effort into debugging your system.

I will add a config option to the next BP Album+ beta that lets users set a custom path for activity stream items. But… it will not fix your existing activity stream items, and if you ever change your directory structure after using the option, you’ll lose all your activity stream items again.
Remember, this is a limitation in BuddyPress, not BP Album+
Still, your best options are:
1) To put your WP installation at the HTML root, which will give you the best compatibility with plugins.
2) If you’re running multiple installs in a single HTML root, use virtual hosts.
3) And if you don’t want to learn how to use virtual hosts, you can probably use a redirect in your .htaccess file as you described (that’s what cPANEL does). Note that there could be SEO implications with using a redirect.
Thanks!
^F^
April 19, 2010 at 7:02 pm #742573sixty
ParticipantHold the phone!
I found an obsolete conditional that is causing the plugin to fail on certain browsers. Probably the source of your issue.
Need to update.
April 19, 2010 at 6:33 pm #74250In reply to: BuddyPress-Links 0.4.x Releases and Support
Mark
ParticipantAnother suggestion: Add a “processing” icon that is temporarily displayed when fetching remote page data so people know that something is happening after they click the button to “fetch page details”.
An easy way to add that feature is to add a div to the default theme form (bp-links-default/single/forms/details.php) right under the nonce field, like so:
<?php wp_nonce_field( 'bp_links_save_link-auto-embed', '_wpnonce-link-auto-embed' ) ?>
<div id="waiting"> </div>
Then add some CSS for the div in the bp-links-default/_inc/css/forms.css file:
#waiting {
background: transparent url('../images/loading.gif') no-repeat scroll 0 0;
height: 33px;
width: 33px;
margin: 0 auto;
text-align:center;
display:none;
}
Next, drop a loading.gif image into the _inc/images folder. (here’s one as an example: http://www.minimelive.com/images/nav/processing5.gif — not sure whose site that is though)
And finally, modify the forms.js file to show and hide the div at the appropriate time. Somewhere around line 190 [ right before jQuery.post(ajaxurl… ] add this:
jQuery('#waiting').show();
And somewhere around line 240 [ after e_loader.toggle() ] hide the div:
jQuery('#waiting').hide();
That ought to do it
April 19, 2010 at 6:26 pm #74249In reply to: Upon login/registration redirect to Activity Stream?
r-a-y
KeymasterRead this:
https://buddypress.org/forums/topic/faq-how-to-code-snippets-and-solutions#post-37123
Use bp_core_redirect();
From the commented code:
– Performs a status safe wp_redirect() that is compatible with bp_catch_uri();
eg. redirect to logged in user’s profile:
global $bp;
bp_core_redirect( $bp->loggedin_user->domain ); -
AuthorSearch Results