There are many reasons why this might occur, that are site specific. This is not a known error with bbpress and more likely to be related to either the set up of your site, or 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
Health Check & Troubleshooting
If that does not point to the error, then I’d suggest you contact your host provider for help.
I found a plugin that affects this. It’s Advanced Custom Fields Pro. I don’t have any additional fields (ACF), just installed plugin. I created empty site and installed plugins.
Also tried with Free version of ACF and it the same. Could you check this conflict?
STR:
1. Install and activate bbPress
2. Install and activate Advanced Custom Fields (Free or Pro)
3. Open Dashboard → Replies → Add new reply
Expected result: page with creating a new reply
Actual result: 500 error and error about memory leak in php logs
I tried this hack
add_action('all', function($tag) {
static $count = 0;
if (strpos($tag, 'acf') !== false && $count++ > 300) {
error_log('ACF hook overflow: ' . $tag);
exit;
}
});
and it response:
[17-Apr-2025 10:10:24 UTC] ACF hook overflow: gettext_acf
I’m also facing the same issue. When I open Dashboard → Replies → Create new reply, it returns Server Error 503. When I disable ACF(free version), it’s back to normal without error.
This post suggests it has been an issue for a while
Not working with ACF Pro 6.2.8 version.
seems to suggest an issue since version 6.0.5
I’d suggest you raise it again with ACF
Contact
I wrote to support and to the ACF forum. Let’s wait for an answer.
thanks, please do post back their response to help others here