Forum Replies Created
-
On a multisite install, as @pcwriter stated here : https://buddypress.org/support/topic/user-marked-as-spammer-how-do-i-un-mark-them-as-a-spammer/
In your WP dashboard, go to “Users” and check the box next to the name of the user highlighted in red. Then, select “Not Spam” from the “Bulk Actions” dropdown (top or bottom of your user list). Click “Apply”. Should do it.
It worked for me! Until when?
Also, Vince Pettit suggested a plugin here https://wordpress.stackexchange.com/a/60583/152860
We are using this wordpress plug in – New User Approve
Provides functionality to approve/deny new user registrations.
Haven’t tried it yet, but it’s probably the best long-term solution.
On a multisite install, as @pcwriter stated here : https://buddypress.org/support/topic/user-marked-as-spammer-how-do-i-un-mark-them-as-a-spammer/
In your WP dashboard, go to “Users” and check the box next to the name of the user highlighted in red. Then, select “Not Spam” from the “Bulk Actions” dropdown (top or bottom of your user list). Click “Apply”. Should do it.
It worked for me! Until when?
Also, Vince Pettit suggested a plugin here https://wordpress.stackexchange.com/a/60583/152860
We are using this wordpress plug in – New User Approve
Provides functionality to approve/deny new user registrations.
Haven’t tried it yet, but it’s probably the best long-term solution.
I know this is an old question, but it is good practice to simply avoid the final closing PHP tag (which is ?> and not >? !) in script to prevent the possibility of any extra output. Yes, a new line is actually a character (even 2 characters if your file was edited in Windows)!
A common cause for the same error is saving a text file in UTF-8 with BOM, an invisible character sequence at the start of the text file used to mark the character encoding (Windows Notepad can do it!). Make sure your editor doesn’t write a BOM when saving.
Here is the solution for forcing BP uploads form every MULTIBLOG-enable network sites to be stored on (and fetched from) the main site : https://buddypress.trac.wordpress.org/ticket/6931#comment:1
To put it simple, simply create a file wp-content/plugins/bp-custom.php and paste in the code from this gist: https://gist.github.com/imath/91d56292673e6de61597
The code speaks for itself.
I haven’t figured out for profile header image yet, but you will find solutions for centralizing avatar storage on MULTIBLOG-enabled BP networks here: https://buddypress.org/support/topic/multiblogmultisite-avatar-missing/
Basically, if you want to use avatars from the main site, you can just add this to your wp-config.php:
define( 'BP_AVATAR_UPLOAD_PATH', dirname(__FILE__).'/wp-content/uploads' ); define( 'BP_AVATAR_URL', '//'.$_SERVER['HTTP_HOST'].'/wp-content/uploads' );
If you want to use avatars from another site, you will likely need to add the site’s upload path (eg. ‘/sites/2’) to both paths.