Search Results for 'register'
-
Search Results
-
Hi,
I have installed bbpress, works great. Now I want to install another bbpress in a subdirectory, but this bbpress has to use the users from the first bbpress install. This is possible, but how do I do this?
And how does this affect the forums and user registration from the bbpress 2 install? Will an admin from forum 1 also be admin on forum 2? And will a banned user be banned on both forums?
It would be great if I could make use of just 1 user db, so everyone can login on all my forums on my server and don’t need to register for each forum seperately. But an admin from forum 1 musn’t be admin on forum 2 and banned users should only be banned at the forum they are banned from.
Hope you guys understand what I mean!
Greetz,
Can’t login or register in bbpress after installing and integrating with WordPress MU. WordPress MU works fine.
I have read through everything, I have tried everything, and I am still not able to login or register in bbpress.
I have missed something and I need help figuring out what. It is making me crazy!
Any Help woudl be MUCH appreciated.
Here is the config file:
<?php
// ** MySQL settings ** //
define(‘BBDB_NAME’, ‘XXXXXX’); // The name of the database
define(‘BBDB_USER’, ‘XXXXXX’); // Your MySQL username
define(‘BBDB_PASSWORD’, ‘XXXXXX’); // …and password
define(‘BBDB_HOST’, ‘XXXXXX’); // 99% chance you won’t need to change this value
// Change the prefix if you want to have multiple forums in a single database.
$bb_table_prefix = ‘mp_’; // Only letters, numbers and underscores please!
// If your bbPress URL is http://bbpress.example.com/forums/ , the examples would be correct.
// Adjust the domain and path to suit your actual URL.
// Just the domain name; no directories or path. There should be no trailing slash here.
$bb->domain = ‘http://www.XXXXXX.com’; // Example: ‘http://bbpress.example.com’
// There should be both a leading and trailing slash here. ‘/’ is fine if the site is in root.
$bb->path = ‘/forums/’; // Example: ‘/forums/’
// What are you going to call me?
$bb->name = ‘XXXXXX’;
// This must be set before running the install script.
$bb->admin_email = ‘admin@XXXXXX.com’;
// Set to true if you want pretty permalinks.
$bb->mod_rewrite = false;
// The number of topics that show on each page.
$bb->page_topics = 30;
// A user can edit a post for this many minutes after submitting.
$bb->edit_lock = 15;
// Your timezone offset. Example: -7 for Pacific Daylight Time.
$bb->gmt_offset = -7;
// Change this to localize bbPress. A corresponding MO file for the
// chosen language must be installed to bb-includes/languages.
// For example, install de.mo to bb-includes/languages and set BBLANG to ‘de’
// to enable German language support.
define(‘BBLANG’, ”);
// Your Akismet Key. You do not need a key to run bbPress, but if you want to take advantage
// of Akismet’s powerful spam blocking, you’ll need one. You can get an Akismet key at
// http://wordpress.com/api-keys/
$bb->akismet_key = false;
// The rest is only useful if you are integrating bbPress with WordPress.
// If you’re not, just leave the rest as it is.
$bb->wp_table_prefix = ‘mp_’; // WordPress table prefix. Example: ‘wp_’;
$bb->wp_home = ‘http://www.XXXXXX.com’; // WordPress – Options->General: Blog address (URL) // No trailing slash
$bb->wp_siteurl = ‘http://www.XXXXXX.com’; // WordPress – Options->General: WordPress address (URL) // No trailing slash
define(‘CUSTOM_USER_TABLE’, ‘mp_users’);
define(‘CUSTOM_USER_META_TABLE’, ‘mp_usermeta’);
/* Stop editing */
define(‘BBPATH’, dirname(__FILE__) . ‘/’ );
require_once( BBPATH . ‘bb-settings.php’ );
?>
Topic: Anonymous post
Is it possible to make Anonymous post in bbpress? so users not have to register
when i try to register a new member, i cant receive the password from email….
also, when i want to recover a password, i cant receive it too….
someone can help??????thanks a lot!!!!!!
Topic: New install with weird stats
I just found and installed bbPress today. I was surprised at how well it went. Now I am familiarizing myself with it currently I have two oddities that I do not understand. I tried looking at the docs but they seem limited at the time. Please feel free to direct me if I am mistaken.
1) users registered for -1 year. both of my users registered today have this. Seems odd. I can’t find anywhere to manipulate this
2) weird stats. Below is what it says in my dashboard
* Posts per day: 44.132
* Topics per day: 11.033
* Registrations per day: 22.066
* Forums started 2 hours ago.
I tried doing a post recount thinking it may reset this.
any ideas?
thanks
Topic: User management, WP and BBP
I am setting up a web site that has two main groups of users: The (WP) blog editors, and the readers, who are supposed to be able to make contributions through comments or in the forums. The registered WP users can use the bbPress forum seamlessly, however, there’s a bit of a problem on the other end, with the users who first register themselves in bbPress. It seems that when someone registers as a bbPress user, they are also automatically a WP user. This would be fine and dandy, if only their user level was set low enough to keep them out of the WP backend. But it doesn’t work like that. I’ve set the default user role for new users to “Subscriber”, but something in the communication between bbP and WP goes wrong, and they are granted some mutation of the administrator role instead: They aren’t able to publish, or edit posts from users with a higher level, but they can edit each others drafts, and they can change both their own and others user levels and passwords. Or edit the templates.
So what I want is a way for registered WP-users to flow freely into bbPress, but not vice versa. I don’t want the forums users in the WP dashboard area at all. I’ve tried the bbpress-integration.php-plugin, but it doesn’t seem to make any difference, its only option is to set the bbPress prefix to bb_ (the bbP-tables already has this).