Forum Replies Created
-
In reply to: How can I see members IP adress?
https://bbpress.org/plugins/topic/nospamuser/
bbPress doesn’t store IP addresses of users when they register. The Project Honey Pot plugin will block the spammers from every page on your forum, including the login page, so there’s no reason to worry.
In reply to: emoticons questionI’m pretty sure the old plugin still works. With the upcoming bbPress plugin version, emoticons will be handled by WordPress.
In reply to: emoticons questionI’m pretty sure the old plugin still works. With the upcoming bbPress plugin version, emoticons will be handled by WordPress.
In reply to: Custom forum template like forum-ID.php – possible?That should be fine.
In reply to: Custom forum template like forum-ID.php – possible?That should be fine.
In reply to: How can I see members IP adress?If you have Akismet and Bozo Users installed, spam users will automatically be marked as bozos when they register. If you’re looking a way to check IPs in Project Honey Pot’s database, try my plugin Project Honey Pot for bbPress. For any silent spam bots registered before you install the plugin, skim through your user list. Spam bot usernames, websites, and email addresses are usually pretty noticeable.
In reply to: How can I see members IP adress?If you have Akismet and Bozo Users installed, spam users will automatically be marked as bozos when they register. If you’re looking a way to check IPs in Project Honey Pot’s database, try my plugin Project Honey Pot for bbPress. For any silent spam bots registered before you install the plugin, skim through your user list. Spam bot usernames, websites, and email addresses are usually pretty noticeable.
In reply to: Warning/Deprecated Errorhttps://trac.bbpress.org/browser/trunk/bb-load.php#L25 – here’s an even better solution.
error_reporting(E_ERROR | E_WARNING | E_PARSE | E_USER_ERROR | E_USER_WARNING);
allows us to avoid new error messages if PHP adds new error types in the future.In reply to: Warning/Deprecated Errorhttps://trac.bbpress.org/browser/trunk/bb-load.php#L25 – here’s an even better solution.
error_reporting(E_ERROR | E_WARNING | E_PARSE | E_USER_ERROR | E_USER_WARNING);
allows us to avoid new error messages if PHP adds new error types in the future.In reply to: bbPress 2.0 – UpdatesMotaBoy, yes, in Settings -> Forums.
In reply to: bbPM privileges — Need a function for premium users.While I can say that this will almost definitely not appear in the bbPress standalone version of bbPM, I’m currently porting bbPM to the bbPress plugin, so I’ll try to implement this in an upcoming version.
In reply to: bbPM privileges — Need a function for premium users.While I can say that this will almost definitely not appear in the bbPress standalone version of bbPM, I’m currently porting bbPM to the bbPress plugin, so I’ll try to implement this in an upcoming version.
In reply to: bbPress 2.0 – UpdatesMark,
body[class*=single-bbp], body[class*=page-template-page-bbp]
(or if you’re feeling ambitious,body[class*=bbp]
) should match bbPress plugin pages. User profile pages currently use the body class for 404 pages, which is a bug.In reply to: Weird header codeFind this line and make sure it says
error_reporting(E_ERROR | E_WARNING | E_PARSE | E_USER_ERROR | E_USER_WARNING);
In reply to: Weird header codeFind this line and make sure it says
error_reporting(E_ERROR | E_WARNING | E_PARSE | E_USER_ERROR | E_USER_WARNING);
Your host might be blocking the
mail()
function, or your email could have been mistakenly marked as spam.Your host might be blocking the
mail()
function, or your email could have been mistakenly marked as spam.In reply to: Using MediaWiki user database to log in?Theoretically, you can use anything for authentication by overriding the
bb_check_login
function.In reply to: Using MediaWiki user database to log in?Theoretically, you can use anything for authentication by overriding the
bb_check_login
function.In reply to: Custom forum template like forum-ID.php – possible?You could use the same method with a little tweak:
$forum = bb_get_forum();
if ( $forum->forum_slug == 'myforum' ) {
bb_load_template( 'forum-myforum.php' );
return;
}In reply to: Custom forum template like forum-ID.php – possible?You could use the same method with a little tweak:
$forum = bb_get_forum();
if ( $forum->forum_slug == 'myforum' ) {
bb_load_template( 'forum-myforum.php' );
return;
}In reply to: Custom forum template like forum-ID.php – possible?I don’t think bbPress can do this in its current version (IIRC), but what you can do is put something like this at the top of your forum template:
if ( get_forum_id() == 7 ) {
bb_load_template( 'forum-7.php' );
return;
}And then copy the forum template (minus the added lines) to
forum-7.php
and edit it as you want to.In reply to: Custom forum template like forum-ID.php – possible?I don’t think bbPress can do this in its current version (IIRC), but what you can do is put something like this at the top of your forum template:
if ( get_forum_id() == 7 ) {
bb_load_template( 'forum-7.php' );
return;
}And then copy the forum template (minus the added lines) to
forum-7.php
and edit it as you want to.In reply to: How can i upload my plugin?Upload them via FTP, the same way you uploaded bbPress core.
Edit: If you meant to the plugin repository, there’s a big button in the upper right to request commit access.
In reply to: How can i upload my plugin?Upload them via FTP, the same way you uploaded bbPress core.
Edit: If you meant to the plugin repository, there’s a big button in the upper right to request commit access.