Skip to:
Content
Pages
Categories
Search
Top
Bottom

Users cannot upload photos

Published on October 17th, 2021 by emptox

Hi,

I can upload a picture without any problems as an admin of the site. But when the user wants to upload a picture this happens: After submitting they are sent to a page with the failure text saying:

“Warning: Undefined variable $reply_author_id in /customers/c/d/0/xxxxx/httpd.www/wp-content/plugins/bbpress-notification/bbpress-notification.php on line 377 Warning: Cannot modify header information – headers already sent by (output started at /customers/c/d/0/xxxxx/httpd.www/wp-content/plugins/bbpress-notification/bbpress-notification.php:377) in /customers/c/d/0/xxxxx/httpd.www/wp-includes/pluggable.php on line 1340 Warning: Cannot modify header information – headers already sent by (output started at /customers/c/d/0/xxxxx/httpd.www/wp-content/plugins/bbpress-notification/bbpress-notification.php:377) in /customers/c/d/0/xxxxx/httpd.www/wp-includes/pluggable.php on line 1343”

If the user then goes one page back, and is on the forum page where the image should be (still not showing as uploaded) and refresh the page, then the picture is there. Just to underline. I have tried deactivating all other plugins, but it still happens and my web supporter cant solve it either. What to do?

Thanks in advance for your help.

Portion not translated

Published on October 16th, 2021 by mariaat

Portion not translated.

Trying to figure out why part of the translation isn’t showing up. It concerns the Legend part. In the PO file it’s translated. Anyone an idea what’s wrong? See image.

https://mariaat.nl/forum-Legend.png

I can’t limit the number of replies shown on a page

Published on October 16th, 2021 by aksoysanat

Hello, thank you in advance for your help.

Using the options in the bbPress settings section, I can limit the number of topics that appear on a page, but I cannot limit the number of replies.

I’m using the bbp style pack plugin but I didn’t see anything there that regulates this feature.

What could be causing this problem?

Recent Topics widget uses H2, but Recent Replies widget uses H4

Published on October 15th, 2021 by Toby Cryns (@themightymo)

Hello. Is there a reason why the Recent Topics widget uses H2, but the Recent Replies widget uses H4 in the widget titles? Fwiw, there’s also different markup/classes on the titles of those widgets. I guess if I were to make this into a request it would be: Can we standardize the widget title html markup?

Thanks y’all!

-Toby

Is there a way to make the Topic ui cleaner?

Published on October 15th, 2021 by enli10

Hello I just created my Forum site. I noticed how the create new Topic Ui looks not very user-friendly with that [Strong] things. is there a way or Plugin that makes that cleaner?

bbPress forum under attack!

Published on October 15th, 2021 by TeqToo

I’m on bbPress 2.6.6, WordPress 5.8.1, and the site is http://bluebirdnut.com/forums/.
I had another SPAM attack last night, this time in the main forum. Hundreds of posts were made, all filled with what looked like Chinese characters. After the last attack, I set flood control at 90 seconds. Whatever or whoever made this attack managed to make it by just waiting 90 seconds between posts. I only caught it because I woke up at 4AM and checked my email and found a new participant had signed up for the forum. I UNchecked the box to “Automatically give registered visitors the
Participant forum role”, which the documentation says will force me to manually assign all user access to your forums. But the new user was able to post without my having approved his role as a participant. I’ve now installed a reCaptcha plugin, but I don’t understand why the settings I’ve specified are being ignored.
Oh, and when I checked the user’s profile (before deleting it) it was able to assign itself the MODERATOR role in addition to participant! I had to disable the plugin in the middle of the night in order to stop the attack. And the IP address of both this attack and the previous one (which I reported in this forum, but didn’t receive a single reply) resolved to the West coast of the US, not China.

Forum role drop-down missing in admin WP profile

Published on October 13th, 2021 by angelfire4xx

Hi, I had to restore this in phpmyadmin usermeta after a glitch that caused me to lose my admin privileges
a:2:{s:13:”administrator”;b:1;s:13:”bbp_keymaster”;b:1;}

Since then my WP profile page no longer shows the forum role drop-down. This happens just for my profile (I am Admin) and no-one else’s. In the forums my profile is still showing as Keymaster.

It’s not a major issue but I was wondering if there is something else that got corrupted in the database, and how to track it down.

WordPress 5.8.1

bbpress development

Published on October 8th, 2021 by ABDURHMAN

Good night …
How is everyone ..
Why not develop the extension to be an integrated forum system
More advanced forums and sections system
A system of powers and observers
Membership and group system
The system of titles and ranks for memberships
Search engine compatibility system
Friend links
Many things need to be developed in addition
I hope to see it in the next releases

Akismet causing “recent topics” problem?

Published on October 6th, 2021 by sbask

So we’ve been having this issue for the last few months where the “Recently Active Topics” includes anonymous posts which cannot be accessed by normal users or methods because they have been automatically deleted as spam:

How do we get the site not to include these spam posts as “recently active”?

Topic only shows while logged in

Published on October 6th, 2021 by NeoTechni

Using this code I am able to programmatically create a forum post, but it only shows to users who are logged in (when using the bbp-single-topic shortcode) How can I get that topics to show while logged out?


	function createforumpost($text, $forums_id, $unique_id, $fighter_name = false){
		if(is_null($forums_id) || !$forums_id){
			if(!$fighter_name){
				$fighter_name	= explode("-", $unique_id);
				foreach($fighter_name as $index => $word){
					$fighter_name[$index] = ucfirst($word);
				}
			}
			$forum_post = array(
			  'post_title'    	=> $fighter_name,
			  'post_content'  	=> $text,
			  'post_name'	  	=> $unique_id,
			  'post_status'   	=> 'publish',
			  'comment_status'	=> 'closed',
			  'post_type'		=> 'topic',
			  'post_parent'		=> 75857,
			  'post_author'   	=> 1,
			);
			$forum_post["ID"] = wp_insert_post($forum_post);
			return $forum_post["ID"];
		}
		return $forums_id;
	}
Skip to toolbar