Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'test'

Viewing 25 results - 1,001 through 1,025 (of 11,578 total)
  • Author
    Search Results
  • #215845

    In reply to: login issues

    Robin W
    Moderator

    hmmm…. not how it works in my test site.

    The bit about some wp login plugin that you have deacivated?? can you explain more about that?

    #215844

    In reply to: login issues

    kylewhenderson
    Participant

    The bbPress Login Widget, upon submitting username/password simply redirects to /wp-login.php where the user has to again submit the username/password. It simply doesn’t log the user in at all. I have tested this with a fresh WP install with the default theme and only bbPress running. See video demo here: https://drive.google.com/file/d/17gdtsNw401_ZYt2PcFKtyrO5rA49HGxg/view

    Let me know if you have any questions – happy to provide any info to debug.

    OP: Let us know if this is this same issue you are having or if this is a different issue.

    #215840
    Robin W
    Moderator

    it could be a theme or plugin issue

    Themes

    As a test switch to a default theme such as twentyfifteen, and see if this fixes.

    Plugins

    If that doesn’t work, also deactivate all plugins apart from bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.

    If you cannot do this to your site (say because it is live) then use the ‘troubleshooting’ features of this plugin to let you test without affecting other users

    Health Check & Troubleshooting

    Then come back

    #215839
    Robin W
    Moderator

    it could be a theme or plugin issue

    Themes

    As a test switch to a default theme such as twentyfifteen, and see if this fixes.

    Plugins

    If that doesn’t work, also deactivate all plugins apart from bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.

    If you cannot do this to your site (say because it is live) then use the ‘troubleshooting’ features of this plugin to let you test without affecting other users

    Health Check & Troubleshooting

    Then come back

    #215838
    Robin W
    Moderator

    just tried it on my website, and that code works fine.

    3 possibilities

    1. the 90 is wrong
    2. the 90 forum does not have sub forums
    3. some other code is filtering the bbp_forum_get_subforums function

    If you are happy it is not 1 or 2, then it could be a theme or plugin issue

    Themes

    As a test switch to a default theme such as twentyfifteen, and see if this fixes.

    Plugins

    If that doesn’t work, also deactivate all plugins apart from bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.

    If you cannot do this to your site (say because it is live) then use the ‘troubleshooting’ features of this plugin to let you test without affecting other users

    Health Check & Troubleshooting

    Then come back

    #215816
    knelsonkris
    Participant

    Thank you! The problem is I cannot predict when the issue will occur. I do not know exactly how to duplicate the problem – only notice that is seems to occur around WordPress updates.

    Do you haves you other way to test?

    Thanks

    #215815
    Robin W
    Moderator

    it could be a theme or plugin issue

    Themes

    As a test switch to a default theme such as twentyfifteen, and see if this fixes.

    Plugins

    If that doesn’t work, also deactivate all plugins apart from bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.

    If you cannot do this to your site (say because it is live) then use the ‘troubleshooting’ features of this plugin to let you test without affecting other users

    Health Check & Troubleshooting

    Then come back

    #215807
    Robin W
    Moderator

    I have just tried it on my test site with WordPress 5.5.3 with bbPress 2.6.6, and it changed fine with no issues.

    so you go into the edit, and click ‘generate password’ and then type in a paswword and click update Profile and that works.

    Is this what you are trying?

    #215796

    In reply to: Why cant receive email

    Robin W
    Moderator

    1. You should be aware that many spam filters strip messages that do not come from the correct address. So if your site is mysite.com and your email address
    in wordpress settings>general is fred@gmail.com then it is likely that messages will be dumped in transit.
    You need to set up email to come from your site eg fred@mysite.com, your hosting provider can help if needed.
    2. Just bbpress?
    Then you need to see if this is wordpress wide or just bbpress.
    Try https://wordpress.org/plugins/check-email/

    it could be a theme or plugin issue

    Themes

    As a test switch to a default theme such as twentyfifteen, and see if this fixes.

    Plugins

    If that doesn’t work, also deactivate all plugins apart from bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.

    If you cannot do this to your site (say because it is live) then use the ‘troubleshooting’ features of this plugin to let you test without affecting other users

    Health Check & Troubleshooting

    Next try switching to smtp email – this page from the host Siteground explains it

    https://www.siteground.co.uk/tutorials/wordpress/use-smtp/

    If you choose other SMTP servers as a mailer, then you email/website hoster shoud be able to give you details of what to enter

    and of course

    By default, you do NOT receive emails for your own topics/replies, only if somebody else replies on your subscribed topics

    so testing would need two email accounts to prove !

    #215790
    clarkma
    Participant

    I build bipeoplemeet with bbpress plugin for my site. After finishing, i begin to test registrationprocess, but can not receive the password link. How to solve this issue? Please help me!

    #215740
    berry metal
    Participant

    The reason is hard for me to debug this issue is that I am using this code to output a bbpress topic under each post that has the same name as the current post title:

    add_shortcode( 'bbpresscomments', function() {
        $output     = '';
        $current_id = function_exists( 'vcex_get_the_ID' ) ? vcex_get_the_ID() : get_the_ID();
        $topics = new WP_Query( array(
            'post_type' => 'topic',
            'posts_per_page' => -1,
            'fields' => 'ids',
        ) );
        if ( $topics->have_posts() ) {
            foreach( $topics->posts as $topic ) {
                if ( get_the_title( $topic ) == get_the_title( $current_id ) ) {
                    $output .= do_shortcode( '[bbp-single-topic id="' . intval( $topic ) . '"]' );
                }
            }
        }
        return $output;
    } );

    This code is theme specific, so testing with an other theme doesn’t make sense in this case.
    I will open now a ticket to my theme developer, but if you can see anything in this code that would make AJAX not work, please let me know.

    Thanks.

    #215715
    Chuckie
    Participant

    Hi !

    Thanks for latest version.

    Do I need to run any of these tools?

    View post on imgur.com

    It is not clear to me.

    #215610
    Robin W
    Moderator

    ok, yes bbpress just uses wordpress registration

    it could be an email issue – email is notoriously difficult to get consistent – many email companies see wordpress emails as spam.

    so I’d try the following which is my standard email advice:

    1. You should be aware that many spam filters strip messages that do not come from the correct address. So if your site is mysite.com and your email address
    in wordpress settings>general is fred@gmail.com then it is likely that messages will be dumped in transit.
    You need to set up email to come from your site eg fred@mysite.com, your hosting provider can help if needed.
    2. Just bbpress?
    Then you need to see if this is wordpress wide or just bbpress.
    Try https://wordpress.org/plugins/check-email/

    it could be a theme or plugin issue

    Themes

    As a test switch to a default theme such as twentyfifteen, and see if this fixes.

    Plugins

    If that doesn’t work, also deactivate all plugins apart from bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.

    If you cannot do this to your site (say because it is live) then use the ‘troubleshooting’ features of this plugin to let you test without affecting other users

    Health Check & Troubleshooting

    Next try switching to smtp email – this page from the host Siteground explains it

    https://www.siteground.co.uk/tutorials/wordpress/use-smtp/

    and of course

    By default, you do NOT receive emails for your own topics/replies, only if somebody else replies on your subscribed topics

    so testing would need two email accounts to prove !

    #215607
    Robin W
    Moderator

    looks like a css issue.

    if this is a new installation (that is submit has never shown) then it could be a theme or plugin issue

    Themes

    As a test switch to a default theme such as twentyfifteen, and see if this fixes.

    Plugins

    If that doesn’t work, also deactivate all plugins apart from bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.

    If you cannot do this to your site (say because it is live) then use the ‘troubleshooting’ features of this plugin to let you test without affecting other users

    Health Check & Troubleshooting

    #215593

    In reply to: Lost Right Sidebar

    Robin W
    Moderator

    hmm.. not really a bbpress issue, and nothing has changed in bbpress recently.

    it could be a theme or plugin issue

    Themes

    As a test switch to a default theme such as twentyfifteen, and see if this fixes.

    Plugins

    If that doesn’t work, also deactivate all plugins apart from bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.

    If you cannot do this to your site (say because it is live) then use the ‘troubleshooting’ features of this plugin to let you test without affecting other users

    Health Check & Troubleshooting

    #215592
    Robin W
    Moderator

    just tested and I got two emails

    one as you described, and the second with a password link.

    #215576

    In reply to: Private forum

    Chad
    Participant

    I’ve tried testing this plugin out as I have the same need to provide roles for forum visibility as well. Unfortunately, I seem to be running into various errors. I’m running v5.5.3. The following is an example output:

    Notice: Undefined variable: subs_check in /var/www/html/wp-content/plugins/bbp-private-groups/includes/meta-box.php on line 296

    Warning: Cannot modify header information – headers already sent by (output started at /var/www/html/wp-content/plugins/bbp-private-groups/includes/meta-box.php:296) in /var/www/html/wp-admin/post.php on line 231

    Warning: Cannot modify header information – headers already sent by (output started at /var/www/html/wp-content/plugins/bbp-private-groups/includes/meta-box.php:296) in /var/www/html/wp-includes/pluggable.php on line 1296

    Warning: Cannot modify header information – headers already sent by (output started at /var/www/html/wp-content/plugins/bbp-private-groups/includes/meta-box.php:296) in /var/www/html/wp-includes/pluggable.php on line 1299

    #215573
    Stephen
    Participant

    Hi there All,
    I have enabled new registrations, by creating a registration page. and use the shortcode [bbp-register].

    however, when I test this in incognito, I do received the email to complete my registration but it only contains

    Username: john###
    Email: john###@gmail.com

    is there ment to be a password, or a link to create a password?

    WordPress 5.5.1
    bbPress 2.6.5

    #215499
    alexisfontana
    Participant

    Hello,

    I would like to know if your extension allows you to do these things :
    – Create a group to join (administrator approval to join) to view certain topics
    – Ability to move a topic from one group to another
    – In topics, that members can share photo and video content and links in addition to text.
    – In the member’s space, possibility to create a photo album with the modification of the privacy of this album
    – Show the latest topics at the top
    – Ability to alert an administrator if content needs to be reported
    – Online chat to exchange between members
    – Being able to vote for a message in a topic

    Thank you in advance for your contributions.

    We look forward to hearing from you,

    #215493

    In reply to: Forum description

    Robin W
    Moderator

    can only suggest it could be a theme or plugin issue

    Themes

    As a test switch to a default theme such as twentyfifteen, and see if this fixes.

    Plugins

    If that doesn’t work, also deactivate all plugins apart from bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.

    If you cannot do this to your site (say because it is live) then use the ‘troubleshooting’ features of this plugin to let you test without affecting other users

    Health Check & Troubleshooting

    #215485
    Robin W
    Moderator

    just tried that code on my test site and it works fine.

    where are you putting it ?

    #215484
    authgabor
    Participant

    Hi,

    I experienced the same issue when I tried to import from latest phpBB forum, the users and the password didn’t come through the import… :/

    Maybe the user related tables changed in the 3.3.x phpBB?

    Bye,
    Gábor Auth

    #215479
    talbotp
    Participant

    Hey Robin, Thanks for the reply, really appreciate it. I added this to my themes functions.php (from the article above), but hardcoded in a forum_id, just to test it out, and it doesn’t seem to work.

    
    function my_bbp_filter_search_results( $r ){
        $forum_id = 1715;
    
        if( $forum_id && is_numeric( $forum_id ) ){
     
            $r['meta_query'] = array(
                array(
                    'key' => '_bbp_forum_id',
                    'value' => $forum_id,    // 1715 x , 11 , 1717 , 
                    'compare' => '=',
                )
            );
             
        }
    
        error_log('Dedicated forum = ' . $forum_id);
     
        return $r;
    }
    add_filter( 'bbp_after_has_search_results_parse_args' , 'my_bbp_filter_search_results' );
    

    the error log is coming through when the page is loaded, but i’m still getting discussions from other forums in the search results.

    #215436
    Robin W
    Moderator

    ok, can only suggest you try this, and then discuss with your theme author

    it could be a theme or plugin issue

    Themes

    As a test switch to a default theme such as twentyfifteen, and see if this fixes.

    Plugins

    If that doesn’t work, also deactivate all plugins apart from bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.

    If you cannot do this to your site (say because it is live) then use the ‘troubleshooting’ features of this plugin to let you test without affecting other users

    Health Check & Troubleshooting

    #215408
    Robin W
    Moderator

    bbpress registration just uses wordpress registration, so likely a site/wordpress issue

    copy/paste of my standard advice on email – hopefully it will help

    1. You should be aware that many spam filters strip messages that do not come from the correct address. So if your site is mysite.com and your email address
    in wordpress settings>general is fred@gmail.com then it is likely that messages will be dumped in transit.
    You need to set up email to come from your site eg fred@mysite.com, your hosting provider can help if needed.
    2. Just bbpress?
    Then you need to see if this is wordpress wide or just bbpress.
    Try https://wordpress.org/plugins/check-email/

    it could be a theme or plugin issue

    Themes

    As a test switch to a default theme such as twentyfifteen, and see if this fixes.

    Plugins

    If that doesn’t work, also deactivate all plugins apart from bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.

    If you cannot do this to your site (say because it is live) then use the ‘troubleshooting’ features of this plugin to let you test without affecting other users

    Health Check & Troubleshooting

    Next try switching to smtp email – this page from the host Siteground explains it

    https://www.siteground.co.uk/tutorials/wordpress/use-smtp/

    and of course

    By default, you do NOT receive emails for your own topics/replies, only if somebody else replies on your subscribed topics

    so testing would need two email accounts to prove !

Viewing 25 results - 1,001 through 1,025 (of 11,578 total)
Skip to toolbar