Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'comment notification'

Viewing 25 results - 201 through 225 (of 329 total)
  • Author
    Search Results
  • Tyler
    Member

    Just a suggestion though,

    A plugin should not be needed for this functionality, this should be a native BP feature IMO.

    Tyler
    Member

    Thanks for the heads up Ray.

    That did indeed fix the problem!

    r-a-y
    Keymaster

    This issue was caused by a plugin called BuddyPress Activity Comment Notifier.

    An update was just released by Brajesh, the plugin author, here:
    https://github.com/sbrajesh/bp-activity-comment-notifier

    #138823
    Paul Wong-Gibbs
    Keymaster
    #138821

    I mean the notifications that appear on the buddypress bar. When someone comments/replies to my status updates on activity I do not get a notification. However I do get notifications for private messages, friendship requests and mentions.

    Hopefully that made it clearer to understand my problem.

    Paul Wong-Gibbs
    Keymaster

    Glad you like it! Please can you report the notifications error as a bug on https://buddypress.trac.wordpress.org please — you can use the username and password that you use on this site to log in. Thanks.

    #137936
    shanebp
    Moderator

    >So, how do I grab the necessary params from a regular post comment and pass them to a function that will create an activity post comment?

    If I understand you correctly – an activity item should be created when you comment on a post page
    At least it does on http://testbp.org/activity/ – try it.
    ( note: on my 1.6 RC1 install – an activity item is NOT created when you comment on a post page – and I don’t know why at this time )

    So, if on your installed BP version ( which is ? ) , activity items are created when a member comments on a post page, then you should be able to hook into the creation of that item and generate a notification.

    If, on your install, activity items are NOT created when a member comments on a post page – then there is another issue and I’d be interested in the answer.

    #137934
    Andrew Tibbetts
    Participant

    Thanks for the reply Shane.
    The problem I’m having is reconciling the params that WP post comments use and the params that BP activity comments use.
    The simplest route (that I can glean) to get the functionality I want is to programmatically insert an activity post comment every time a comment is made on the actual post.
    So, how do I grab the necessary params from a regular post comment and pass them to a function that will create an activity post comment?
    I can (hopefully) figure out how to redirect the activity post comment to link to the post and not the activity item once I get this initial part working.
    (The reason I think faking an activity comment is so that I can utilize preexisting functions that find all the involved members that are commenting on the post, which only exist in BP activity and not in WP—correct me if I’m wrong)

    #137931
    shanebp
    Moderator

    You should be able to create a hook via:
    `do_action(‘wp_insert_comment’, $id, $comment);`

    which is located ~Line 1259 in wp-includes/comment.php -> wp_insert_comment()

    #137929
    Andrew Tibbetts
    Participant

    Thanks modemlooper.
    I have been looking though the code for over a month now and I’m getting nowhere.
    I am trying to modify the “BuddyPress Activity Comment Notifier” plugin to do what I want—it takes activity update comments and makes a screen notification for them.
    This is exactly what I want to do but for post comments, not activity update comments.
    A possible solution that I’m stuck on is how to trigger an activity comment when someone creates a post comment.
    Well, I’m stuck on everything; even how to approach this, and most likely, I’m going about this all wrong.
    If any kind soul can take a minute to provide details, it would be greatly appreciated—otherwise it might be nuts to the client.

    #137740
    mahdiar
    Participant

    Hi
    Is there anyway to set the email notifications off by default ?

    #137662
    Tammie Lister
    Moderator

    I’m just going to clarify what the activtity stream does and can do if you modify the loop.

    “Activity Streams
    Global, personal, and group activity streams with single-stream view. Included are threaded commenting, status updates, favorites, @mentions, RSS feeds, and email notifications.”

    https://buddypress.org/about/story/

    https://codex.buddypress.org/developer-docs/custom-buddypress-loops/the-activity-stream-loop/ shows you how you can pass variables to the functions which means you can create custom filtering.

    edgarcia78
    Member

    What if instead of sending an email I just want a “New Comments Available” logo to show up next to the link that I have to the activity stream? Currently I have a page where I have various links to other pages. It looks something like this:

    -Calendar of Events
    -Group Wall “NEW COMMENTS AVAILABLE”
    -Documents

    So the link that says Group Wall is really directing the user to the activity stream. So anytime there is new activity available you would get that message. How easy would this be to implement?

    edgarcia78
    Member

    Roger,

    Thanks for the update. And yes, I want to to do the second option. My website does not have much activity. The activity stream is used almost like a forum where people post questions or leave comments. However, when someone posts a question, none of the members ever know. So the questions go unanswered. I will look into the action hooks that you mentioned. Are there any tutorials on how to use action hooks?

    Thanks again for pointing me in the right direction.

    Ed

    #136798
    modemlooper
    Moderator

    You get notifications for friend adds, messages and comments/replies

    The notices are customizable. It’s best to look through the code to see how they work. Most things, like sending a message will run a notice function. So you can add or take away what calls this notice function.

    Wow! Thank you very much! As far as I can tell that worked!

    One question/concern. I did not change the following because, well, I couldn’t find them:

    /groups/single/home.php
    /groups/single/plugins.php
    /members/single/home.php
    /members/single/plugins.php
    /members/single/settings/delete-account.php
    /members/single/settings/general.php
    /members/single/settings/notifications.php

    Here’s what is visible:

    Templates

    activity-loop.php
    comment.php
    entry.php
    Main Index Template
    (activity/index.php)
    post-form.php
    blogs-loop.php
    create.php
    Main Index Template
    (blogs/index.php)
    Comments
    (comments.php)
    core_functions.php
    custom_functions.php
    import_settings.php
    options_chameleon.php
    post_thumbnails_chameleon.php
    Footer
    (footer.php)
    forums-loop.php
    Main Index Template
    (forums/index.php)
    Theme Functions
    (functions.php)
    create.php
    groups-loop.php
    Main Index Template
    (groups/index.php)
    Header
    (header.php)
    home.php
    breadcrumbs.php
    entry.php
    featured.php
    navigation.php
    no-results.php
    postinfo.php
    scripts.php
    top_info.php
    widgets.php
    Main Index Template
    (index.php)
    Main Index Template
    (members/index.php)
    members-loop.php
    Blog Page Page Template
    (page-blog.php)
    Contact Page Page Template
    (page-contact.php)
    Full Width Page Page Template
    (page-full.php)
    Gallery Page Page Template
    (page-gallery.php)
    Login Page Page Template
    (page-login.php)
    Search Page Page Template
    (page-search.php)
    Sitemap Page Page Template
    (page-sitemap.php)
    Portfolio Page Page Template
    (page-template-portfolio.php)
    Page Template
    (page.php)
    activate.php
    register.php
    Search Form
    (searchform.php)
    Sidebar
    (sidebar.php)
    Single Post
    (single.php)

    Styles

    Stylesheet
    (style.css)

    Am I just missing them?

    #136040
    b1gft
    Participant

    The search facility is not working on the site, well it kind of does, but only shows blog entries. what I do is use the tags and get the closest word to your problem and click on it and see what comes up. Of course first ask on the support forum, but I find, on my questions anyway, that only about 20% are answered. On the email notification, again I dont think it works, so to get over this, I will make some comment on a post I am interested in or want to find a problem on. Then when I return to the BP site, I log in and go to my activity page, and that shows all the posts I have being involved with, so I am able to follow it that way.

    There is a few bugs with BP own site, another one is my username is shown as “deleted user”, while my username is B1gft. I posted about it and again they said they have seen a lot of members that had this problem, again they said they knew about it, but again it was not fixed.

    #134470
    Bandreus
    Member

    digging into the error log scared me :|

    I replicated the bug, and these are the last few lines from the error log:

    [12-May-2012 20:48:46] WordPress database error MySQL server has gone away for query
    UPDATE wp_2_posts
    SET post_modified = '2012-05-12 22:48:46',
    post_modified_gmt = '2012-05-12 20:48:46'
    WHERE post_status='publish'
    AND ( ID = 418 OR ID = 347 OR ID = 348 OR ID = 365 OR ID = 366) made by require, require_once, require_once, require_once, do_action, call_user_func_array, live_streams_update_streams, live_streams_update_post_modified
    [12-May-2012 20:48:46] WordPress database error MySQL server has gone away for query
    UPDATE wp_2_postmeta
    SET meta_value = '399'
    WHERE meta_key = 'live_viewers'
    AND ( post_id = 365) made by require, require_once, require_once, require_once, do_action, call_user_func_array, live_streams_update_streams, live_streams_update_live_streams_viewers
    [12-May-2012 20:48:46] WordPress database error MySQL server has gone away for query  SELECT   wp_2_posts.* FROM wp_2_posts  WHERE 1=1  AND wp_2_posts.post_name = 'regolamento-forumobbligatorio' AND wp_2_posts.post_type = 'topic'  ORDER BY wp_2_posts.post_date DESC  made by require, wp, WP->main, WP->query_posts, WP_Query->query, WP_Query->get_posts
    [12-May-2012 20:48:46] WordPress database error MySQL server has gone away for query SELECT post_id FROM wp_2_postmeta, wp_2_posts WHERE ID = post_id AND post_type = 'topic' AND meta_key = '_wp_old_slug' AND meta_value = 'regolamento-forumobbligatorio' made by require, require_once, do_action, call_user_func_array, wp_old_slug_redirect
    [12-May-2012 20:48:46] WordPress database error MySQL server has gone away for query SELECT ID FROM wp_2_posts WHERE post_name LIKE 'regolamento-forumobbligatorio%' AND post_type = 'topic' AND post_status = 'publish' made by require, require_once, do_action, call_user_func_array, redirect_canonical, redirect_guess_404_permalink
    [12-May-2012 20:48:46] WordPress database error MySQL server has gone away for query SELECT meta_value FROM wp_sitemeta WHERE meta_key = 'can_compress_scripts' AND site_id = 1 made by require, require_once, include, get_header, locate_template, load_template, require_once, wp_head, do_action, call_user_func_array, wp_print_head_scripts, print_head_scripts, script_concat_settings, get_site_option
    [12-May-2012 20:48:46] WordPress database error MySQL server has gone away for query SELECT meta_value FROM wp_sitemeta WHERE meta_key = 'can_compress_scripts' AND site_id = 1 made by require, require_once, include, get_header, locate_template, load_template, require_once, wp_head, do_action, call_user_func_array, wp_print_head_scripts, print_head_scripts, script_concat_settings, get_site_option
    [12-May-2012 20:48:46] WordPress database error MySQL server has gone away for query SELECT option_value FROM wp_2_options WHERE option_name = 'super_simple_google_analytics_item' LIMIT 1 made by require, require_once, include, get_header, locate_template, load_template, require_once, wp_head, do_action, call_user_func_array, super_simple_google_analytics_print_code, get_option
    [12-May-2012 20:48:46] WordPress database error MySQL server has gone away for query SELECT t.*, tt.* FROM wp_2_terms AS t INNER JOIN wp_2_term_taxonomy AS tt ON t.term_id = tt.term_id WHERE tt.taxonomy = 'nav_menu' AND t.term_id = 3 LIMIT 1 made by require, require_once, include, get_header, locate_template, load_template, require_once, wp_nav_menu, wp_get_nav_menu_object, get_term
    [12-May-2012 20:48:46] WordPress database error MySQL server has gone away for query SELECT t.*, tt.* FROM wp_2_terms AS t INNER JOIN wp_2_term_taxonomy AS tt ON t.term_id = tt.term_id WHERE tt.taxonomy = 'nav_menu' AND t.slug = '3' LIMIT 1 made by require, require_once, include, get_header, locate_template, load_template, require_once, wp_nav_menu, wp_get_nav_menu_object, get_term_by
    [12-May-2012 20:48:46] WordPress database error MySQL server has gone away for query SELECT t.*, tt.* FROM wp_2_terms AS t INNER JOIN wp_2_term_taxonomy AS tt ON t.term_id = tt.term_id WHERE tt.taxonomy = 'nav_menu' AND t.name = '3' LIMIT 1 made by require, require_once, include, get_header, locate_template, load_template, require_once, wp_nav_menu, wp_get_nav_menu_object, get_term_by
    [12-May-2012 20:48:46] WordPress database error MySQL server has gone away for query SELECT * FROM wp_2_posts  WHERE (post_type = 'page' AND post_status = 'publish')  AND ( ID  44 )    ORDER BY menu_order,wp_2_posts.post_title ASC made by require, require_once, include, get_header, locate_template, load_template, require_once, wp_nav_menu, call_user_func, wp_page_menu, wp_list_pages, get_pages
    [12-May-2012 20:48:46] WordPress database error MySQL server has gone away for query  SELECT SQL_CALC_FOUND_ROWS  wp_2_posts.* FROM wp_2_posts  INNER JOIN wp_2_postmeta ON (wp_2_posts.ID = wp_2_postmeta.post_id)
    INNER JOIN wp_2_postmeta AS mt1 ON (wp_2_posts.ID = mt1.post_id) WHERE 1=1  AND wp_2_posts.post_type = 'live_streams_stream' AND (wp_2_posts.post_status = 'publish' OR wp_2_posts.post_status = 'closed') AND (wp_2_postmeta.meta_key = 'live_viewers'
    AND  (mt1.meta_key = 'status' AND CAST(mt1.meta_value AS CHAR) = 'live') ) GROUP BY wp_2_posts.ID ORDER BY wp_2_postmeta.meta_value+0 DESC LIMIT 0, 50 made by require, require_once, include, get_footer, locate_template, load_template, require_once, do_action, call_user_func_array, CC_Theme_Generator->sidebar_right, locate_template, load_template, require_once, dynamic_sidebar, call_user_func_array, WP_Widget->display_callback, Live_Streams_Widget->widget, WP_Query->__construct, WP_Query->query, WP_Query->get_posts
    [12-May-2012 20:48:46] WordPress database error MySQL server has gone away for query SELECT FOUND_ROWS() made by require, require_once, include, get_footer, locate_template, load_template, require_once, do_action, call_user_func_array, CC_Theme_Generator->sidebar_right, locate_template, load_template, require_once, dynamic_sidebar, call_user_func_array, WP_Widget->display_callback, Live_Streams_Widget->widget, WP_Query->__construct, WP_Query->query, WP_Query->get_posts
    [12-May-2012 20:48:46] WordPress database error MySQL server has gone away for query SELECT DISTINCT u.ID as id, u.user_registered, u.user_nicename, u.user_login, u.display_name, u.user_email , um.meta_value as last_activity FROM wp_users u LEFT JOIN wp_usermeta um ON um.user_id = u.ID WHERE u.spam = 0 AND u.deleted = 0 AND u.user_status = 0 AND um.meta_key = 'last_activity' AND DATE_ADD( um.meta_value, INTERVAL 5 MINUTE ) >= UTC_TIMESTAMP() ORDER BY um.meta_value DESC LIMIT 0, 15 made by require, require_once, include, get_footer, locate_template, load_template, require_once, do_action, call_user_func_array, CC_Theme_Generator->sidebar_right, locate_template, load_template, require_once, dynamic_sidebar, call_user_func_array, WP_Widget->display_callback, BP_Core_Whos_Online_Widget->widget, bp_has_members, BP_Core_Members_Template->__construct, bp_core_get_users, BP_Core_User->get_users
    [12-May-2012 20:48:46] WordPress database error MySQL server has gone away for query SELECT COUNT(DISTINCT u.ID) FROM wp_users u LEFT JOIN wp_usermeta um ON um.user_id = u.ID WHERE u.spam = 0 AND u.deleted = 0 AND u.user_status = 0 AND um.meta_key = 'last_activity' AND DATE_ADD( um.meta_value, INTERVAL 5 MINUTE ) >= UTC_TIMESTAMP() ORDER BY um.meta_value DESC made by require, require_once, include, get_footer, locate_template, load_template, require_once, do_action, call_user_func_array, CC_Theme_Generator->sidebar_right, locate_template, load_template, require_once, dynamic_sidebar, call_user_func_array, WP_Widget->display_callback, BP_Core_Whos_Online_Widget->widget, bp_has_members, BP_Core_Members_Template->__construct, bp_core_get_users, BP_Core_User->get_users
    [12-May-2012 20:48:46] WordPress database error MySQL server has gone away for query SELECT * FROM wp_2_comments JOIN wp_2_posts ON wp_2_posts.ID = wp_2_comments.comment_post_ID WHERE comment_approved = '1' AND wp_2_posts.post_status = 'publish' ORDER BY comment_date_gmt DESC LIMIT 5 made by require, require_once, include, get_footer, locate_template, load_template, require_once, do_action, call_user_func_array, CC_Theme_Generator->sidebar_right, locate_template, load_template, require_once, dynamic_sidebar, call_user_func_array, WP_Widget->display_callback, WP_Widget_Recent_Comments->widget, get_comments, WP_Comment_Query->query
    [12-May-2012 20:48:47] WordPress database error MySQL server has gone away for query  SELECT SQL_CALC_FOUND_ROWS  wp_2_posts.* FROM wp_2_posts  INNER JOIN wp_2_postmeta ON (wp_2_posts.ID = wp_2_postmeta.post_id) WHERE 1=1  AND wp_2_posts.post_type = 'topic' AND (wp_2_posts.post_status = 'publish' OR wp_2_posts.post_status = 'closed') AND (wp_2_postmeta.meta_key = '_bbp_last_active_time' ) GROUP BY wp_2_posts.ID ORDER BY wp_2_postmeta.meta_value DESC LIMIT 0, 10 made by require, require_once, include, get_footer, locate_template, load_template, require_once, do_action, call_user_func_array, CC_Theme_Generator->sidebar_right, locate_template, load_template, require_once, dynamic_sidebar, call_user_func_array, WP_Widget->display_callback, BBP_Topics_Widget->widget, bbp_has_topics, WP_Query->__construct, WP_Query->query, WP_Query->get_posts
    [12-May-2012 20:48:47] WordPress database error MySQL server has gone away for query SELECT FOUND_ROWS() made by require, require_once, include, get_footer, locate_template, load_template, require_once, do_action, call_user_func_array, CC_Theme_Generator->sidebar_right, locate_template, load_template, require_once, dynamic_sidebar, call_user_func_array, WP_Widget->display_callback, BBP_Topics_Widget->widget, bbp_has_topics, WP_Query->__construct, WP_Query->query, WP_Query->get_posts
    [12-May-2012 20:48:47] WordPress database error MySQL server has gone away for query SELECT * FROM wp_options WHERE option_name = 'blogname' made by require, require_once, include, get_footer, locate_template, load_template, require_once, wp_footer, do_action, call_user_func_array, bp_core_admin_bar, do_action, call_user_func_array, bp_adminbar_logo, get_blog_option
    [12-May-2012 20:48:47] WordPress database error MySQL server has gone away for query SELECT user_id, user_login, user_nicename, display_name, user_email, meta_value as caps FROM wp_users u, wp_usermeta um WHERE u.ID = um.user_id AND meta_key = 'wp_2_capabilities' ORDER BY um.user_id made by require, require_once, include, get_footer, locate_template, load_template, require_once, wp_footer, do_action, call_user_func_array, bp_core_admin_bar, do_action, call_user_func_array, bp_adminbar_authors_menu
    [12-May-2012 21:27:39] WordPress database error MySQL server has gone away for query
    UPDATE wp_2_posts
    SET post_modified = '2012-05-12 23:27:39',
    post_modified_gmt = '2012-05-12 21:27:39'
    WHERE post_status='publish'
    AND ( ID = 342 OR ID = 343 OR ID = 360 OR ID = 361 OR ID = 405) made by require, require_once, require_once, require_once, do_action, call_user_func_array, live_streams_update_streams, live_streams_update_post_modified
    [12-May-2012 21:27:39] WordPress database error MySQL server has gone away for query
    UPDATE wp_2_postmeta
    SET meta_value = '920'
    WHERE meta_key = 'live_viewers'
    AND ( post_id = 342) made by require, require_once, require_once, require_once, do_action, call_user_func_array, live_streams_update_streams, live_streams_update_live_streams_viewers
    [12-May-2012 21:27:39] WordPress database error MySQL server has gone away for query  SELECT SQL_CALC_FOUND_ROWS  wp_2_posts.* FROM wp_2_posts  WHERE 1=1  AND wp_2_posts.post_type = 'post' AND (wp_2_posts.post_status = 'publish' OR wp_2_posts.post_status = 'closed' OR wp_2_posts.post_status = 'private' OR wp_2_posts.post_status = 'hidden')  ORDER BY wp_2_posts.post_date DESC LIMIT 0, 10 made by require, wp, WP->main, WP->query_posts, WP_Query->query, WP_Query->get_posts
    [12-May-2012 21:27:39] WordPress database error MySQL server has gone away for query SELECT FOUND_ROWS() made by require, wp, WP->main, WP->query_posts, WP_Query->query, WP_Query->get_posts
    [12-May-2012 21:27:39] WordPress database error MySQL server has gone away for query SELECT meta_value FROM wp_sitemeta WHERE meta_key = 'can_compress_scripts' AND site_id = 1 made by require, require_once, include, get_header, locate_template, load_template, require_once, wp_head, do_action, call_user_func_array, wp_print_head_scripts, print_head_scripts, script_concat_settings, get_site_option
    [12-May-2012 21:27:39] WordPress database error MySQL server has gone away for query SELECT meta_value FROM wp_sitemeta WHERE meta_key = 'can_compress_scripts' AND site_id = 1 made by require, require_once, include, get_header, locate_template, load_template, require_once, wp_head, do_action, call_user_func_array, wp_print_head_scripts, print_head_scripts, script_concat_settings, get_site_option
    [12-May-2012 21:27:39] WordPress database error MySQL server has gone away for query SELECT option_value FROM wp_2_options WHERE option_name = 'super_simple_google_analytics_item' LIMIT 1 made by require, require_once, include, get_header, locate_template, load_template, require_once, wp_head, do_action, call_user_func_array, super_simple_google_analytics_print_code, get_option
    [12-May-2012 21:27:39] WordPress database error MySQL server has gone away for query SELECT t.*, tt.* FROM wp_2_terms AS t INNER JOIN wp_2_term_taxonomy AS tt ON t.term_id = tt.term_id WHERE tt.taxonomy = 'nav_menu' AND t.term_id = 3 LIMIT 1 made by require, require_once, include, get_header, locate_template, load_template, require_once, wp_nav_menu, wp_get_nav_menu_object, get_term
    [12-May-2012 21:27:39] WordPress database error MySQL server has gone away for query SELECT t.*, tt.* FROM wp_2_terms AS t INNER JOIN wp_2_term_taxonomy AS tt ON t.term_id = tt.term_id WHERE tt.taxonomy = 'nav_menu' AND t.slug = '3' LIMIT 1 made by require, require_once, include, get_header, locate_template, load_template, require_once, wp_nav_menu, wp_get_nav_menu_object, get_term_by
    [12-May-2012 21:27:39] WordPress database error MySQL server has gone away for query SELECT t.*, tt.* FROM wp_2_terms AS t INNER JOIN wp_2_term_taxonomy AS tt ON t.term_id = tt.term_id WHERE tt.taxonomy = 'nav_menu' AND t.name = '3' LIMIT 1 made by require, require_once, include, get_header, locate_template, load_template, require_once, wp_nav_menu, wp_get_nav_menu_object, get_term_by
    [12-May-2012 21:27:39] WordPress database error MySQL server has gone away for query SELECT * FROM wp_2_posts  WHERE (post_type = 'page' AND post_status = 'publish')  AND ( ID  44 )    ORDER BY menu_order,wp_2_posts.post_title ASC made by require, require_once, include, get_header, locate_template, load_template, require_once, wp_nav_menu, call_user_func, wp_page_menu, wp_list_pages, get_pages
    [12-May-2012 21:27:39] WordPress database error MySQL server has gone away for query  SELECT SQL_CALC_FOUND_ROWS  wp_2_posts.* FROM wp_2_posts  WHERE 1=1  AND wp_2_posts.post_type = 'post' AND (wp_2_posts.post_status = 'publish' OR wp_2_posts.post_status = 'closed' OR wp_2_posts.post_status = 'private' OR wp_2_posts.post_status = 'hidden')  ORDER BY wp_2_posts.post_date DESC LIMIT 0, 4 made by require, require_once, include, get_header, locate_template, load_template, require_once, do_action, call_user_func_array, CC_Theme_Generator->slideshow_home, cc_slidertop, slider, query_posts, WP_Query->query, WP_Query->get_posts
    [12-May-2012 21:27:39] WordPress database error MySQL server has gone away for query SELECT FOUND_ROWS() made by require, require_once, include, get_header, locate_template, load_template, require_once, do_action, call_user_func_array, CC_Theme_Generator->slideshow_home, cc_slidertop, slider, query_posts, WP_Query->query, WP_Query->get_posts
    [12-May-2012 21:27:39] WordPress database error MySQL server has gone away for query  SELECT SQL_CALC_FOUND_ROWS  wp_2_posts.* FROM wp_2_posts  WHERE 1=1  AND wp_2_posts.post_type = 'post' AND (wp_2_posts.post_status = 'publish' OR wp_2_posts.post_status = 'closed' OR wp_2_posts.post_status = 'private' OR wp_2_posts.post_status = 'hidden')  ORDER BY wp_2_posts.post_date DESC LIMIT 0, 3 made by require, require_once, include, do_action, call_user_func_array, CC_Theme_Generator->default_homepage_last_posts, cc_list_posts, query_posts, WP_Query->query, WP_Query->get_posts
    [12-May-2012 21:27:39] WordPress database error MySQL server has gone away for query SELECT FOUND_ROWS() made by require, require_once, include, do_action, call_user_func_array, CC_Theme_Generator->default_homepage_last_posts, cc_list_posts, query_posts, WP_Query->query, WP_Query->get_posts
    [12-May-2012 21:27:39] WordPress database error MySQL server has gone away for query  SELECT SQL_CALC_FOUND_ROWS  wp_2_posts.* FROM wp_2_posts  INNER JOIN wp_2_postmeta ON (wp_2_posts.ID = wp_2_postmeta.post_id)
    INNER JOIN wp_2_postmeta AS mt1 ON (wp_2_posts.ID = mt1.post_id) WHERE 1=1  AND wp_2_posts.post_type = 'live_streams_stream' AND (wp_2_posts.post_status = 'publish' OR wp_2_posts.post_status = 'closed' OR wp_2_posts.post_status = 'private' OR wp_2_posts.post_status = 'hidden') AND (wp_2_postmeta.meta_key = 'live_viewers'
    AND  (mt1.meta_key = 'status' AND CAST(mt1.meta_value AS CHAR) = 'live') ) GROUP BY wp_2_posts.ID ORDER BY wp_2_postmeta.meta_value+0 DESC LIMIT 0, 50 made by require, require_once, include, get_footer, locate_template, load_template, require_once, do_action, call_user_func_array, CC_Theme_Generator->sidebar_right, locate_template, load_template, require_once, dynamic_sidebar, call_user_func_array, WP_Widget->display_callback, Live_Streams_Widget->widget, WP_Query->__construct, WP_Query->query, WP_Query->get_posts
    [12-May-2012 21:27:39] WordPress database error MySQL server has gone away for query SELECT FOUND_ROWS() made by require, require_once, include, get_footer, locate_template, load_template, require_once, do_action, call_user_func_array, CC_Theme_Generator->sidebar_right, locate_template, load_template, require_once, dynamic_sidebar, call_user_func_array, WP_Widget->display_callback, Live_Streams_Widget->widget, WP_Query->__construct, WP_Query->query, WP_Query->get_posts
    [12-May-2012 21:27:39] WordPress database error MySQL server has gone away for query SELECT DISTINCT u.ID as id, u.user_registered, u.user_nicename, u.user_login, u.display_name, u.user_email , um.meta_value as last_activity FROM wp_users u LEFT JOIN wp_usermeta um ON um.user_id = u.ID WHERE u.spam = 0 AND u.deleted = 0 AND u.user_status = 0 AND um.meta_key = 'last_activity' AND DATE_ADD( um.meta_value, INTERVAL 5 MINUTE ) >= UTC_TIMESTAMP() ORDER BY um.meta_value DESC LIMIT 0, 15 made by require, require_once, include, get_footer, locate_template, load_template, require_once, do_action, call_user_func_array, CC_Theme_Generator->sidebar_right, locate_template, load_template, require_once, dynamic_sidebar, call_user_func_array, WP_Widget->display_callback, BP_Core_Whos_Online_Widget->widget, bp_has_members, BP_Core_Members_Template->__construct, bp_core_get_users, BP_Core_User->get_users
    [12-May-2012 21:27:39] WordPress database error MySQL server has gone away for query SELECT COUNT(DISTINCT u.ID) FROM wp_users u LEFT JOIN wp_usermeta um ON um.user_id = u.ID WHERE u.spam = 0 AND u.deleted = 0 AND u.user_status = 0 AND um.meta_key = 'last_activity' AND DATE_ADD( um.meta_value, INTERVAL 5 MINUTE ) >= UTC_TIMESTAMP() ORDER BY um.meta_value DESC made by require, require_once, include, get_footer, locate_template, load_template, require_once, do_action, call_user_func_array, CC_Theme_Generator->sidebar_right, locate_template, load_template, require_once, dynamic_sidebar, call_user_func_array, WP_Widget->display_callback, BP_Core_Whos_Online_Widget->widget, bp_has_members, BP_Core_Members_Template->__construct, bp_core_get_users, BP_Core_User->get_users
    [12-May-2012 21:27:39] WordPress database error MySQL server has gone away for query SELECT * FROM wp_2_comments JOIN wp_2_posts ON wp_2_posts.ID = wp_2_comments.comment_post_ID WHERE comment_approved = '1' AND wp_2_posts.post_status = 'publish' ORDER BY comment_date_gmt DESC LIMIT 5 made by require, require_once, include, get_footer, locate_template, load_template, require_once, do_action, call_user_func_array, CC_Theme_Generator->sidebar_right, locate_template, load_template, require_once, dynamic_sidebar, call_user_func_array, WP_Widget->display_callback, WP_Widget_Recent_Comments->widget, get_comments, WP_Comment_Query->query
    [12-May-2012 21:27:39] WordPress database error MySQL server has gone away for query  SELECT SQL_CALC_FOUND_ROWS  wp_2_posts.* FROM wp_2_posts  INNER JOIN wp_2_postmeta ON (wp_2_posts.ID = wp_2_postmeta.post_id) WHERE 1=1  AND wp_2_posts.post_type = 'topic' AND (wp_2_posts.post_status = 'publish' OR wp_2_posts.post_status = 'closed') AND (wp_2_postmeta.meta_key = '_bbp_last_active_time' ) GROUP BY wp_2_posts.ID ORDER BY wp_2_postmeta.meta_value DESC LIMIT 0, 10 made by require, require_once, include, get_footer, locate_template, load_template, require_once, do_action, call_user_func_array, CC_Theme_Generator->sidebar_right, locate_template, load_template, require_once, dynamic_sidebar, call_user_func_array, WP_Widget->display_callback, BBP_Topics_Widget->widget, bbp_has_topics, WP_Query->__construct, WP_Query->query, WP_Query->get_posts
    [12-May-2012 21:27:39] WordPress database error MySQL server has gone away for query SELECT FOUND_ROWS() made by require, require_once, include, get_footer, locate_template, load_template, require_once, do_action, call_user_func_array, CC_Theme_Generator->sidebar_right, locate_template, load_template, require_once, dynamic_sidebar, call_user_func_array, WP_Widget->display_callback, BBP_Topics_Widget->widget, bbp_has_topics, WP_Query->__construct, WP_Query->query, WP_Query->get_posts
    [12-May-2012 21:27:39] WordPress database error MySQL server has gone away for query SELECT * FROM wp_options WHERE option_name = 'blogname' made by require, require_once, include, get_footer, locate_template, load_template, require_once, wp_footer, do_action, call_user_func_array, bp_core_admin_bar, do_action, call_user_func_array, bp_adminbar_logo, get_blog_option
    [12-May-2012 21:27:39] WordPress database error MySQL server has gone away for query SELECT DISTINCT b.blog_id, b.id, bm1.meta_value as name, wb.domain, wb.path FROM wp_bp_user_blogs b, wp_blogs wb, wp_bp_user_blogs_blogmeta bm1 WHERE b.blog_id = wb.blog_id AND b.blog_id = bm1.blog_id AND bm1.meta_key = 'name' AND wb.deleted = 0 AND wb.spam = 0 AND wb.mature = 0 AND wb.archived = '0' AND b.user_id = 11 ORDER BY b.blog_id made by require, require_once, include, get_footer, locate_template, load_template, require_once, wp_footer, do_action, call_user_func_array, bp_core_admin_bar, do_action, call_user_func_array, bp_adminbar_blogs_menu, bp_blogs_get_blogs_for_user, BP_Blogs_Blog->get_blogs_for_user
    [12-May-2012 21:27:39] WordPress database error MySQL server has gone away for query SELECT COUNT(DISTINCT b.blog_id) FROM wp_bp_user_blogs b LEFT JOIN wp_blogs wb ON b.blog_id = wb.blog_id WHERE wb.deleted = 0 AND wb.spam = 0 AND wb.mature = 0 AND wb.archived = '0' AND user_id = 11 made by require, require_once, include, get_footer, locate_template, load_template, require_once, wp_footer, do_action, call_user_func_array, bp_core_admin_bar, do_action, call_user_func_array, bp_adminbar_blogs_menu, bp_blogs_get_blogs_for_user, BP_Blogs_Blog->get_blogs_for_user, BP_Blogs_Blog->total_blog_count_for_user
    [12-May-2012 21:27:39] WordPress database error MySQL server has gone away for query SELECT * FROM wp_bp_notifications WHERE user_id = 11 AND is_new = 1 made by require, require_once, include, get_footer, locate_template, load_template, require_once, wp_footer, do_action, call_user_func_array, bp_core_admin_bar, do_action, call_user_func_array, bp_adminbar_notifications_menu, bp_core_get_notifications_for_user, BP_Core_Notification->get_all_for_user
    [12-May-2012 21:27:39] WordPress database error MySQL server has gone away for query SELECT user_id, user_login, user_nicename, display_name, user_email, meta_value as caps FROM wp_users u, wp_usermeta um WHERE u.ID = um.user_id AND meta_key = 'wp_2_capabilities' ORDER BY um.user_id made by require, require_once, include, get_footer, locate_template, load_template, require_once, wp_footer, do_action, call_user_func_array, bp_core_admin_bar, do_action, call_user_func_array, bp_adminbar_authors_menu
    corbettbarr
    Member

    Anyone else have ideas on this email issue? The messages are not being sent by BuddyPress as far as I can tell. I’ve searched the maillog file and nothing shows up in the WHM mail delivery reports.

    Why is BuddyPress not sending the @mention and comment notifications?

    corbettbarr
    Member

    Hey @djpaul any updates on this? Other ideas or places to look for the cause?

    corbettbarr
    Member

    I’ve looked in /var/log/maillog (on linux) and don’t see evidence that the messages have been sent.

    Should I look somewhere else?

    Paul Wong-Gibbs
    Keymaster

    Do you know for certain that the emails aren’t being *sent*, or are they not bring received?

    #133313
    Will
    Member

    Hi @mercime – thank you for your reply.

    I think I wasn’t so clear. I want to receive notifications but I wouldn’t like to be notified when someone else reply a comment where I was mentioned. That’s make sense? :P

    E.g. @userx post a comment mentioning me. Every time someone reply HIS comment I got an notification.

    I would like to be notified when someone mention me or reply an update mine but wouldn’t like to be notified when someone reply an update where I was mentioned.

    Any ideas on that? Thanks!

    #133312
    @mercime
    Participant

    Go to your Settings > Notifications panel and click on “No” radio button for “A member mentions you in an update using @wceolin ” and/or “A member replies to an update or comment you’ve posted” which are set to Yes by default.

    #131035
    yadigit
    Participant

    I do have a script for that. But the javascript does effect the BP notifications… that’s the only problem. I’ll be more then happy to send you the script. @jasonbrodbeckcom, I don’t use it for that reason but let me see if I can find it again.

Viewing 25 results - 201 through 225 (of 329 total)
Skip to toolbar