Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 66,151 through 66,175 (of 69,109 total)
  • Author
    Search Results
  • #42987

    This should just be under

    Site Admin->BuddyPress->Full Name field name

    #42986

    In my .htaccess file, I had to force 1and1 to provide php5:

    AddType x-mapp-php5 .php
    AddHandler x-mapp-php5 .php

    To get rid of 500 errors and out of memory errors, in my /wp-admin/ I put this in php.ini (create it if it doesn’t exist):

    memory=40MB
    upload_max_filesize=10M;
    post_max_size=20M;

    #42985
    bohdaq
    Participant

    RC1

    I’m not sure what you did exactly to make this so broken, but I can tell you how I did what you’re trying to do.

    1. Copy “buddypress-home” theme to a temporary folder.
    2. Rename “buddypress-home” to “buddypress-user”.
    3. Delete “buddypress-user/home.php”.
    4. Open “buddypress-user/style.css” and at the very least, rename the theme to include something with the words “User Theme”
    5. Upload this theme, and activate ONLY it in your admin panel.
    6. Make sure that theme is the ONLY active theme. This ensures users will only get that theme provided to them at default.

    That should do it.

    #42983
    Vast HTML
    Participant

    Hmm i couldnt get buddypress to work at all on 1and1. Im not saying it dont, just wondering how you got it to work.

    #42979

    If you don’t mind using sub-directories for WPMU, I’ve had pretty good luck using 1and1 so far. Had to hack .htaccess and force some extra memory in my php.ini file, but so far so good.

    #42977

    For the record, I would put Andy’s code in bp-custom.php, located in the root of your BuddyPress install.

    #42976

    Which version of BuddyPress are you using?

    #42975
    cdouglasconlan
    Participant

    no problems with hostgator, just have to ask for the mod rewrite if you have a reseller account, not sure how it would be for a smaller package, but they pretty much rock in terms of support — 3 years and counting.

    Anyone think it’s a good idea for me to make a call and ask them to embrace the BuddyPress community?

    #42974
    harouni
    Participant

    I’m looking for a host and I’ve narrowed it down to either TMD hosting, http://www.tmdhosting.com

    or Media Temple

    http://mediatemple.net/webhosting/

    Does anyone have any experience with both these hosts, and the ease of hosting multiple buddypress installs on their servers.

    Which is the better in scalability?

    Thanks

    Haroun

    #42973
    bohdaq
    Participant

    Yes, i don\’t remember exactly what i\’ve done at the instaling buddypress, but now i cant change that field, and when somebody register, he saw the field, and below just \’*\’.

    At the admin area i cant anything do with it – http://arys-my.name/wp-content/uploads/2009/04/sh1t.jpg

    P.S. sorry for my english ;-)

    #42970
    jfcarter
    Participant

    I am looking for exactly the same information.

    Is there a way to setup default widgets for blogs using the buddypress-home?

    Any code snippets are welcome!

    #42962

    In reply to: 404 everywhere

    law9
    Participant

    Hey there…

    1)Yes latest public release from WPMU website.

    2) No customization has been done as yet.

    3) I have no other plugins except buddypress

    4) Buddypress folders have been migrated to /wp-content/mu-plugins/

    5) I tried reuploading everything from scratch.

    I did some tests with .htaccess and I think it is my .htaccess in the base folder thats playing up.

    Here is the sample of my .htaccess

    Any idea ?

    RewriteEngine On

    RewriteBase luckyperson.net/

    #uploaded files

    RewriteRule ^(.*/)?files/$ index.php [L]

    RewriteCond %{REQUEST_URI} !.*wp-content/plugins.*

    RewriteRule ^(.*/)?files/(.*) wp-content/blogs.php?file=$2 [L]

    # add a trailing slash to /wp-admin

    RewriteCond %{REQUEST_URI} ^.*/wp-admin$

    RewriteRule ^(.+)$ $1/ [R=301,L]

    RewriteCond %{REQUEST_FILENAME} -f [OR]

    RewriteCond %{REQUEST_FILENAME} -d

    RewriteRule . – [L]

    RewriteRule ^([_0-9a-zA-Z-]+/)?(wp-.*) $2 [L]

    RewriteRule ^([_0-9a-zA-Z-]+/)?(.*\.php)$ $2 [L]

    RewriteRule . index.php [L]

    <IfModule mod_security.c>

    <Files async-upload.php>

    SecFilterEngine Off

    SecFilterScanPOST Off

    </Files>

    </IfModule>

    GrandSlambert
    Participant

    Well, even from a logged out user you can tell the admin bar doesn’t work, nor does the login bar, nor does the search bar. Yes, they show up, but notice the following problems:

    1. Click the “BuddyPress” logo (to be changed yet) in the admin bar. It takes you to the blog home page, not the GeoSee home page like I thought it would.

    2. Click the “Login” link in the admin bar – 404 Not Found.

    3. Click the “Signup” link in the admin bar – 404 Not Found.

    4. Click the “Author” link in the admin bar – 404 Not Found.

    So the admin bar does not link back to the main blog like I would think it would do.

    Now let’s look at the Search Bar. Notice the drop down is empty and that all searches return a 404 Not Found Error?

    And finally the login bar. Try hitting the signup button – 404 Not Found.

    There is a demo account set up with the username demouser and password demo so you can see the same problems I listed in my original post.

    #42960
    Jeff Sayre
    Participant

    As to your first question:

    Look in the loop in your theme’s index.php file for this:

    <p class="date"><?php the_time('F j, Y') ?> <em><?php _e( 'in', 'buddypress' ) ?> <?php the_category(', ') ?> <?php printf( __( 'by %s', 'buddypress' ), bp_core_get_userlink($post->post_author) ) ?></em></p>

    Make the necessary changes.

    As to your second question, look for this also in the same file:

    <div class="widget" id="latest-news">
    <h2 class="widgettitle"><?php _e( 'Blog', 'buddypress' ) ?></h2>

    Change the word “Blog” To whatever you like.

    Please note: if you plan on sticking with BuddyPress’ standard themes, you will lose these changes the next time you upgrade BP. So, either you live with that and make the changes again with each upgrade, you create your own custom themes (possibly by simply copying the current themes and renaming them), or you never write over the theme files when upgrading.

    The second option is the best in my opinion. But, with each upgrade, you should still evaluate any changes that may have been made in the new standard theme as they could be important.

    #42958

    In reply to: Directories Search

    Jeff Sayre
    Participant

    Before I updated my BP install last week, I noticed some similar odd search behavior. I, too, was running r1324 before I updated to the then latest trunk. After updating, the issue has gone away. I have not looked in trac to see if there was a specific bug that fixed this or if it was something else I did

    However, if you have not yet read this article, you may find it interesting.

    Google Custom Search for BuddyPress / WordPress MU

    #42957
    dansalmon
    Participant

    Hi, Thanks for the feedback and apologies for the double posting in both wpmu and buddypress forums. Just a bit newbie over-zealousness on my part. I’m moving the post here as it’s more a buddypress integration thing. Haven’t really figured out how to do what I’d like, so here goes a bit of further explanation hoping I can track down a solution.

    I want to run my main wpmu/buddypress website in my root using the primary blog to manage the site pages:

    * http://mydomain.com/about

    * http://mydomain.com/forum

    * etc.

    My primary blog, which I want to be a community one, will be at:

    * http://mydomain.com/blog

    * http://mydomain.com/blog/blogpage … etc

    Using the buddypress defaults all my member pages are at:

    * http://mydomain.com/members/membername/

    * http://mydomain.com/members/membername/activity … etc.

    My ideal solution would be to have the member blogs underneath their member pages:

    * http://mydomain.com/members/membername/blog/

    * http://mydomain.com/members/membername/blog/blog_entry .. etc.

    If that’s possible I’d love it as it keeps all the urls for a member grouped together. Any ideas if this is possible?

    If not, then I’d like to have the blogs grouped together in a sub-folder of my root, i.e.:

    * http://mydomain.com/memberblogs/membername1/

    * http://mydomain.com/memberblogs/membername2/

    I’ve tried installing mu/bp in a sub-directory, but that leaves me with no way to manage the root pages via mu/bp. I tried following the WordPress codex advice “Giving WordPress Its Own Directory” https://codex.wordpress.org/Giving_WordPress_Its_Own_Directory but to no avail. It did work with my wpmu installation, but after trying to update my primary blog options I ended up with a database error and now can’t login.

    Apologies for being so verbose here, but just trying to figure out if something I’m after is possible. Thanks so much for the help thus far. Cheers, Dan

    #42955
    harouni
    Participant

    My site was a buddypress then I tried to see if it was a buddypress problem and so started from scratch.

    I still don’t have an answer, I can’t figure out why it doesn’t validate the domains or even how to go about fixing the problem.

    Any light you may share on the issue would be greatly appreciated as this will impact my eventual buddypress site too :)

    Burt Adsit
    Participant

    No I don’t see the problem. If there is a problem, only logged in users can see it. Can you give me a demo/test login username and password?

    #42953
    Burt Adsit
    Participant

    Well, change what field? The user Full Name field?

    #42945

    In reply to: Translating BuddyPress

    hammerfar
    Participant

    About to start a danish translation of BuddyPress. Currently considering to use either LaunchPad or Pootle as our collaboration tool.

    Anyone know if Dreamcolor expects to initiate the LaunchPad project:

    https://translations.launchpad.net/buddypress or release the ownership, for others to use it?

    Suggestion: why don’t we settle on the same tool to use, eg LaunchPad – would make it easier for other to take part of the work.

    #42944
    Andy Peatling
    Keymaster

    I did this on this site, and like this:

    function register_user_as_contributor($username) {
    global $bp, $wpdb;

    $user_id = bp_core_get_userid_from_user_login( $username );

    if ( !$user_id )
    return false;

    $role = maybe_unserialize( get_usermeta( $user_id, $wpdb->base_prefix . '1_capabilities' ) );

    if ( is_array($role) )
    $role = $role[0];

    if ( !$role || '' == $role || 'subscriber' == $role ) {
    $role['contributor'] = 1;

    update_usermeta( $user_id, $wpdb->base_prefix . '1_capabilities', $role );
    update_usermeta( $user_id, 'primary_blog', 1 );
    update_usermeta( $user_id, 'source_domain', 'buddypress.org' );
    }
    }
    add_action( 'wp_login', 'register_user_as_contributor' );

    I’m sure there is another action you can use so it doesn’t run on every login, but this works.

    #42939
    Burt Adsit
    Participant

    I can usually recommend some solution that doesn’t require modifying the core. In this case I just can’t. It looks to me like the only way to get years beyond 2009 is to do this:

    /buddypress/bp-xprofile/bp-xprofile-classes.php

    Line # 567 is:

    for ( $i = date( ‘Y’, time() ); $i > 1899; $i– ) {

    Change that to:

    for ( $i = date( ‘Y’, time() ) + 5; $i > 1899; $i– ) {

    Paul Wong-Gibbs
    Keymaster

    You mean top left of theme? That’s an image – you’ll find it in /wp-content/bp-themes/buddypress-member/images/logo.gif.

    Jeff Sayre
    Participant

    Ninh-

    I’ve looked at your site and of course cannot duplicate the problem without logging in. But, that’s okay.

    You mention that you’re using a custom theme. Read the first post in this thread, paying close attention to the parts that talk about custom themes. Also, there are more posts within this thread that discuss theme issues that could apply.

    It appears that you are still using BuddyPress 1.0_RC1. I cannot remember if any of these issues apply to RC1. Perhaps someone with longer BP experience can chime in.

Viewing 25 results - 66,151 through 66,175 (of 69,109 total)
Skip to toolbar