Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'wordpress'

Viewing 25 results - 776 through 800 (of 22,713 total)
  • Author
    Search Results
  • gsako
    Participant

    Anyone else seen this? My admin can upload an Avatar but my Users can’t. I deactivated all of my plugins and found that the conflict lies with WooCommerce. I have a store on my site so I need to keep WooCommerce running but I also need people to be able to upload Avatar photos. It is definitely Woo that is doing it as I turned off every plugin but that.

    I am running WordPress 5.9.3 and BuddyPress 10.2 and woo 6.4.1 This happened on several themes including 2012. It is for the site http://www.13hikes.com

    #324255
    shanebp
    Moderator

    You could create a ticket to get further input.

    Eric Kuznacic
    Participant

    I had an issue with a client site that the BP team may want to look into, in the event that it is affecting more sites than just mine.

    The issue: Running the latest version of BuddyPress (10.2), I had a client site and server that were seeing spikes to 100% CPU and high RAM usage — but only when a logged-in user opened the WordPress media library (/wp-admin/upload.php).

    My hosting support first told me it was a plugin error, then I was told it was a theme error. But we were unable to find any evidence of this. I cloned the live site, deactivated all plugins and switched to a default WP theme, and the issue still occurred.

    There were no related items in the Apache or Nginx error logs, but the PHP access log fills with lines like this, seemingly for every media file:

    (server IP) – [15/Apr/2022:15:57:37 +0000] “GET /index.php?bp-attachment=13109/NorthCrawford-300×225.jpg” 301 0 – 798 14702 0.648 8388608 9.27% 3.09% “/?bp-attachment=13109/NorthCrawford-300×225.jpg”

    The solution: This is what I received from my hosting support:

    The issue is BuddyPress created htaccess that redirects all wp-content/uploads/bp-attachments/ to ?bp_attachments= URL. The redirects spawn heaps of apache and php-fpm which also cause the issue . They created this sample htaccess found on the directory below

    /public_html/wp-content/uploads/bp-attachments# cat .htaccess

    RewriteEngine On
    RewriteBase /
    RewriteRule (.+) ?bp-attachment=$1 [R=302,NC]

    The htaccess has been renamed so, when you load medias, it should no longer reach 100%

    The solution was to take the .htaccess file out of the equation by renaming it, which is only a temporary fix. I presume this file would be overwritten upon the next BP update?

    If that’s the case, how would I keep this from happening, aside from renaming the offending .htaccess file each time there is a BP update?

    #324253
    kobusjfk
    Participant

    Wordpress v. 5.9.3
    Buddypress v. 10.2.0
    Theme. BuddyX

    In Private Messages – the message body part ‘shows’ at the top that you can attach a file or a link,
    the link option works, but when you click on the image attachment, it gives a popup that asks for the ‘source’ of the image. It doesn’t open a normal file explorer window to select the image.
    Please, how do I FIX this?

    honoluluman
    Participant

    I am not sure if anyone else is facing the same problem.

    I have been testing and debugging for several hours for this problem.
    I am using premium theme boombox , but also tried on Twenty Twenty-Two. Everywhere the same issue.

    I have deactivated all plugins, minimum set up.

    My website is on GR language in the frontend and i get the url of invitations component like that /members/user/προσκλησεις/ (with the GR translation). It should be /members/user/invitations/ like the rest of the components. I get an error page as a return. The component is not active.

    When i change default front lang to UK that i can see the /invitations/ component and invitations are working normal.

    Of course i have been saving permalinks, disabling-enabling invitations settings

    Could anyone help please??

    mackey1
    Participant

    Thanks for the quick reply!

    A new defect bug ticket #8678 has been created to track the code change.

    Also, thanks for the suggestion to use bp_get_group_avatar() in the meantime. I’ll look into that idea.

    This support ticket can be closed.

    #324182
    bpauljr
    Participant

    I am experiencing an issue with Smash Balloon YouTube Feed when loading more of the videos. If I disable BuddyPress the “Load More” button works normally.

    When displaying the feed (say about 6 videos) there is a button to “Load More” below the videos. When the button is clicked a new browser tab will open and display in the url “about:blank#blocked”. When I go back to the website page, it does “Load More” however I need to prevent this new blank tab from opening.

    Wordpress v. 5.9.2 with Olympus Theme
    BuddyPress V. 10.2.0
    Smash Balloon YouTube Feed V 1.4.4

    shanebp
    Moderator

    You are correct. A parameter for $html is missing and defaults to true.
    Please open a new ticket and refer to this thread.

    You could call bp_get_group_avatar() instead and set that parameter.
    Find the function in this file and review the params:
    buddypress\bp-groups\bp-groups-template.php

    #324173

    In reply to: Database Errors

    Mike Witt
    Participant

    OK. I’ve never created a track ticket before, so I hope I’ve done this right:
    https://buddypress.trac.wordpress.org/ticket/8676

    #324172

    In reply to: Database Errors

    shanebp
    Moderator

    You could try opening a ticket. Reference this thread.

    #324135
    epgb101
    Participant

    Hi..
    I have had the fantastic Buddypress working perfectly for a year on a folder install of WP (not multisite) like; http://www.mysite.com/wordpressandbuddypressinstall/register/.

    But I discovered for the last week people are no longer able to register (it just returns you to /register page). I disabled ALL plugins did not fix /register – HOWEVER disabling Buddypress plugin (and all other plugins) does allow registration on plain WordPress. I tried registering on Buddypress on different browsers / different PCs / using 20-19 theme etc but nothing fixes it.

    Q: does anyone have any suggestion as why /register may have stopped or how to fix?

    ps – I have Settings > Anyone can register [x] on and permalinks set to Post name

    Thank you in advance.

    tabarlyy
    Participant

    Hi,
    here is the my code. tab is created,
    but if user not member this private group redirect to wp-login page. how to open everyone this tab?

    function custom_members_tab() {
    if ( bp_is_groups_component() && bp_is_single_item() ) {
    global $bp;
    $group_link = bp_get_group_permalink( $bp->groups->current_group );
    $tab_args = array(
    ‘name’ => esc_html__( ‘destination’, ‘default’ ),
    ‘slug’ => ‘destination-members’,
    ‘screen_function’ => ‘destination_members_screen’,
    ‘position’ => 60,
    ‘parent_url’ => $group_link,
    ‘parent_slug’ => $bp->groups->current_group->slug,
    ‘default_subnav_slug’ => ‘destination-members’,
    ‘item_css_id’ => ‘destination-members’,
    ‘access’ => ‘anyone’,
    ‘show_tab’ => ‘anyone’,
    ‘show_for_displayed_user’ => true
    );
    bp_core_new_subnav_item( $tab_args, ‘groups’ );
    }
    }
    add_action( ‘bp_setup_nav’, ‘custom_members_tab’ );

    function destination_members_screen() {
    add_action( ‘bp_template_content’, ‘custom_group_tab_content’ );
    bp_core_load_template( ‘buddypress/members/single/plugins’ );
    }
    function custom_group_tab_content() {
    echo “show non group members, guests, everyone”
    }

    I read this ticket, but I couldn’t understand how to use it.
    https://buddypress.trac.wordpress.org/ticket/4785

    #324110

    In reply to: Database Errors

    Mike Witt
    Participant

    @shanebp – OK, I finally figured out how to replicate the error.

    Wordpress 5.9.2
    Twenty Twenty-Two Version: 1.1
    BuddyPress 10.2.0 (Nouveau)
    And some other plug-ins, including MemberPress and bbPress

    (1) Send two private messages to someone.
    (2) That person clicks on one of the notification, and the error happens
    Sometimes it happens if the recipient just refreshes their profile (and hence the notifications)

    Note: There need to be multiple private message notifications. If there’s just one notification the error doesn’t appear to happen.

    The error looks a bit different with BP Nouveau:

    [31-Mar-2022 17:41:07 UTC] WordPress database error You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near ') AND user_id = 2 AND component_name = 'messages' AND component_action = 'new...' at line 1 for query UPDATE wp_bp_notifications SET is_new = 0 WHERE item_id IN () AND user_id = 2 AND component_name = 'messages' AND component_action = 'new_message' made by do_action('wp_ajax_messages_get_thread_messages'), WP_Hook->do_action, WP_Hook->apply_filters, bp_nouveau_ajax_get_thread_messages, bp_thread_the_message, BP_Messages_Thread_Template->the_message, do_action('thread_loop_start'), WP_Hook->do_action, WP_Hook->apply_filters, bp_messages_screen_conversation_mark_notifications, bp_notifications_mark_notifications_by_item_ids, BP_Notifications_Notification::update_id_list

    #324098
    havealookhere
    Participant

    yes, its working with 2.7.

    what you do is using wp roll back plugin. install and activate it. Go to plugins and scroll to the bp activity plugin. You can click roll back or something there. Then click 2.7 and install and activate.

    Then go to general settings of bp activity and first press submit/save. Then the error is gone and it will work.

    I did write a lot of emails before the developer admitted it was a bug 🙂 but i did not get answer also about when next version is ready. On my website it works with the newest wordpress and buddypress.

    good luck

    #324080
    carasse64
    Participant

    Hello.

    Hostinger id a good one. Their support is very efficient. They have WordPress plans.

    Good service.

    Fabien

    bigtinydesigns
    Participant

    Hi,

    WordPress Version 5.9.2
    Theme: MagicVersion: 1.10.0 By Bdaia
    Website: miComunidad.com

    When I install the BuddyPress.10.2.0 I get these errors:

    WordPress database error: [Table 'micomuni_wpcristiana.wp_wkkr_bp_notifications' doesn't exist]
    SELECT COUNT(*) FROM wp_wkkr_bp_notifications n WHERE user_id IN (1) AND component_name IN ('xprofile','friends','messages','activity','groups','members') AND is_new = 1
    
    WordPress database error: [Table 'micomuni_wpcristiana.wp_wkkr_bp_messages_recipients' doesn't exist]
    SELECT SUM(unread_count) FROM wp_wkkr_bp_messages_recipients WHERE user_id = 1 AND is_deleted = 0 AND sender_only = 0
    
    WordPress database error: [Table 'micomuni_wpcristiana.wp_wkkr_bp_friends' doesn't exist]
    SELECT id FROM wp_wkkr_bp_friends WHERE (initiator_user_id = 1 OR friend_user_id = 1) ORDER BY date_created DESC
    
    WordPress database error: [Table 'micomuni_wpcristiana.wp_wkkr_bp_invitations' doesn't exist]
    SELECT DISTINCT i.item_id FROM wp_wkkr_bp_invitations i WHERE user_id IN (1) AND class IN ('bp_groups_invitation_manager') AND type = 'invite' AND invite_sent = 1 AND accepted = 0
    
    WordPress database error: [Table 'micomuni_wpcristiana.wp_wkkr_bp_groups' doesn't exist]
    SELECT DISTINCT g.id FROM wp_wkkr_bp_groups g WHERE g.id IN (0) ORDER BY g.date_created DESC
    
    WordPress database error: [Table 'micomuni_wpcristiana.wp_wkkr_bp_groups' doesn't exist]
    SELECT COUNT(DISTINCT g.id) FROM wp_wkkr_bp_groups g WHERE g.id IN (0)
    
    WordPress database error: [Table 'micomuni_wpcristiana.wp_wkkr_bp_notifications' doesn't exist]
    SELECT id, user_id, item_id, secondary_item_id, component_name, component_action, date_notified, is_new, COUNT(id) as total_count FROM wp_wkkr_bp_notifications n WHERE user_id IN (1) AND component_name IN ('xprofile','friends','messages','activity','groups','members') AND is_new = 1 GROUP BY user_id, component_name, component_action ORDER BY date_notified desc

    How do I create these database tables? Please help?

    Thanks,

    Carlos

    #324027
    user4forum
    Participant

    bbPress is probably activated and apparently that’s where the problem lies. Seems like we’re the only ones in the whole WordPress universe who (want to) use BP’s ‘hidden groups’ and ‘bbPress’ at the same time.

    Same Issue reported here

    #324018
    scottdev
    Participant

    What’s the REST API endpoint to get activity with comments, Or what’s the endpoint to get comments?

    I’m using this endpoint getting the last 10 activity but no comments are associated

    https://example.com/wp-json/buddypress/v1/activity

    I’m using the latest WordPress and buddyPress version and have no problems, everything works fine,

    I can not share link to my company website for NDA contract reasons

    thanks

    #323969
    markleeuw
    Participant

    Dear Mathieu,

    thank you for the quick reply.

    I have found out that the plugin, verify members is causing this error.

    on the theme that i am using: godlike theme of NK

    I have not gotten a reply back of the theme dev because the plugin owner of verify is saying that the theme owners should make a small fix of this.

    But for the small fix, if they see that its not a bug i have to pay 80 euros for the support section and get a half year support but i dont want to pay for this small fix that much amount of money.

    https://wordpress.org/support/topic/notification-buddypress-crashed-and-becomes-white/

    here is a link of everything

    #323944
    Mike Witt
    Participant

    Any advice on debugging the error below?
    WordPress 5.9.2, BuddyPress 10.1.0, bbPress 2.6.9
    (I haven’t upgraded to 10.2.0 yet, but I don’t see any fixes that seems to apply to this.)
    It happens “once in a while” since upgrading to 10.1.0. (Four times since March 9th.)
    It *might* be related to email notifications (mentions?) in a bbPress closed topic.

    [09-Mar-2022 17:13:53 UTC] WordPress database error You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ') AND user_id = 1348 AND component_name = 'messages' AND component_action = 'new' at line 1 for query UPDATE wp_bp_notifications SET is_new = 0 WHERE item_id IN () AND user_id = 1348 AND component_name = 'messages' AND component_action = 'new_message'
    made by require('wp-blog-header.php'), require_once('wp-includes/template-loader.php'), include('/themes/generatepress/page.php'), generate_do_template_part, get_template_part, locate_template, load_template, require('/themes/generatepress/content-page.php'), the_content, apply_filters('the_content'), WP_Hook->apply_filters, bp_replace_the_content, apply_filters('bp_replace_the_content'), WP_Hook->apply_filters, BP_Members_Theme_Compat->single_dummy_content, bp_buffer_template_part, bp_get_template_part, bp_locate_template, load_template, require('/plugins/buddypress/bp-templates/bp-legacy/buddypress/members/single/home.php'), bp_get_template_part, bp_locate_template, load_template, require('/plugins/buddypress/bp-templates/bp-legacy/buddypress/members/single/messages.php'), bp_get_template_part, bp_locate_template, load_template, require('/plugins/buddypress/bp-templates/bp-legacy/buddypress/members/single/messages/single.php'), bp_thread_the_message, BP_Messages_Thread_Template->the_message, do_action('thread_loop_start'), WP_Hook->do_action, WP_Hook->apply_filters, bp_messages_screen_conversation_mark_notifications, bp_notifications_mark_notifications_by_item_ids, BP_Notifications_Notification::update_id_list
    #323921
    siyahperde
    Participant
    #323890
    parkerspegs
    Participant

    Wordpress: 5.8.3
    BuddyPress: 10.1.0
    URL: https://learn.rebeccagordonastrology.com/

    Why can’t a user that has access to a hidden group not be able to see that group on the groups page?

    Thank you for your help.

    #323876
    siyahperde
    Participant

    Its related with “BP Registration Optinos” plugin:

    BuddyPress Registration Options

    When i close it, the problem goes away…
    I hope someone fix the plugin. It was very useful.

    #323859
    giuseppe2016
    Participant

    Hello friends,

    i’m creating a wide social with Buddypress.

    Having already considered all the security measures regarding wordpress (first of all registration), which are the way or best practices to avoid maliciuos code injected via publishing a post by a member (that is not manual approval of any commment of course)?

    Example: dedicated plug-in, limitation of some symbol as “bad word” (i have plugin) or others.

    Many thanks,

    Giuseppe

    #323849
    bigtinydesigns
    Participant

    Hi,

    I get this message when my pages disappeared and I get a 404-page error.

    Notice: Trying to get property ‘ID’ of non-object in <b>/home/micomuni/public_html/wp-content/plugins/pmpro-buddypress/includes/restrictions.php on line 232

    Please help?

    Thanks.

Viewing 25 results - 776 through 800 (of 22,713 total)
Skip to toolbar