Search Results for 'code'
-
Search Results
-
Please see error code below.
2025-10-03 11:35:01 Error 77.44.13.228 500 GET /wp-admin/post-new.php?post_type=reply HTTP/1.0 https://www.domainname.org/wp-admin/edit.php?post_type=reply Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/140.0.0.0 Safari/537.36 5.70 K Apache SSL/TLS access
2025-10-03 11:35:06 Error 77.44.13.228 AH01071: Got error ‘PHP message: PHP Fatal error: Uncaught Error: Maximum call stack size of 8339456 bytes (zend.max_allowed_stack_size – zend.reserved_stack_size) reached. Infinite recursion? in /var/www/vhosts/domainname.org/httpdocs/wp-content/plugins/bbpress/bbpress.php:169\nStack trace:\n#0 /var/www/vhosts/domainname.org/httpdocs/wp-content/plugins/bbpress/includes/replies/template.php(35): bbPress->__get()\n#1 /var/www/vhosts/domainname.org/httpdocs/wp-content/plugins/bbpress/includes/common/template.php(461): bbp_get_reply_post_type()\n#2 /var/www/vhosts/domainname.org/httpdocs/wp-content/plugins/bbpress/includes/replies/template.php(544): bbp_is_reply()\n#3 /var/www/vhosts/domainname.org/httpdocs/wp-includes/class-wp-hook.php(324): bbp_get_reply_title_fallback()\n#4 /var/www/vhosts/domainname.org/httpdocs/wp-includes/plugin.php(205): WP_Hook->apply_filters()\n#5 /var/www/vhosts/domainname.org/httpdocs/wp-includes/post-template.php(174): apply_filters()\n#6 /var/www/vhosts/domainname.org/httpdocs/wp-content/plugins/bbpress/includes/topics/template.php(603)…’, referer: https://www.domainname.org/wp-admin/edit.php?post_type=reply
Anyone from BBPress help me with this?
Hi, I’m using this code from @stagger-lee to enable ability to create featured images in topics:
When ever I create featured image, they all come out to 400px by 400px. Is there a way to set the featured images to a different size, such as 600px by 400px?
Thank you for any suggestions.
Topic: change background color
I’m usually ok with using css in my child theme, but struggling with this.
I need to change the background color only of the sticky topics area here:
https://www.lifeleap.org/community/forums/forum/lifeleap-cafe/lifeleap-institute-related/
I have the background color set with this css (even and odd):
#bbpress-forums ul.odd
But I just can’t figure out how to change background color only on the sticky topics.
Thanks for any suggestions.
When a user quotes another post using the quote button, their post shows the bbcode as plain text. I tried to recreate the issue on my end with a test account (non-admin) in incognito mode, and was not able to recreate the issue. Any idea what could be causing it? (example linked below)
Wordpress version: 6.8.2
bbPress version: 2.6.14
Link: example post with issueI have this css in my child theme css file:
.bbp-topics ul.sticky .bbp-author-avatar { display: none !important; }
But it doesn’t hide the avatar. Any suggestions on how to get this to work properly?
I get this warning in Search Console…
More than 2,000 of your forum pages are missing structured data for discussion forums. Once implemented, Google can identify and display related online discussions on your site in relevant search results features.
And it redirects me to this guide:
Is there anything I can do?
I have disabled all plugins other than buddypress and bbpress.
Issue requires both to enabled. buddypress by itself does not cause this.I am seeing this VERY HIGH log spam on every page load:
Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the
bbpress
domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at theinit
action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in …/wp-includes/functions.php on line 6121Hello
My question is:
In the addressIn the issue
25.Restricting User Access to the WordPress backendAdd this PHP code snippet so that only users who can only edit posts can access the WordPress admin section.
Which was introduced to prevent the logged-in user from accessing the counter of the following code/**
* Redirect back to homepage and not allow access to
* WP backend for Subscribers.
*/
function rkk_redirect_admin(){
if ( ! current_user_can( ‘edit_posts’ ) ){
wp_redirect( site_url() );
exit;
}
}
add_action( ‘admin_init’, ‘rkk_redirect_admin’ );The code works fine, but the bug is that:
Although it appears to prevent a common user from accessing the WordPress dashboard, the same user can easily bypass the code ban and log in to the dashboard by opening a new tab in the browser and entering the address
https://wordpress.org/wp-admin/
in that tab and pressing Enter. This is the bug in the above code.
The question is:
How can I change the above code to prevent the trick of logging into the dashboard as described above?Thank you in advance for your advice.