Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'crop'

Viewing 25 results - 676 through 700 (of 1,245 total)
  • Author
    Search Results
  • #108343

    Same thing happening to me. Used to work ok on wordpress 3.0.5 and buddypress 1.2.7.
    Now with 1.2.8 the exact same description is valid.
    I´d be very thankful if anybody could help to solve this problem.
    Hope to hear from somebody soon.
    Thanks again!

    #108082
    @mercime
    Participant

    @hozefasmile2007 Thanks for sharing your find. Got it, Sliding Readmore plugin conflict with cropping of avatar image uploads.
    Cheers.

    #108080
    hozefasmile2007
    Participant

    Hi Guys I was also suffering with this avatar upload image cropping problem for the last 2 weeks, I had thought that this would be a problem due to using wordpress for multisite or may be a problem with new wordpress and buddypress integration but finally I found that this was due to a little plugin that I never thought can cause such issue.
    This plugin name is “sliding readmore”.
    As I removed this plugin all the problem goes away with image cropping.

    #107914

    In reply to: Skip Avatar Cropping

    Xevo
    Participant

    *bump*

    Still need this, anyone found a solution for this yet?

    r-a-y
    Keymaster

    These options are set as constants.

    Check out the following defines under “Avatar specific settings can be changed:
    https://codex.buddypress.org/extending-buddypress/changing-internal-configuration-settings/

    #107608
    aljuk
    Member

    Of course. I don’t mind hacking plugins at all – in fact I enjoy it – it’s a great way to learn, and a good way to develop conversation and feedback with other developers. But obviously it’s way harder if the basic site code is invalid since one’s then aiming at a moving target. I’m having to constantly log out to check my edits, and since my install is going to be hidden from non logged-in visitors, this presents a problem going forward. Valid markup should be a cornerstone imho.

    Trac doesn’t accept my user login from this site. I have several bug reports that have cropped up with user testing from my early adopters, stretching back months in some cases, and no way of posting them.

    #107242
    Shaun MacRae
    Participant

    Hi @jasonrundellfcl,

    I’m having the exact same problem. Does buddypress have a dependency on some non-standard php libraries? Can you provide any more info?

    Thanks in advance.

    Virtuali
    Participant

    Theme author (TY) couldn’t see the issue, but did say it could have something to do with file size, and it not being able to handle the request.

    This didn’t make much sense, because most of everybody is having this issue that is using arras. He said it also could be a jquery conflict.

    Anybody can do testing on my site if you wish.

    #106039
    xyclops
    Member

    Here is a way I have found to make avatar uploads work while still using a CDN. I’m using S3/Cloudfront but it shouldn’t make a difference.

    The avatars, once accepted have a filename that always ends in either ‘bpfull.jpg’ or ‘bpthumb.jpg’

    When an avatar is being dealt with by the upload/cropping process, the images used are not given these names.

    If uploaded at registration time they are stored in an avatars/signups/ folder

    If uploaded once a user is a registered member, they will always have the file size at the end of the filename (e.g. 200×200.jpg)

    Using this info, I did the following:

    in my custom file list, I added the following:

    `wp-content/uploads/avatars/*bpfull.*
    wp-content/uploads/avatars/*bpthumb.*`

    in my rejected files list, I added the following:

    `/wp-content/uploads/avatars/signups/*
    /wp-content/uploads/avatars/*/*x*.*`

    I’m not too happy with the rules for rejection, it seems like there might be a danger of having a file named xxxbpfull.jpg being rejected and sourced locally, but given that any files that don’t contain an x will be sourced from my CDN I am pretty happy with this level of fudgery. In any case, this does mean that the files required to process the cropping will be sourced locally and therefore avatar uploads will work.

    The last thing to do is to set the autoupload time to something reasonable – I have set it to 10 minutes at the moment mainly so I can check that this all works okay, and also to see how much the autoupload script hammers the server. If it were possible it would be nice to add a hook at the end of the avatar cropping function that calls an image upload to the CDN for the file that has been created, but waiting 10 minutes to an hour for an avatar is not so bad.

    Hopefully this is helpful, and if anybody has better rules for the rejected file list I would be super happy to see them.

    #105224
    @mercime
    Participant

    @Bigjimmysisco I do not use the arras nor brownbuddy theme. I would rather roll out a bp-default child theme theme similar to Arras than take too much time to decipher all the theme’s intricacies, not that I’m going to at this time. The light at the end of the tunnel for you is that come BP 1.3, BP components will be rendered in regular Pages so hopefully lessen or eliminate any conflict.

    #105214

    SO can we fix it or not???

    @mercime, @gunju2221?

    #105039

    Can anyone answer this?

    #105038

    Can anyone answer this?

    #105033
    modemlooper
    Moderator

    has_members()
    next_member()
    rewind_members()
    members()
    the_member()
    bp_rewind_members()
    bp_has_members( $args = ” )
    ‘type’ => $type,
    ‘page’ => $page,
    ‘per_page’ => 20,
    ‘max’ => false,
    ‘include’ => false, // Pass a user_id or comma separated list of user_ids to only show these users
    ‘user_id’ => $user_id, // Pass a user_id to only show friends of this user
    ‘search_terms’ => $search_terms, // Pass search_terms to filter users by their profile data
    ‘populate_extras’ => true // Fetch usermeta? Friend count, last active etc.

    bp_the_member()
    bp_members()
    //Misc
    bp_members_pagination_count()
    bp_members_pagination_links()
    bp_member_user_id()
    bp_get_member_user_id()
    bp_member_user_nicename()
    bp_get_member_user_nicename()
    bp_member_user_login()
    bp_get_member_user_login()
    bp_member_user_email()
    bp_get_member_user_email()
    bp_member_is_loggedin_user()
    bp_member_avatar( $args = ” )
    bp_get_member_avatar( $args = ” )
    ‘type’ => ‘thumb’,
    ‘width’ => false,
    ‘height’ => false,
    ‘class’ => ‘avatar’,
    ‘id’ => false,
    ‘alt’ => __( ‘Member avatar’, ‘buddypress’ )

    bp_member_permalink()
    bp_member_link()
    bp_get_member_link()
    bp_member_name()
    bp_get_member_name()
    bp_member_last_active()
    bp_get_member_last_active()
    bp_member_latest_update( $args = ” )
    bp_get_member_latest_update( $args = ” ) {
    ‘length’ => 15

    bp_member_profile_data( $args = ” )
    ‘field’ => false, // Field name
    bp_member_registered()
    bp_get_member_registered()
    bp_member_add_friend_button()
    bp_add_friend_button( $members_template->member->id, $friend_status )
    bp_member_total_friend_count()
    bp_get_member_total_friend_count()
    bp_member_random_profile_data()
    bp_member_hidden_fields()
    bp_directory_members_search_form()
    bp_total_site_member_count()
    bp_get_total_site_member_count()
    //Check bp-core-templatetags.php for comments about nav tags
    bp_get_loggedin_user_nav()
    bp_get_displayed_user_nav()
    bp_get_options_nav()
    bp_get_options_title()
    //Avatar Tags
    bp_has_options_avatar()
    bp_get_options_avatar()
    bp_comment_author_avatar()
    bp_post_author_avatar()
    bp_loggedin_user_avatar( $args = ” )
    bp_get_loggedin_user_avatar( $args = ” ) {
    ‘type’=> ‘thumb’,
    ‘width’=> false,
    ‘height’=> false,
    ‘html’=> true

    bp_displayed_user_avatar( $args = ” )
    bp_get_displayed_user_avatar( $args = ” )
    ‘type’=> ‘thumb’,
    ‘width’=> false,
    ‘height’=> false,
    ‘html’=> true

    bp_avatar_admin_step()
    bp_get_avatar_admin_step()
    bp_avatar_to_crop()
    bp_get_avatar_to_crop()
    bp_avatar_to_crop_src()
    bp_get_avatar_to_crop_src()
    bp_avatar_cropper()
    //Other
    bp_site_name()
    bp_core_get_wp_profile()
    bp_get_profile_header()
    bp_exists( $component_name )
    bp_format_time( $time, $just_date = false )
    bp_word_or_name( $youtext, $nametext, $capitalize = true, $echo = true )
    bp_your_or_their( $capitalize = true, $echo = true )
    bp_get_plugin_sidebar()
    bp_page_title()
    bp_get_page_title()
    bp_styles()
    bp_has_custom_signup_page()
    bp_signup_page()
    bp_get_signup_page()
    bp_has_custom_activation_page()
    bp_activation_page()
    bp_get_activation_page()
    bp_search_form_enabled()
    bp_search_form_action()
    bp_search_form_type_select()
    bp_search_form()
    bp_log_out_link()
    bp_custom_profile_boxes()
    bp_custom_profile_sidebar_boxes()
    bp_create_excerpt( $text, $excerpt_length = 55, $filter_shortcodes = true )
    bp_is_serialized( $data )
    bp_total_member_count()
    bp_get_total_member_count()
    bp_signup_username_value()
    bp_get_signup_username_value()
    bp_signup_email_value()
    bp_get_signup_email_value()
    bp_signup_with_blog_value()
    bp_get_signup_with_blog_value()
    bp_signup_blog_url_value()
    bp_get_signup_blog_url_value()
    bp_signup_blog_title_value()
    bp_get_signup_blog_title_value()
    bp_signup_blog_privacy_value()
    bp_get_signup_blog_privacy_value()
    bp_signup_avatar_dir_value()
    bp_get_signup_avatar_dir_value()
    bp_current_signup_step()
    bp_get_current_signup_step()
    bp_signup_avatar( $args = ” )
    bp_get_signup_avatar( $args = ” ) {
    ‘size’ => BP_AVATAR_FULL_WIDTH,
    ‘class’ => ‘avatar’,
    ‘alt’ => __( ‘Your Avatar’, ‘buddypress’ )
    bp_signup_allowed()
    bp_get_signup_allowed()
    bp_blog_signup_allowed()
    bp_get_blog_signup_allowed()
    bp_account_was_activated()
    bp_registration_needs_activation()
    bp_mentioned_user_display_name( $user_id_or_username )
    bp_get_mentioned_user_display_name( $user_id_or_username )
    bp_get_option( $option_name )
    bp_ajax_querystring( $object = false )
    bp_last_activity( $user_id = false, $echo = true )
    bp_user_has_access()
    bp_user_firstname()
    bp_get_user_firstname()
    bp_loggedin_user_link()
    bp_get_loggedin_user_link()
    bp_loggedinuser_link()
    bp_displayed_user_link()
    bp_get_displayed_user_link()
    bp_user_link()
    bp_displayed_user_id()
    bp_current_user_id()
    bp_loggedin_user_id()
    bp_displayed_user_domain()
    bp_loggedin_user_domain()
    bp_displayed_user_fullname()
    bp_get_displayed_user_fullname()
    bp_user_fullname() { echo bp_get_displayed_user_fullname()
    bp_loggedin_user_fullname()
    bp_get_loggedin_user_fullname()
    bp_displayed_user_username()
    bp_get_displayed_user_username()
    bp_loggedin_user_username()
    bp_get_loggedin_user_username()
    bp_current_component()
    bp_current_action()
    bp_current_item()
    bp_action_variables()
    bp_root_domain()
    bp_get_root_domain()
    //Conditionals
    bp_is_blog_page()
    bp_is_my_profile()
    bp_is_home()
    bp_is_front_page()
    bp_is_activity_front_page()
    bp_is_directory()
    bp_is_page($page)
    bp_is_active( $component )
    bp_is_profile_component()
    bp_is_activity_component()
    bp_is_blogs_component()
    bp_is_messages_component()
    bp_is_friends_component()
    bp_is_groups_component()
    bp_is_settings_component()
    bp_is_member()
    bp_is_user_activity()
    bp_is_user_friends_activity()
    bp_is_activity_permalink()
    bp_is_user_profile()
    bp_is_profile_edit()
    bp_is_change_avatar()
    bp_is_user_groups()
    bp_is_group()
    bp_is_group_home()
    bp_is_group_create()
    bp_is_group_admin_page()
    bp_is_group_forum()
    bp_is_group_activity()
    bp_is_group_forum_topic()
    bp_is_group_forum_topic_edit()
    bp_is_group_members()
    bp_is_group_invites()
    bp_is_group_membership_request()
    bp_is_group_leave()
    bp_is_group_single()
    bp_is_user_blogs()
    bp_is_user_recent_posts()
    bp_is_user_recent_commments()
    bp_is_create_blog()
    bp_is_user_friends()
    bp_is_friend_requests()
    bp_is_user_messages()
    bp_is_messages_inbox()
    bp_is_messages_sentbox()
    bp_is_notices()
    bp_is_messages_compose_screen()
    bp_is_single_item()
    bp_is_activation_page()
    bp_is_register_page()
    bp_the_body_class()
    bp_get_the_body_class( $wp_classes, $custom_classes = false )

    #104924

    In reply to: Skip Avatar Cropping

    Xevo
    Participant

    *bump*

    Or could someone help me fixing my cropper, since it doesn’t work anymore, I do have a custom theme, but I just believe the javascript isn’t loaded.

    Thanks,
    Xevo

    #104899
    ewebber
    Participant

    @luvs the only tweaks I made were to the set of icons used, this plugin should add the set to all text areas – it may be something to do with your theme, have you tested it out on a different theme?

    One issue I have found with this is to do with the javascript it loads – this conflicts with image cropping on avatars. This is likely what is happening to your other plugin if it uses javascript

    #104875

    In reply to: Skip Avatar Cropping

    Xevo
    Participant

    Anyone tried this yet or better, succeeded in it?

    What I’m trying to get BuddyPress to do is just auto crop the image being uploaded, on registration and on new avatar upload.

    #104812

    I tried that – activated the buddypress default theme and it was still messing up. Any more suggestions?

    #104756
    Virtuali
    Participant

    Are you using custom or default theme?

    -If using custom, switch to the default and see if it fixes it

    #104725
    Virtuali
    Participant

    I am aware of this, Arras theme is a toughie one. Once I get the time I will contact the theme author of Arras

    #104719
    @mercime
    Participant

    Both issues related to the Arras theme integration with BuddyPress albeit via different routes. Bigjimmysisco, patience. Not everybody is using Brownbuddy.

    #104714

    Is anyone there?

    #104682

    Weird. I am using Brownbuddy. Fairly new theme.

    By all means…. test it!

    #104639
    Virtuali
    Participant

    Actually Bigjimmysisco, what theme are you using?

    Weird coincidence, maybe we have the same weird missing JS, My custom images don’t load on crop page either.

    I changed my avatar on my site for the first time and noticed this.

    I will do some troubleshooting on it, because It is certainly the theme.

    @boonebgorges I will create a dummy account on my site as “guest” and you can do troubleshooting on there, if you would like. maybe it will work on BJS’s theme also.

    #104599
    @mercime
    Participant

    — If the only way to solve this is to add a free member for troubleshooting, than I will, but I would like not too. —

    You are free to do whatever you want just as volunteers are free to answer whatever question comes up in these forums – if they so choose. Know that the volunteers here are not psychic. You haven’t even mentioned what custom theme you’re using to warn others to expect abysmal theme support if they use that custom theme.

Viewing 25 results - 676 through 700 (of 1,245 total)
Skip to toolbar