Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'wordpress'

Viewing 25 results - 20,426 through 20,450 (of 22,602 total)
  • Author
    Search Results
  • #56648
    Jeff Sayre
    Participant

    The first time you upgraded BP from 1.0.3 to 1.1.2, did you manually upgrade or use the automatic upgrade feature of WordPress?

    What I would recommend is trying this:

    • Make a backup copy of your DB if you have any data worth saving
    • Make a backup copy of your bb-config.php file-assuming that you had forums integrated before
    • Deactivate all non-BP plugins
    • Deactivate BP
    • Delete the old BP files located in the /buddypress/ directory
    • Temporarily remove all plugins from /plugins/–copy them to a temp folder outside your install
    • Manually upload a fresh copy of BP 1.1.2 and move the contents of /buddypress/bp-themes/ into their proper place
    • Remove your /wp-content/bp-themes/ directory–assuming that you have moved it back into place since your last post
    • Reactivate BP
    • If no error, choose and activate the new default BP theme

    Does BuddyPress version 1.1.2 now work? If so, add back your other plugins and activate them.

    #56628

    In reply to: Images allowed

    Nicola Greco developed a series of plugins months ago that tied existing media accounts into your BuddyPress profiles, but I haven’t heard much of them as of late.

    With WordPress just now starting to fill its own shoes in terms of its media library, BuddyPress won’t really start to flex those muscles until WordPress is more capable at its core.

    #56609

    In reply to: Avatar Upload Issues

    21cdb
    Participant

    @JJJ: Have you ever tried adding wp_enqueue_script( ‘thickbox’ ); to one of ur environments? This is what causes the upload issue on my two local installations. From what i read most plugins utilise this wordpress bundled function and i guess this could be a good starting point for further investigations.

    #56574

    It’s very possible there is a JS conflict between plugins, but it’s less likely there is a conflict in the core WordPress files (though not impossible.)

    Since the cropper tool relies on JavaScript entirely to function, it will fail without any real degradation if there’s a JS error or the user has JavaScript disabled. The first scenario is more likely to upset people, as if someone specifically has disabled JavsScript in their browser, they’re probably used to getting jipped on their web experience. :D

    I’m going to link this topic to…

    https://buddypress.org/forums/topic/avatar-upload-issues?replies=1#post-28737

    …but I’m keeping it open for now, since it seems to be a little different than the above link.

    #56568

    In reply to: what about bp-plugins?

    It’s a good idea and one I’ve tossed around, but the problem is that it would need to exist outside of the wp-content/buddypress/ directory to avoid automatic update problems, and people wiping out the plugins folder on accident (if they do a manual upgrade for example.)

    Something like this may still happen down the road, as BuddyPress grows and a need for specific methods to register plugins with BuddyPress increases. At the moment it isn’t necessary because BuddyPress plugins are actually just normal WordPress plugins that may take advantage of BuddyPress features and API’s. (At least, that’s how plugin authors should be writing them.)

    What will need to happen for sure is a way for plugins to tell BuddyPress “hey I’m here and I want you to know this information.” It’s possible to alter the $bp global directly to do these things, but tighter integration into the platform makes sense.

    My opinions are subject to change on this one, but today that’s how I’m feeling. :)

    #56559
    5339130
    Inactive

    After uploading the themes to the server, they were available in “apearence” I selected and activated. Then I went to site admin -> themes and clicked on “Yes” on Avenue K9. The I did F5 on another FF tab to see how it did looked like, and got a blank page. The themes working at the moment are BuddyPress Default, BuddyPress Social Network Parent Theme and those that come as default on wordpress.

    No code was modified

    #56541
    circuit
    Participant

    i set my wordpress timezone to ‘Chicago’ to fix this. not ideal at all/ i’ve yet to see what effect this has on the rest of the site.

    #56540
    _awpcp
    Member

    For those of you using Another WordPress Classifieds Plugin it’s quite possible there is a conflict with the thickbox.js reference. I am revising the method used by the plugin to insert the thickbox code in the header. I believe that might be the cause of the conflict as it relates to AWPCP. I have not verified this yet. Have sent a modified test file to the user who reported this thread to me and awaiting his report on whether the changes do in fact fix his problem. Will update once that information is provided.

    If you want to test for yourself in the meantime you can find and completely remove this function at around line 144 in awpcp.php

    function awpcp_insert_thickbox() {

    global $siteurl,$wpinc;

    echo “n”.’

    <link rel=”stylesheet” href=”‘.$siteurl.’/’.$wpinc.’/js/thickbox/thickbox.css” type=”text/css” media=”screen” />

    <script type=”text/javascript”>

    var tb_pathToImage = “‘.$siteurl.’/’.$wpinc.’/js/thickbox/loadingAnimation.gif”;

    var tb_closeImage = “‘.$siteurl.’/’.$wpinc.’/js/thickbox/tb-close.png”;

    </script>

    ‘;

    }

    Update: you will also need to remove the line

    add_action(‘wp_head’, ‘awpcp_insert_thickbox’, 10);

    (you’ll find it around line 167)

    #56534
    5339130
    Inactive

    I’m using the latest version available on site to download WordPress MU and buddypress.

    WordPress MU 2.8.5.2

    Buddypress 1.1.2

    #56524
    Mariusooms
    Participant

    Same problem,started about a few days ago. Bots are signing up a few times a day, firstnamelastname19xx.

    Interesting is that I notice in my stats some ip found my site by searching for “proudly powered by WordPress MU and BuddyPress”.That could be a reason that this particular bot is finding and attacking bussypress installs.

    If this bot is getting past Captcha, I would recommend applying a reverse Captcha technique. Just do a bit of Googling on this, it uses a hidden field as a honey pot which bots will fill in, but normal users will not. When filled in you can redirect them to a page of your choosing.

    Please report your findings and how you deal with this as it would be very helpful.

    #56510
    stoppays
    Participant

    I am running buddypress 1.1.2

    Viewing the code I downloaded for buddypress downloads.wordpress.org, if you start at line 236 is the only place the word public appears… the code is still the same:

    function bp_field_has_public_data() {

    global $profile_template;

    if ( $profile_template->field_has_data )

    return true;

    return false;

    }

    Jeff Sayre
    Participant

    Well, you need to go through the steps of the section you’re reading, “I’ve used a WordPress theme for my blog with the default BuddyPress member theme”. In essence, you are adapting a non-BP theme to be useable by BP. Your other option is to do what it suggests at the end of that section.

    If you need to grab the old default theme files, they can be found here:

    https://trac.buddypress.org/browser/tags/1.0.3

    5348648
    Inactive

    Thank you Jeff for the fast response. I was not able to find that documentation before…

    I am caught up on one step. I am in the section “I’ve used a WordPress theme for my blog with the default BuddyPress member theme” I have backed up my WP theme and copied over the folders/files from bp-sn-parent.

    The next step instucts me to “Make sure you have backed up your “/wp-content/bp-themes/” directory (this is important for the last step), then delete it.”

    I do not have a bp-themes folder in wp-content. Should I? Is it just located elsewhere? Will I still need to delete it?

    Folders I do have: blogs.dir, mu-plugins, plugins, themes

    #56456
    Jeff Sayre
    Participant

    Which version of WordPress MU and BuddyPress are you using? From where did you download the Avenue K9 theme?

    Have you seen this BP thread?

    https://buddypress.org/forums/topic/new-avenue-k9-bp-11-theme-released

    #56442
    zageek
    Participant

    What I am actually looking at is having a way (regardless of using Open ID or or) to have members who sign up to one buddypress site I own, automatically become members of other sites I want to set up.

    Then different social networks could aggregate together. Sort of like a buddypress multisite. In otherwords what wordpress mu is to wordpress, I am looking for something that will allow me to host several social networks under one container and you automatically have access to the others.

    Kind of like Ning, but without Ning, because I could set everything up on Ning, but I don’t like my data being owned by a third party.

    If we could develop a on containter for buddypress multisites and then a way to link those containers together and provide openID integration a lot of bases could be covered. What do you guys say? If you catch what I mean.

    #56438
    Squashroby
    Participant

    @MrMaz

    I’m running:

    WordPress MU 2.8.5.2.

    Buddypress 1.1.2

    Version 0.1.2

    The installation is on a Hsphere PHP platform

    Thanks

    #56423
    Jeff Sayre
    Participant

    @nexia

    Welcome back to the WordPress community! We’re glad to have you on board.

    #56418
    MrMaz
    Participant

    @4thofficial

    BP Links is totally separate from any of the WordPress links functionality. Members can add links from their profile page. There is a Links menu item directly under the Groups menu item.

    #56409
    21cdb
    Participant

    I encountered the same issue. Marked the problem down to thickbox.js which comes bundled with wordpress.

    I’m afraid but i don’t have a solution for this annoying problem, but i wrote a trac ticket that you can find here:

    https://trac.buddypress.org/ticket/1267

    #56407
    Jean-Pierre Michaud
    Participant

    hey hey… yeah, 1.2… Andy just told it would take a bit before we see it… that’s why i asked.

    btw, i’m really impressed with what you’ve done with BP… when i left WordPress, it was at version 1.2 and Donncha was busy coding the source of WPMU, so imagine what was done by that time. now i wanted to build a complete site with all the needed features, and BP was the answer…

    #56389
    Sven Lehnert
    Participant

    @ John James Jacoby,

    I had a look in the bp-events-avatar.php to understand more what’s going on there.

    I’m thinking the avatar part could be like it is now.

    It would be enough, if the original resized image would be available.

    I did some changes to the bp-events-avatar.php and make a plugin from it.

    For the moment, I will use the modified functions in custom components until you offer a better way to do it. I think it would be really great if the original resized image would be saved by the core.

    Be careful!

    This Plugin is just a play around on a fun buddypress installation.

    <?php
    /*
    Plugin Name:bp-events-avatar
    Description: This plugin add a template tag bp_event_flyer() to display the event flyer
    Version: 0.0.1
    License: GPL
    */

    function bp_event_flyer( $args = '' ) {
    echo bp_get_event_flyer( $args );
    }
    function bp_get_event_flyer( $args = '' ) {
    global $bp, $events_template;

    $defaults = array(
    'type' => 'org',
    'width' => 'auto',
    'height' => 'auto',
    'class' => 'avatar',
    'id' => false,
    'alt' => __( 'Event avatar', 'bp-events' )
    );

    $r = wp_parse_args( $args, $defaults );
    extract( $r, EXTR_SKIP );

    /* Fetch the avatar from the folder, if not provide backwards compat. */
    if ( !$avatar = bp_event_fetch_avatar( array( 'item_id' => $events_template->event->id, 'object' => 'event', 'type' => $type, 'avatar_dir' => 'event-avatars', 'alt' => $alt, 'css_id' => $id, 'class' => $class, 'width' => $width, 'height' => $height ) ) )
    $avatar = '<img src="' . attribute_escape( $events_template->event->avatar_thumb ) . '" class="avatar" alt="' . attribute_escape( $events_template->event->name ) . '" />';

    return apply_filters( 'bp_get_event_flyer', $avatar );
    }

    /*
    Based on contributions from: Beau Lebens - http://www.dentedreality.com.au/
    Modified for BuddyPress by: Andy Peatling - http://apeatling.wordpress.com/
    */

    /***
    * Set up the constants we need for avatar support
    */

    if ( !defined( 'BP_AVATAR_THUMB_WIDTH' ) )
    define( 'BP_AVATAR_THUMB_WIDTH', 50 );

    if ( !defined( 'BP_AVATAR_THUMB_HEIGHT' ) )
    define( 'BP_AVATAR_THUMB_HEIGHT', 50 );

    if ( !defined( 'BP_AVATAR_FULL_WIDTH' ) )
    define( 'BP_AVATAR_FULL_WIDTH', 150 );

    if ( !defined( 'BP_AVATAR_FULL_HEIGHT' ) )
    define( 'BP_AVATAR_FULL_HEIGHT', 150 );

    if ( !defined( 'BP_AVATAR_ORIGINAL_MAX_WIDTH' ) )
    define( 'BP_AVATAR_ORIGINAL_MAX_WIDTH', 450 );

    if ( !defined( 'BP_AVATAR_ORIGINAL_MAX_FILESIZE' ) )
    define( 'BP_AVATAR_ORIGINAL_MAX_FILESIZE', get_site_option( 'fileupload_maxk' ) * 1024 );

    if ( !defined( 'BP_AVATAR_DEFAULT' ) )
    define( 'BP_AVATAR_DEFAULT', BP_PLUGIN_URL . '/bp-xprofile/images/none.gif' );

    if ( !defined( 'BP_AVATAR_DEFAULT_THUMB' ) )
    define( 'BP_AVATAR_DEFAULT_THUMB', BP_PLUGIN_URL . '/bp-xprofile/images/none-thumbnail.gif' );

    function bp_event_fetch_avatar( $args = '' ) {
    global $bp, $current_blog;

    $defaults = array(
    'item_id' => false,
    'object' => 'user', // user OR group OR blog OR custom type (if you use filters)
    'type' => 'thumb',
    'avatar_dir' => false,
    'width' => false,
    'height' => false,
    'class' => 'avatar',
    'css_id' => false,
    'alt' => __( 'Avatar Image', 'buddypress' ),
    'no_grav' => false // If there is no avatar found, return false instead of a grav?
    );

    $params = wp_parse_args( $args, $defaults );
    extract( $params, EXTR_SKIP );

    if ( !$item_id ) {
    if ( 'user' == $object )
    $item_id = $bp->displayed_user->id;
    else if ( 'group' == $object )
    $item_id = $bp->groups->current_group->id;
    else if ( 'blog' == $object )
    $item_id = $current_blog->id;

    $item_id = apply_filters( 'bp_core_avatar_item_id', $item_id, $object );

    if ( !$item_id ) return false;
    }

    if ( !$avatar_dir ) {
    if ( 'user' == $object )
    $avatar_dir = 'avatars';
    else if ( 'group' == $object )
    $avatar_dir = 'group-avatars';
    else if ( 'blog' == $object )
    $avatar_dir = 'blog-avatars';

    $avatar_dir = apply_filters( 'bp_core_avatar_dir', $avatar_dir, $object );

    if ( !$avatar_dir ) return false;
    }

    if ( !$css_id )
    $css_id = $object . '-' . $item_id . '-avatar';

    if ( $width )
    $html_width = " width='{$width}'";
    else
    $html_width = ( 'thumb' == $type ) ? ' width="' . BP_AVATAR_THUMB_WIDTH . '"' : ' width="' . BP_AVATAR_FULL_WIDTH . '"';

    if ( $height )
    $html_height = " height='{$height}'";
    else
    $html_height = ( 'thumb' == $type ) ? ' height="' . BP_AVATAR_THUMB_HEIGHT . '"' : ' height="' . BP_AVATAR_FULL_HEIGHT . '"';

    $avatar_folder_url = apply_filters( 'bp_core_avatar_folder_url', get_blog_option( BP_ROOT_BLOG, 'siteurl' ) . '/' . basename( WP_CONTENT_DIR ) . '/blogs.dir/' . BP_ROOT_BLOG . '/files/' . $avatar_dir . '/' . $item_id, $item_id, $object, $avatar_dir );
    $avatar_folder_dir = apply_filters( 'bp_core_avatar_folder_dir', WP_CONTENT_DIR . '/blogs.dir/' . BP_ROOT_BLOG . '/files/' . $avatar_dir . '/' . $item_id, $item_id, $object, $avatar_dir );

    /* If no avatars have been uploaded for this item, display a gravatar */
    if ( !file_exists( $avatar_folder_dir ) && !$no_grav ) {

    if ( empty( $bp->grav_default->{$object} ) )
    $default_grav = 'wavatar';
    else if ( 'mystery' == $bp->grav_default->{$object} )
    $default_grav = BP_PLUGIN_URL . '/bp-core/images/mystery-man.jpg';
    else
    $default_grav = $bp->grav_default->{$object};

    if ( $width ) $grav_size = $width;
    else if ( 'full' == $type ) $grav_size = BP_AVATAR_FULL_WIDTH;
    else if ( 'thumb' == $type ) $grav_size = BP_AVATAR_THUMB_WIDTH;

    if ( 'user' == $object ) {
    $ud = get_userdata( $item_id );
    $grav_email = $ud->user_email;
    } else if ( 'group' == $object || 'blog' == $object ) {
    $grav_email = "{$item_id}-{$object}@{$bp->root_domain}";
    }

    $grav_email = apply_filters( 'bp_core_gravatar_email', $grav_email, $item_id, $object );
    $gravatar = apply_filters( 'bp_gravatar_url', 'https://secure.gravatar.com/avatar/' ) . md5( $grav_email ) . '?d=' . $default_grav . '&s=' . $grav_size;

    return apply_filters( 'bp_core_fetch_avatar', "<img src='{$gravatar}' alt='{$alt}' id='{$css_id}' class='{$class}'{$html_width}{$html_height} />", $params );

    } else if ( !file_exists( $avatar_folder_dir ) && $no_grav )
    return false;

    /* Set the file names to search for to select the full size or thumbnail image. */
    $avatar_name = ( 'org' == $type ) ? '-bporg' : '-bpthumb';
    $avatar_name = ( 'full' == $type ) ? '-bpfull' : $avatar_name;
    $legacy_user_avatar_name = ( 'full' == $type ) ? '-avatar2' : '-avatar1';
    $legacy_group_avatar_name = ( 'full' == $type ) ? '-groupavatar-full' : '-groupavatar-thumb';

    if ( $av_dir = opendir( $avatar_folder_dir ) ) {
    while ( false !== ( $avatar_file = readdir($av_dir) ) ) {
    if ( preg_match( "/{$avatar_name}/", $avatar_file ) || preg_match( "/{$legacy_user_avatar_name}/", $avatar_file ) || preg_match( "/{$legacy_group_avatar_name}/", $avatar_file ) )
    $avatar_url = $avatar_folder_url . '/' . $avatar_file;
    }
    }
    closedir($av_dir);

    return apply_filters( 'bp_core_fetch_avatar', "<img src='{$avatar_url}' alt='{$alt}' id='{$css_id}' class='{$class}'{$html_width}{$html_height} />", $params );
    }

    function bp_events_delete_existing_avatar( $args = '' ) {
    global $bp;

    $defaults = array(
    'item_id' => false,
    'object' => 'user', // user OR group OR blog OR custom type (if you use filters)
    'avatar_dir' => false
    );

    $args = wp_parse_args( $args, $defaults );
    extract( $args, EXTR_SKIP );

    if ( !$item_id ) {
    if ( 'user' == $object )
    $item_id = $bp->displayed_user->id;
    else if ( 'group' == $object )
    $item_id = $bp->groups->current_group->id;
    else if ( 'blog' == $object )
    $item_id = $current_blog->id;

    $item_id = apply_filters( 'bp_core_avatar_item_id', $item_id, $object );

    if ( !$item_id ) return false;
    }

    if ( !$avatar_dir ) {
    if ( 'user' == $object )
    $avatar_dir = 'avatars';
    else if ( 'group' == $object )
    $avatar_dir = 'group-avatars';
    else if ( 'blog' == $object )
    $avatar_dir = 'blog-avatars';

    $avatar_dir = apply_filters( 'bp_core_avatar_dir', $avatar_dir, $object );

    if ( !$avatar_dir ) return false;
    }

    if ( 'user' == $object ) {
    /* Delete any legacy meta entries if this is a user avatar */
    delete_usermeta( $item_id, 'bp_core_avatar_v1_path' );
    delete_usermeta( $item_id, 'bp_core_avatar_v1' );
    delete_usermeta( $item_id, 'bp_core_avatar_v2_path' );
    delete_usermeta( $item_id, 'bp_core_avatar_v2' );
    }

    $avatar_folder_dir = apply_filters( 'bp_core_avatar_folder_dir', WP_CONTENT_DIR . '/blogs.dir/' . BP_ROOT_BLOG . '/files/' . $avatar_dir . '/' . $item_id, $item_id, $object, $avatar_dir );

    if ( !file_exists( $avatar_folder_dir ) )
    return false;

    if ( $av_dir = opendir( $avatar_folder_dir ) ) {
    while ( false !== ( $avatar_file = readdir($av_dir) ) ) {
    if ( ( preg_match( "/-bpfull/", $avatar_file ) || preg_match( "/-bpthumb/", $avatar_file ) || preg_match( "/-bporg/", $avatar_file ) ) && '.' != $avatar_file && '..' != $avatar_file )
    @unlink( $avatar_folder_dir . '/' . $avatar_file );
    }
    }
    closedir($av_dir);

    @rmdir( $avatar_folder_dir );

    do_action( 'bp_core_delete_existing_avatar', $args );

    return true;
    }

    function bp_events_avatar_handle_crop( $args = '' ) {
    global $bp;
    $defaults = array(
    'object' => 'user',
    'avatar_dir' => 'avatars',
    'item_id' => false,
    'original_file' => false,
    'crop_w' => BP_AVATAR_FULL_WIDTH,
    'crop_h' => BP_AVATAR_FULL_HEIGHT,
    'crop_x' => 0,
    'crop_y' => 0
    );

    $r = wp_parse_args( $args, $defaults );
    extract( $r, EXTR_SKIP );

    if ( !$original_file )
    return false;

    if ( !file_exists( WP_CONTENT_DIR . '/' . $original_file ) )
    return false;

    if ( !$item_id )
    $avatar_folder_dir = apply_filters( 'bp_core_avatar_folder_dir', WP_CONTENT_DIR . dirname( $original_file ), $item_id, $object, $avatar_dir );
    else
    $avatar_folder_dir = apply_filters( 'bp_core_avatar_folder_dir', WP_CONTENT_DIR . '/blogs.dir/' . BP_ROOT_BLOG . '/files/' . $avatar_dir . '/' . $item_id, $item_id, $object, $avatar_dir );

    if ( !file_exists( $avatar_folder_dir ) )
    return false;

    require_once( ABSPATH . '/wp-admin/includes/image.php' );
    require_once( ABSPATH . '/wp-admin/includes/file.php' );

    /* Delete the existing avatar files for the object */
    bp_core_delete_existing_avatar( array( 'object' => $object, 'avatar_path' => $avatar_folder_dir ) );

    /* Make sure we at least have a width and height for cropping */
    if ( !(int)$crop_w )
    $crop_w = BP_AVATAR_FULL_WIDTH;

    if ( !(int)$crop_h )
    $crop_h = BP_AVATAR_FULL_HEIGHT;

    /* Set the full and thumb filenames */
    $full_filename = wp_hash( $original_file . time() ) . '-bpfull.jpg';
    $thumb_filename = wp_hash( $original_file . time() ) . '-bpthumb.jpg';
    $org_filename = wp_hash( $original_file . time() ) . '-bporg.jpg';

    /* Crop the image */
    $full_cropped = wp_crop_image( WP_CONTENT_DIR . $original_file, (int)$crop_x, (int)$crop_y, (int)$crop_w, (int)$crop_h, BP_AVATAR_FULL_WIDTH, BP_AVATAR_FULL_HEIGHT, false, $avatar_folder_dir . '/' . $full_filename );
    $thumb_cropped = wp_crop_image( WP_CONTENT_DIR . $original_file, (int)$crop_x, (int)$crop_y, (int)$crop_w, (int)$crop_h, BP_AVATAR_THUMB_WIDTH, BP_AVATAR_THUMB_HEIGHT, false, $avatar_folder_dir . '/' . $thumb_filename );
    rename (WP_CONTENT_DIR . $original_file, $avatar_folder_dir . '/' . $org_filename );
    /* Remove the original */
    @unlink( WP_CONTENT_DIR . $original_file );

    return true;
    }
    ?>

    #56379
    Lriggle
    Participant

    To get my blog comments to link to their Buddypress Member profiles, I had to create a custom comment function (explained here: https://codex.wordpress.org/Template_Tags/wp_list_comments ) and then create a link around the avatar. In the link I used <?php echo bp_core_get_userlink( $comment->user_id, false, true ) ?> as the href value.

    #56378
    chrisk2020
    Participant

    Sorry, still trying to figure this out:

    Don’t know if I’m barking up the wrong tree with the cookies, but I’ve noticed something:

    Without buddypress activated on (successful) log in to the admin I get 6 cookies:

    wp-settings-time-1 (domain = mydomain)

    wp-settings (domain = mydomain)

    wordpress_logged_in_ (domain = .mydomain) NOTE THE DOT

    wordpress_ (domain = .mydomain) NOTE THE DOT

    wordpress_ (domain = .mydomain) NOTE THE DOT

    wordpress_test_cookie (domain = .mydomain) NOTE THE DOT

    Activate buddypress plugin = 500 error

    Clear cookies wpmu site comes back

    Log in to wp-admin and get 500 error, but now the cookies are only:

    wordpress_logged_in_ (domain = .mydomain) NOTE THE DOT

    wordpress_ (domain = .mydomain) NOTE THE DOT

    wordpress_ (domain = .mydomain) NOTE THE DOT

    wordpress_test_cookie (domain = .mydomain) NOTE THE DOT

    the two settings cookies without the dot before the domain are missing.

    Could this be causing/ or symptomatic of some kind of path problem?

    #56369
    MrMaz
    Participant

    I have been receiving a lot of bug reports and comments on l10n issues that have already been fixed. Please make sure you are looking at the code for the latest version before sending me a bug, and also double check the trunk to see if it has been patched already.

    Trunk source

    https://plugins.trac.wordpress.org/browser/buddypress-links/trunk

    Revision log

    https://plugins.trac.wordpress.org/log/buddypress-links

    Also, I am working hard on making l10n work properly. The goal is to be 100% compliant, and I think we are close, but its not going to happen overnight, so please be patient ;)

    A lot of people seem anxious to use this plugin in production. Please keep in mind that its still just a baby and it may be a while before it works perfectly for everybody.

    Thank you!

    r-a-y
    Keymaster

    Is your WP+bb already integrated? If it is, you can probably easily migrate to BP!

    I’d probably upgrade your bbPress install to 1.0.2.

    Then convert the WP site to WPMU. Here’s a guide I’ve used in the past that might help:

    http://welcome.totheinter.net/2008/10/04/how-to-migrate-from-wordpress-to-wordpress-mu/

    At this point, I’d make sure to see if bbPress integration is properly integrated with your new WPMU setup. The bbPress integration plugin will help here.

    I’d then install BuddyPress and try to use your existing bbPress setup.

    EDIT: Just read this:

    but my bbpress and my wp are 2 different databases, so with bp 1.1 if I combine these, it sounds like it will be easier to integrate these?

    Since your bbPress db does not use the same database as your WP install, I don’t think this is going to work.

    More info here:

    https://codex.buddypress.org/developer-discussions/buddypress-forum/

    You could probably use BuddyPress’ internal bbPress setup, but then your original bbPress will be separate from BP.

    Hopefully someone else can jump in with more info.

Viewing 25 results - 20,426 through 20,450 (of 22,602 total)
Skip to toolbar