Search Results for 'test'
-
AuthorSearch Results
-
November 11, 2020 at 2:20 pm #215845
In reply to: login issues
Robin W
Moderatorhmmm…. 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?
November 11, 2020 at 1:55 pm #215844In reply to: login issues
kylewhenderson
ParticipantThe 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.
November 11, 2020 at 12:15 pm #215840In reply to: Missing “All Replies” Page
Robin W
Moderatorit 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
Then come back
November 11, 2020 at 12:15 pm #215839In reply to: Clicking “Subscribe” gives error “undefined”
Robin W
Moderatorit 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
Then come back
November 11, 2020 at 12:13 pm #215838In reply to: bbp_forum_get_subforums() returns empty array
Robin W
Moderatorjust 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 functionIf 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
Then come back
November 10, 2020 at 5:45 pm #215816In reply to: Topics do not work unless permalinks are flushed
knelsonkris
ParticipantThank 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
November 10, 2020 at 4:58 pm #215815In reply to: Topics do not work unless permalinks are flushed
Robin W
Moderatorit 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
Then come back
November 10, 2020 at 1:25 pm #215807In reply to: Cannot set new password when editing profile
Robin W
ModeratorI 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?
November 10, 2020 at 5:20 am #215796In reply to: Why cant receive email
Robin W
Moderator1. 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
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 !
November 10, 2020 at 3:52 am #215790Topic: Why cant receive email
in forum Troubleshootingclarkma
ParticipantI 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!
November 6, 2020 at 4:13 pm #215740In reply to: Can AJAX be enabled for bbPress?
berry metal
ParticipantThe 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.
November 6, 2020 at 4:45 am #215715Topic: bbPress 2.2.6 – Upgrade Forums
in forum Requests & FeedbackChuckie
ParticipantHi !
Thanks for latest version.
Do I need to run any of these tools?
It is not clear to me.
November 2, 2020 at 1:44 pm #215610In reply to: Registration, No password
Robin W
Moderatorok, 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
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 !
November 2, 2020 at 12:53 pm #215607In reply to: Missing Submit Button for Reply to Topic
Robin W
Moderatorlooks 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
November 2, 2020 at 4:26 am #215593In reply to: Lost Right Sidebar
Robin W
Moderatorhmm.. 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
November 2, 2020 at 4:23 am #215592In reply to: Registration, No password
Robin W
Moderatorjust tested and I got two emails
one as you described, and the second with a password link.
November 1, 2020 at 2:52 pm #215576In reply to: Private forum
Chad
ParticipantI’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
October 31, 2020 at 11:42 pm #215573Topic: Registration, No password
in forum InstallationStephen
ParticipantHi 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.comis there ment to be a password, or a link to create a password?
WordPress 5.5.1
bbPress 2.6.5October 28, 2020 at 7:25 am #215499Topic: Know all the features
in forum Requests & Feedbackalexisfontana
ParticipantHello,
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 topicThank you in advance for your contributions.
We look forward to hearing from you,
October 27, 2020 at 2:56 pm #215493In reply to: Forum description
Robin W
Moderatorcan 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
October 27, 2020 at 1:31 pm #215485In reply to: bbp-search on a single forum
Robin W
Moderatorjust tried that code on my test site and it works fine.
where are you putting it ?
October 27, 2020 at 12:05 pm #215484In reply to: Import Failure from PHPBB3 to BBPress
authgabor
ParticipantHi,
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 AuthOctober 27, 2020 at 7:05 am #215479In reply to: bbp-search on a single forum
talbotp
ParticipantHey 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.
October 25, 2020 at 5:16 pm #215436In reply to: Removing Entry Page Title on Forum Index Page
Robin W
Moderatorok, 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
October 24, 2020 at 11:54 am #215408In reply to: bbPress registration email confirmation
Robin W
Moderatorbbpress 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
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 !
-
AuthorSearch Results