Search Results for 'test'
-
AuthorSearch Results
-
September 14, 2019 at 1:05 pm #203338
ginaginagina
ParticipantHey Robin and everyone else who might read this! I thought I would post the really simple solution! After TONS of staging site/plugin/permissions/theme/cache/etc. tests, Robin, you were right about it being in the “dashboard>settings>discussion settings” area — it was my list of moderated (blacklisted) words that was causing things not to work. It’s unfortunate, since I definitely don’t want instances of “www” or “.com” or “dot com” showing up in forum posts by people who are trying to bypass spam filters, but I had to remove those from the moderation list because I didn’t realize that it affects anyone who is writing a post on the site. From the description above the moderation field a comment that includes any of the blacklisted or moderated words that not only are included in the post, but also come from the “…name, URL, email, or IP address” of the poster, will be held for moderation (or deleted, in the case of blacklisting). Since everyone coming to our site has www or https or http or .com or something along those lines in their login info/email address, there’s no way to stop comments that include those since it also stops all users who are registered on our site via an email address. Once I removed those phrases from my moderation list and blacklist, we’re able to post freely and immediately (at least it looks like for now!).
While I really regret that we can’t blacklist/moderate *just* the posts/replies that contain phrases like .com or www etc., it’s still great to find the problem — thank you, Robin!
September 14, 2019 at 11:26 am #203327In reply to: bbPress 2.6 Release Candidate 3
hashtagtrends
ParticipantHi. What is the expected timing for 2.6?
I recently installed BBPress and was surprised the latest version for installation was 2.5.14. I also get a notice that the plugin “has not been tested with your current version of WordPress.”
Performance/speed is important to me, and last I looked into it 2.6 was supposed to be a big improvement.
September 10, 2019 at 4:19 pm #203214In reply to: All topics are shown in all forums
Robin W
Moderatorhmm, without a link all I can suggest is
1. Are you creating them as super sticky ?
2. 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.
Then come back
September 8, 2019 at 4:16 pm #203130In reply to: Breadcrumbs not appearing in forums or topics
ginaginagina
ParticipantHey Robin! I found it (hallelujah and thank you for your help!). There was a tiny setting deep in the recesses of the Avada theme that was causing these to not show up (I had been trying to work with their support team, too, but they kept telling me it was bbPress ;). Just for anyone else that finds this issue in Avada, you have to scroll to the bottom of your forum page when you are in edit mode to Avada Options > Page Title Bar > Show Bar and Content (or just “Show Content”) then adjust from there!
Good grief. Such grief. Ha ha. Now to find out why posts are not publishing from anyone other than me and being held in “moderation”. May need to hire a developer on this one, as I’m testing permissions wide open on staging and still can’t get it to go! Ah. Websites. 😉
Thanks, Robin
September 8, 2019 at 1:03 pm #203128In reply to: Breadcrumbs not appearing in forums or topics
Robin W
ModeratorA default theme with just bbpress shows these, so it is either theme or plugin related – I can only suggest
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.
Then come back
September 7, 2019 at 11:58 am #203119In reply to: 403 Error 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.
Hoster
If that doesn’t work, talk to your hosting company
September 3, 2019 at 1:59 pm #203011In reply to: 403 Forbidden Error after Installation
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.
Then come back
September 2, 2019 at 5:03 am #202997Robin W
Moderatorok, I can’t guarantee that the alternate template will work in all circumstances, if you want to try further
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.
Then come back
August 29, 2019 at 5:48 pm #202943In reply to: New site admin, no keymaster role
Robin W
Moderatorok, the fix strategy would be
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.
But I would start wth User Role editior – that looks a likely suspect
August 29, 2019 at 1:04 pm #202940Robin W
Moderatorok, just tested this on my test site, and it works fine.
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.
Then come back
August 21, 2019 at 1:13 pm #202772Robin W
Moderatorok, as a product you can do
add_action( 'digimember_purchase', 'digitest_purchase', 10, 4 ); function digitest_purchase( $user_id, $product_id, $order_id, $reason ) { switch ($reason) { case 'order_paid': // handle paid orders here if ($product_id == '12') { update_user_meta ($user_id , 'private_group' , '*group1*') ; } break; case 'order_cancelled': if ($product_id == '12') { delete_user_meta ($user_id , 'private_group' ) ; } break; case 'payment_missing': // handle missing rebilling payment here break; } }where in this case ’12’ is the product id of the subscription product
time period and other conditionals are I’m afraid well beyond free help
August 20, 2019 at 10:49 am #202730Robin W
Moderatoryes, that is helpful
so this code will add a user to private group 1 on paying membership, and take them out on cancellation
add_action( 'digimember_purchase', 'digitest_purchase', 10, 4 ); function digitest_purchase( $user_id, $product_id, $order_id, $reason ) { switch ($reason) { case 'order_paid': // handle paid orders here update_user_meta ($user_id , 'private_group' , '*group1*') ; break; case 'order_cancelled': delete_user_meta ($user_id , 'private_group' ) ; break; case 'payment_missing': // handle missing rebilling payment here break; } }Put this in your child theme’s function file – or use
Then set up forums so that group 1 users can access the forum, and everyone else just see it
August 20, 2019 at 7:19 am #202728Topic: Log in and password reset doesn’t work
in forum Installationadelheid41
ParticipantWhen I use the widget or the recover password one, from a test user account, I get the answer:
Forbidden
You don’t have permission to access /wp-login.php on this server.Apache/2.4.37 (Debian) Server at thewisdomfactory.net Port 80
What does that mean and what do I need to do to make it work?
August 19, 2019 at 10:28 am #202698Robin 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.
Then come back
August 19, 2019 at 10:27 am #202697In reply to: Cant reply on my own Thread
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.
Then come back
August 17, 2019 at 2:49 pm #202664Topic: Deleted Topics show count in Forums Admin
in forum Troubleshootingdwcouch
ParticipantI’m setting up a new site and have been testing registration and forums workflows.
In an effort to reset the site back to 0 content – I deleted all test users and their topics in BBPress. After deleting all topics, I went to the trash and deleted them permanently.
Topics now shows nothing. However the number of topics still show up in the topics column in forums admin.
August 17, 2019 at 1:11 pm #202661In reply to: WordPress Database Error post_type = ‘forum’
Robin W
ModeratorI’d suggest that as a test you deacativate LearnDash & bbPress Integration nand see if the error persists, from the link I can’t tell what is sending this code
August 15, 2019 at 11:31 am #202411In reply to: Fix for PHPBB3 to BBPress conversion script
wurkagency
ParticipantYou might as well stop it. It’ll fail in between, so take the latest version which works out. 🙂
August 15, 2019 at 10:34 am #202390In reply to: Fix for PHPBB3 to BBPress conversion script
lantaarntje
ParticipantOk thanks ! at this moment i’m converting again ( attempt 213237218378237 ) if it fails i try your latest one.
August 15, 2019 at 4:01 am #202340In reply to: bbp private group isse?
schossie
ParticipantHi Robin,
update:
I was just testing the forum again to see if it still works. In the beginning it did. I could post in all the forums and after 2-3 posts also the freshness/latest activity returned to “no topics”. Then after I posted around 15 test topics in all the different forums with different test users. It suddenly stopped working again. The latest activity widget didnt show any info anymore and all the topics I had written and were accessible for other members just a minute ago where not anymore…August 12, 2019 at 10:43 am #202263Robin W
Moderatorhmm, I can only suggest that
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.
Then come back
August 10, 2019 at 7:58 pm #202233ginaginagina
ParticipantWordpress 5.2.2
bbPress 2.5.14
URL: forums are private, so URL won’t be helpful.There’s no button or link to approve anything in my forums. Everything’s just pending. In the past, I replies showed up (when we first installed this; we haven’t used it in a long time, and just getting back into getting these set up). When I click to preview the replies/topics, they are just titles, nothing is written about the topic. We’re testing the forums with my team, so I know each team member wrote something and submitted it — they didn’t just write a title. Additionally, each of them are moderators, wouldn’t their posts just go through since they have the power to approve posts, too (or should, if this was working)?
What is happening? Why:
-
is nothing showing up for the content part of their replies and topics
-
why aren’t their posts going through automatically (since they are moderators)
-
why can I not — as the admin/keymaster, see the “approve” link?
Here’s a screenshot:
August 10, 2019 at 5:06 am #202219In reply to: Import BB data from CSV file to bbPress forum
designserve
ParticipantI installed the following plugin on my dev site:
https://wpfavs.com/plugins/import-export-for-bbpress
Export is working perfectly (latest wordpress and bbpress).
Import not working at all but I might be doing something wrong. Very disappointing because this plugin looks so promising.
Giving up for now, I hope this helps someone I’ll actively update this if I make any progress.
August 9, 2019 at 5:43 pm #202211In reply to: Migration and Export
designserve
ParticipantThanks I actually feel better too that I have some company!
So, so many late nights. I’m looking at very old plugins and searching around the Internet at the moment. Wondering whether to try installing old versions of wordpress and bbpress so that they will work with old plugins, and then transfer to the latest bbpress somehow. I’ve been scraping my sites to get the CSVs and now I can’t import them, I actually can’t believe the situation I’m in. I decided on bbpress with buddypress for my new system last year and I’ve spent months setting it up, I can’t bear to start from scratch again.
Thanks for listening 🙂
August 7, 2019 at 12:56 pm #202141John James Jacoby
KeymasterYou may want to try the latest 2.6 release candidate instead:
It includes a few changes to how stickies are queried, and may fix this problem for you.
-
AuthorSearch Results