Skip to:
Content
Pages
Categories
Search
Top
Bottom

Forum Replies Created

Viewing 15 replies - 1 through 15 (of 15 total)
  • @rbaccaro

    Participant

    @rbaccaro

    Participant

    Update 3, correction:

    The crop did not work for files which contains -bpfull in his name.

    For example, if you download your avatar, and try to re-upload, the crop will not work.

    @rbaccaro

    Participant

    Update 3:

    The crop did not work with files with a wrong permission.

    @rbaccaro

    Participant

    Update 2:

    The Take Photo tab does not display in Chrome, but FF is fine.

    @rbaccaro

    Participant

    Update, we have installed GD library:

    gd

    GD Support enabled
    GD Version bundled (2.1.0 compatible)
    FreeType Support enabled
    FreeType Linkage with freetype
    FreeType Version 2.4.8
    GIF Read Support enabled
    GIF Create Support enabled
    JPEG Support enabled
    libJPEG Version 8
    PNG Support enabled
    libPNG Version 1.5.24
    WBMP Support enabled
    XBM Support enabled

    Directive Local Value Master Value
    gd.jpeg_ignore_warning 0 0

    @rbaccaro

    Participant

    Thanks @imath and @djpaul.

    The gist is working just fine.

    @rbaccaro

    Participant

    A ticket was opened here if someone knows how to contribute:

    https://buddypress.trac.wordpress.org/ticket/6931#ticket

    @rbaccaro

    Participant

    bp_core_is_multisite is deprecated.

    Use is_multisite.

    @rbaccaro

    Participant

    Hi @shanebp, @bowe, @modemlooper, could you help me?

    I found the cover filter (bp_attachments_cover_image_upload_dir)
    but I have no idea how to start:

    https://buddypress.trac.wordpress.org/attachment/ticket/6591/6591.04.patch

    Any help is appreciated.

    Thank you,

    @rbaccaro

    Participant

    This is working for me:

    Add to wp-config.php:
    define( 'BP_ENABLE_MULTIBLOG', true );

    Add to bp-custom.php (under plugins folder):

    /* This fixes the MULTIBLOG avatar problem */
    function nfm_bp_avtar_upload_path_correct($path){
        if ( bp_core_is_multisite() ){
         //   $path = ABSPATH . get_blog_option( BP_ROOT_BLOG, 'upload_path' );
    		$path = ABSPATH . 'wp-content/uploads/';
        }
        return $path;
    }
    add_filter('bp_core_avatar_upload_path', 'nfm_bp_avtar_upload_path_correct', 1);
    
    function nfm_bp_avatar_upload_url_correct($url){
        if ( bp_core_is_multisite() ){
            $url = get_blog_option( BP_ROOT_BLOG, 'siteurl' ) . "/wp-content/uploads";
        }
        return $url;
    }
    add_filter('bp_core_avatar_url', 'nfm_bp_avatar_upload_url_correct', 1);

    But I am still having problems with the cover.

    Anyone?

    Thank you,

    @rbaccaro

    Participant

    @rbaccaro

    Participant

    Steve, worked for me. Thank you.

    @rbaccaro

    Participant

    To make the problem stop on IE8
    Go to
    Tools > Internet Options > Advanced > uncheck “Show Friendly HTTP error messages”
    Then then group creation works fine.

    See here
    https://trac.buddypress.org/ticket/3031

    @rbaccaro

    Participant

    I have the same issue, with create a group, edit profile and view activity.

    Anyone?

    @rbaccaro

    Participant

    Hi, I am still having problem with broken links on IIS 7.0, WP 3.0.3, BP 1.2.6.
    Specially activity, group creation and profile edit.
    When I use debug = true the pages load normally.
    I tried everything above.
    Anyone could help me with any new information?

Viewing 15 replies - 1 through 15 (of 15 total)
Skip to toolbar