Got a bug report. Need help with something? Ask here.
To file a bug report or help request visit the forum tab and scroll to the new post bit.
PHP updates and fixing BuddyPress Follow
August 4, 2025 in bugs by Matthew Brown
BuddyPress Follow is a plugin we use to enable you to follow rather than “friend” each other. Sadly, it is not PHP 8 ready. This was holding us back both in terms of security and speed.
Today, I fixed that.
It was a four-line fix, which I shared here.
Find line 133 in buddypress-followers/_inc/bp-follow-widgets.php
add_action( 'widgets_init', create_function( '', 'return register_widget("BP_Follow_Following_Widget");' ) );
Then write this instead:
function BP_Follow_Following_Widget_init_func(){ register_widget("BP_Follow_Following_Widget"); } add_action( 'widgets_init', 'BP_Follow_Following_Widget_init_func' );
The reason this works is that the function create_function()
was removed in PHP 8 and was deprecated in 7.4 or thereabout.
Also, this post is the first to use the new Open Mention Tag Patterns. These are dead simple one-line paragraphs with hyperlink templates which can be used to tag your content in OpenMentions, which will ping via WebMention. Your post will then (eventually) be listed on OpenMentions.com.
By default, the writing patterns are enabled for all, but you can add dreamlogging templates if you admin a blog here and want to. You can find the code here. While, yes, you can just grab a link and use it, I think the Patterns are one step easier. Edit as you wish.
The next line was the Pattern:
This is a WordPress Development post.
Fixes and tweaks
June 15, 2025 in bugs by Matthew Brown
In this morning’s dev notes, we have a patched potential security vulnerability and some CSS tweaks to do with sign up.
First, the scary-sounding one. I patched a possible security hole. Some core site functionality was being provided by a deprecated and retired plugin. A patched version exists, but it has a slightly different name (an extra “s” on the end). As a result, automatic updates had been failing. I moved us to the new version without any loss of functionality or fuss.
Now for the signup-related tweaks. I fixed two open issues.
The “register” button, shown when you are not logged in, did not look nice. It was big and had awful margins going on. (A known problem) I reduced its padding to half an em and added a margin of the same amount. I think it looks better now, but I am open to feedback.
The signup form was given a light dusting. There are a couple of fields in that form for spam bots, not humans. I changed the behaviour of the page so people are no longer shown the spammer traps when signing up.
All of those fixes were because I am working on an admin tool to help deal with bot-made spam user accounts. I’m almost ready to test the first iteration.
FAIR package manager
June 12, 2025 in features by Matthew Brown
The Linux Foundation has announced the FAIR package manager for WordPress. This will be an independent and neutral plugin and theme package manager.
One of the features of FAIR is the ability to deactivate Gravatar avatars, which means a slightly reduced privacy leak (depending on how much you trust Gravatar).
As a result, I’m carefully considering making the switch for all sites with Author Buzz UK. Thoughts and opinions gladly received.
A few small display bugs
May 5, 2025 in bugs by Matthew Brown
I’m currently tracking a few small bugs with the site.
- The register button needs to go on a diet (not-logged in view).
- Forum topics (but not replies) are MIA for no good reason.
I do not have an ETA on fixing all the bugs because I am yet to figure out what caused them.
The Online Safety Act 2023
March 13, 2025 in uncategorised by Matthew Brown
The Online Safety Act 2023 comes into force Monday. This should be a good thing except that I now have to do a mountain of paperwork (correctly on the first try) to basically say, “yes, we moderate and no dangerous content is hosted here”.
Failure to do this could land a lot of fines in my direction. I hope this does not force me to shut down Author Buzz, but I do know that I will fight to keep us open and online.
Who knows what happens next?
Blog Activity
-
Matthew Brown wrote a new post on the site Author Buzz Developer Blog 7 years, 10 months ago
For a project for a writers’ group called Sunday writers, I spent most of yesterday making a game – Word Bingo. I wrote the code in one day, this is how.
The idea was not one that I came up with, the host of […]
-
Matthew Brown wrote a new post on the site Author Buzz Developer Blog 7 years, 10 months ago
We have identified a possible fault with the sign-up process for Author Buzz. It only affects people signing up with email but not with WordPress.com.
The fault appears to be that the email for new accounts […]
-
Matthew Brown wrote a new post on the site Author Buzz Developer Blog 7 years, 11 months ago
Today was nothing if not frustrating. I spent hours looking for ways to set up a simple user-badges system and got nowhere fast.
Given the huge number of pre-existing plugins that cover this task, I thought […]
-
Matthew Brown wrote a new post on the site Author Buzz Developer Blog 7 years, 11 months ago
This post, unlike most of our dev posts, is not about Author Buzz but about some software that I hope will be hosted on Author Buzz one day.
About three years ago I realised that if I was going to make it as a […]
-
Matthew Brown wrote a new post on the site Author Buzz Developer Blog 8 years ago
We’ve put our dev blog on a news footing. As part of our efforts to make sure that blog beta users get a great selection of themes, we have updated the dev blog with a new theme.
While this might not be the […]