Search Results for 'test'
-
AuthorSearch Results
-
July 30, 2025 at 3:21 pm #245752
In reply to: Show only Ipv4 addresses to moderators
sbask
ParticipantTried it out on our testsite and when I click on anything to do with comments it errors out.
There has been a critical error on this website.
July 30, 2025 at 3:23 am #245738In reply to: Show only Ipv4 addresses to moderators
Robin W
Moderatorok, so we can hide the ip6, but getting the ip4 is harder i think.
I found this post relating to Cloudfare which tends to indicate that even an ip4 might be just a Cloudflare address, but I only spent 2 minutes reading though !!
https://wordpress.org/support/topic/real-ip-for-the-customers-cloudflare/
so to hide an IP6, try this (untested!)
add_filter ('bbp_get_author_ip', 'rew_hide_v6') ; function rew_hide_v6 ($author_ip='') { if ($strlen($author_ip)>20) $author_ip='' ; return $author_ip ; }Put this in your child theme’s function file –
ie wp-content/themes/%your-theme-name%/functions.php
where %your-theme-name% is the name of your theme
or use
Let me know if it works
July 21, 2025 at 5:07 pm #245649Robin W
ModeratorEvery website is a unique combination of hoster, operating and hosting systems (eg apache, PHp) WordPress theme, plugins, settings and content, so I cannot just give you an answer.
So between ‘some time ago’ (days? weeks? years?) and now – what has changed on your site?
If you cannot answer that, then I can only suggest the core fault finding viz..
it could be a theme or plugin issue
Themes
As a test switch to a default theme such as twentytwenty, 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
July 18, 2025 at 12:22 pm #245616In reply to: “Replies Created” & “Topics Started” 404 URL Error
John James Jacoby
Keymaster@hardel The fixes that were recommended in the ticket you linked to are pretty-much identical to what is now in 2.6.14.
If that worked for you then, 2.6.14 should work now, but only as long as you aren’t still running the old temporary fix code at the same time.
(I’ve tested a few different ways & installs, and the latest BuddyPress & bbPress are working together as intended for me.)
The URLs being generated are different from what I originally posted four years ago.
They both still look the same to my eyes, but I will believe you 🤣
July 13, 2025 at 4:16 am #245526In reply to: Permalinks in replies lead to the wrong page
Robin W
Moderatorok, I am not a bbpress author, just someone who tries to help out.
So it’s Sunday morning here in the UK, and I have guests coming for lunch, so I will try and pick this up later.
But let’s just eliminate some stuff.
1.
dashboard>settings>permalinks and just click save – this resets the permalinks and may help
2.
it could be a theme or plugin issue
Themes
As a test switch to a default theme such as twentytwenty, 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
July 11, 2025 at 5:45 am #245480In reply to: Site broken after update to v2.6.14
Robin W
ModeratorRegistered members on the Forum can still see the “Contact” Link below people’s Avatars and I have just tested using a identity I use for testing and have successfully sent a PM to myself as Administrator – this instantly showed “You have 1 message unread” on my Administrator identity and clicking on the link has taken me to the message and all previous messages, just as it always has.
That is not from the private groups plugin That plugin has nothing to do with messaging.
If you care to list the ‘forum type’ plugins you are using, then I might be able to say which is doing this.
July 11, 2025 at 5:00 am #245479In reply to: Site broken after update to v2.6.14
finallyfoundausernamenotusedbefore
ParticipantThanks once again for your quick response.
Yes, am happy with most of what you say but somehow the “bbP private groups” plugin does seem to be in some form of limbo. It currently shows “bbP private groups” as disabled on the Plugins page but it is definitely still active. Registered members on the Forum can still see the “Contact” Link below people’s Avatars and I have just tested using a identity I use for testing and have successfully sent a PM to myself as Administrator – this instantly showed “You have 1 message unread” on my Administrator identity and clicking on the link has taken me to the message and all previous messages, just as it always has. So everything seems to still be there despite the pligin showing itaself as disabled (i.e. it shows links for Activate and Delete).
I need to find a way to properly disable/remove this plugin – one option open to me is to delete the plugin but I fear doing that could make things worse.
Any suggestions welcome.
John
July 11, 2025 at 4:28 am #245478In reply to: Site broken after update to v2.6.14
Robin W
Moderatorok, if the private groups plugin is not showing as active in
dashboaard>plugins
then it is not active.
Deactivating/reactivating a plugin may have fixed an issue
The 3 you have left are because these plugins need the authors to fix the issue, or if you are not at latest versions, you to update them.
Simple lightbox
welcome email editor
constructionsThese errors will not cause your site to fail but will do in some later version of WordPress : WordPress will eventually chnage these form a ‘Notice’ error to a ‘Critial’ error, but that may be years away (or next week!)
If everything else is working, then I’d suggest you just switch off the error display, and enjoy your site
July 9, 2025 at 3:08 am #245446Robin W
Moderator1. yes, this is the intended behavior
2. yes, that behavior is set by a function which is called by an action, so we can remove it, and do something else.so untested, but this should work
remove_action( 'bbp_template_redirect', 'bbp_forum_enforce_blocked', 1 ); add_action( 'bbp_template_redirect', 'rew_forum_enforce_blocked', 1 ); function rew_forum_enforce_blocked() { // Bail if not logged in or keymaster if ( ! is_user_logged_in() || bbp_is_user_keymaster() ) { return; } // Set 404 if in bbPress and user cannot spectate if ( is_bbpress() && ! current_user_can( 'spectate' ) ) { //DON'T DO THE SET 404 ie this is the code that the default bbp_forum_enforce_blocked does //bbp_set_404(); // DO SOMETHING ELSE HERE! } }What the something else is, you will need to decide
Put this in your child theme’s function file –
ie wp-content/themes/%your-theme-name%/functions.php
where %your-theme-name% is the name of your theme
or use
3. I can’t say what the original authors intentions were, but I suspect yes
July 7, 2025 at 1:31 pm #245430In reply to: Unable to update forum topic from Admin screens
Robin W
Moderatorby the way, I tried your long post on my test site, and it worked ok.
July 6, 2025 at 7:02 am #245396In reply to: Unable to update forum topic from Admin screens
hollandnumerics
ParticipantI have caused an updated topic to fail when saving. The “test” topics all state that a critical error has occurred, but no emails are detected.
Now you are a blog member, please feel free to post a new topic
July 6, 2025 at 6:19 am #245394In reply to: Unable to update forum topic from Admin screens
hollandnumerics
ParticipantCheck Email installed. It defaults to local sendmail, instead of installed Postman SMTP that uses smtp.officce365.com. However:
This test email proves that your WordPress installation at https://hollandnumerics.org.uk can send emails. Sent: Sun, 06 Jul 2025 10:10:50 +0000
July 5, 2025 at 4:27 pm #245393In reply to: Unable to update forum topic from Admin screens
Robin W
Moderatoremail does not have to match, but lots of things in between the send and recieve can jink emails they consider spam or suspicious.
So if you are not getting the error emails, can I suggest you install
and use this to test emails, and if the site attempts to send an email, the email logs can tell you what it tried to send.
July 5, 2025 at 10:57 am #245384In reply to: Unable to update forum topic from Admin screens
hollandnumerics
ParticipantHowever, in Troubleshooting Mode, updated topic “test 3” is being shown correctly.
Active plugins: bbPress and bbp style pack
July 5, 2025 at 10:50 am #245383In reply to: Unable to update forum topic from Admin screens
hollandnumerics
ParticipantAbout Holland Numerics: Blog and Forums. › Forums › SAS Skills Discussion Forum (non-programming) › test 3
| Subscribe Favourite
There has been a critical error on this website.Learn more about troubleshooting WordPress.
July 5, 2025 at 5:37 am #245376In reply to: Unable to update forum topic from Admin screens
hollandnumerics
ParticipantFYI in issue #1 the post, when viewed, is empty whether the body contains table tags or not:
test 1:
<table><tbody><tr><td>hello</td></tr></tbody></table>
test 2:
hello
This is in Troubleshooting Mode with only bbpress and bbp style pack active.
July 3, 2025 at 5:48 pm #245357In reply to: Website Critical Error
Robin W
ModeratorDoes this occur anytime you try and access the forum page?
if so, it could be a theme or plugin issue
Themes
As a test switch to a default theme such as twentytwenty, 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
July 3, 2025 at 1:10 pm #245353In reply to: Unable to update forum topic from Admin screens
Robin W
Moderatorok, I’m a bit lost as to what your testing is showing.
The essence of fault finding is taking a setup that works and finding the difference between that and one that doesn’t work.
so I have a test site working with bbpress and style pack and nothing else. If your site with that same setup doesn’t work, then we can find the difference.
If it does work, then yes adding back plugins until it fails is a good strategy, but until we are both seeing the same, then it is not doing much good?
July 3, 2025 at 12:29 pm #245352In reply to: Unable to update forum topic from Admin screens
Robin W
Moderatorok, so this on my test site with just bbpress and style pack, using admin and keymaster roles publishes fine
<table> <tbody> <tr> <td> hello </td> </tr> </tbody> </table>do you still get a critical error with this combination, and if so I still need the exact error it produces
July 3, 2025 at 7:33 am #245346In reply to: Unable to update forum topic from Admin screens
Robin W
Moderatorthanks, and for your testing, what combination are you using?
I’m not asking you to try others levels, just getting your tests and my tests to be the same !
July 3, 2025 at 5:42 am #245341In reply to: Unable to update forum topic from Admin screens
hollandnumerics
Participant- I have tried Troubleshooting mode, with no active plugins.
- Activated bbPress, then bbp style pack.
- Topic “test 1” now displays, but body shows “This topic is empty”, even though the HTML tags are seen when the topic is edited.
Do I need to activate more plugins?
I have the following bbp-related plugins installed:
bbp-valoration
Version 0.1.1 by Eric Zeidan | Auto-updates enabledbbPNNS Private Groups Bridge
Version 1.5.1.1 by Vinny Alves (UseStrict Consulting) | Auto-updates disabledbbP private groups
Version 3.9.7 by Robin Wilson | Auto-updates enabledbbPress
Version 2.6.14 by The bbPress Contributors | Auto-updates disabledbbPress Move Topics
Version 1.1.6 by Pascal Casier | Auto-updates enabledbbPress Notify (No-Spam)
Version 2.19.3 by Vinny Alves (UseStrict Consulting) | Auto-updates disabledbbpress Simple View Counts
Version 0.2 by jezza101 | Auto-updates enabledbbPress Votes
Version 1.2.5 by G.Breant | Auto-updates enabledbbp style pack
Version 6.3.9 by Robin Wilson | Auto-updates disabledbbp User Ranking
Version 3.7 by Robin Wilson | Auto-updates enabledJuly 2, 2025 at 12:30 pm #245318In reply to: Unable to update forum topic from Admin screens
hollandnumerics
ParticipantFYI I also created a topic “test 2”, that includes “hello”, but no table tags:
The response is the same as with topic “test 1”.
July 2, 2025 at 10:49 am #245315In reply to: Unable to update forum topic from Admin screens
hollandnumerics
ParticipantHi @robin-w,
This topic saved, but viewing it showed the following page:
About Holland Numerics: Blog and Forums. › Forums › test 1
| Subscribe Favourite
There has been a critical error on this website.Learn more about troubleshooting WordPress.
July 1, 2025 at 4:12 pm #245302In reply to: Unable to update forum topic from Admin screens
Robin W
Moderatorok, so in the backend if I create a topic with a title of ‘test’ and this content
<table> <tbody> <tr> <td> hello </td> </tr> </tbody> </table>Then it publishes all fine.
Does that work for you, and if so, can you give me exact steps to recreate problem.
Also able to edit that topic so changed hello to goodbye and it updated fine
July 1, 2025 at 9:51 am #245297Topic: Unable to update forum topic from Admin screens
in forum Troubleshootinghollandnumerics
ParticipantWP: 6.8.1 (latest).
bbPress: 2.6.13 (latest).
bbPress Move Topics 1.1.6 (latest).
bbp style pack: 6.3.9 (latest).
themes: Twenty Fifteen and Twenty Twenty-five.
site: https://hollandnumerics.org.ukForum topic contains <TABLE>, <TBODY>, <TR> and <TD> HTML tags.
- Able to edit title, body, tags in Forum Topic.
- Clicking [Update] starts update.
- Edit viewer disappears and Post list appears.
- Forum Topic is unchanged.
- No error messages.
Have also tried moving Topic to Page, but this fails to change type.
Creating new Forum Topic with copy of body text also does not complete. -
AuthorSearch Results