Search Results for '\"wordpress\'
-
Search Results
-
Topic: Admin Link in Sidebar
Hi everyone, I just started a site that uses WP and BBP together, and aside from a few outstanding issues, things are working out nicely.
I built a theme for the forum that matches the WP theme, and it has a sidebar. When the user is logged in, it shows Welcome [username] and shows the avatar, a link to edit profile, my favorites, and log out.
How can I have if the keymaster/admin/mod is logged in, a link to the dashboard? I tried some code from the default template, but nothing really seems to give me a direct link to admin. Is there a templates tag list for bbpress like the one for wordpress?
Hi, I’m trying to integrate bbPress with Buddypress using the guide here: http://theeasybutton.com/blog/2009/07/17/integrating-buddypress-wordpress-mu-and-bbpress/
I have done this successfully on my localhost, but trying to do on on our host’s webspace is proving difficult.
The integration of cookies works fine, but when I add a group to Buddypress, where is should normally say:
“Enable discussion forum”
It says:
“Attention Site Admin: Group forums require the correct setup and configuration of a bbPress installation.”
This is the part where a forum should automatically be created for the group. The passwords match up, the only difference I can see is one is using localhost and the other is using external webspace. Our host don’t allow us to set a folder to have 777 file permissions, which I thought could be the problem?
My question is, does the bbpress folder need 777 permissions for it to integrate successfully this way, or should I be looking somewhere else for the problem?
Thanks
I formerly had login integration working between wordpress and bbpress, but it stopped when I upgraded to bppress 1.0. For wordpress I’m on version 2.8.3. Perhaps i did something incorrectly. These keys are not present in the bb-config.php file.
BB_AUTH_KEY
BB_SECURE_AUTH_KEY
BB_LOGGED_IN_KEY
BB_NONCE_KEY
I added them to the bb-config.php file from the wp-config file. All the salt keys match the ones in wordpress, and I checked the meta table in the db to be sure.
i added the following line to wp-config and bb-config
define( ‘COOKIEPATH’, ‘/lhw/’ );
Is it possible that bbpress wasn’t installed correctly to use the new security features? Any suggestions?
Hi everyone,
I’m seriously considering dropping FluxBB (that i’m currently using for a large messageboard) and using BBPress.
I would stop using FLuxBB for various reasons (mostly because i feel like FluxBB isn’t really alive anymore development-wise and also because i’ve been using wordpress for many many years and really digg the WP/BBpress community & coding) but… i was wondering is BBPress would do the job for a large messageboard with many users and connections everyday ?
I’ve tested BBPress many times, installed the latest version again yesterday for a test run and tested many plugins, tried customizing themes to see if it would fit my needs etc. and it looks sweet but there’s one thing i can’t tell: would BBPress work fine with many users ? Would it be just as good and even better than FluxBB once i’ve installed the plugins needed and export everything from FluxBB to BBPress ?
Do any of you use BBPress with hundreds of users on a daily basis ? It is running smoothly ? Is it responsive and fast ? It is made to work with huge amount of users and connections ?
Thanx for your feedback. I’d really appreciate any experience you have / had.
I’m trying to get the wordpress functions inside of bbPress and vice versa, and therefore get the buddypress functions into bbPress as well. I tried the method described here: http://labs.b5media.com/blog/creating-the-anypress-solution/ but to no avail. In short, it involves adding this code to the bottom of my bb-config.php file:
// Include WordPress functionality
$currDir = dirname(getcwd());
// Make sure this isn't install or admin (go up if it is)
if(!file_exists("$currDir/wp-blog-header.php"))
$currDir = dirname($currDir);
if(!file_exists("$currDir/wp-blog-header.php"))
die("Cannot find WordPress integration files.");
error_reporting(E_ALL);
require_once("$currDir/wp-blog-header.php");The only clues I have from my error logs are a 404 error and a white screen of death when I try to access my forum root, which is at /community. Also, my rewrite log is here: http://pastebin.ca/1572291
Please note that im using an external install of bbPress intentionally because I need the forums to be centrally located and somewhat separate from my blog. Any insight or help would be greatly appreciated!
Hi I want to make my bb press forum the same as my wordpress page.
Is there and easy way to do this?
thanks
John
Hello,
I’m planning to using bbPress on a WP site/blog I am currently working on, on my local. WordPress is up and running already, a relatively clean install save for a couple of themes, and some entries. No plugins yet. I download bbPress, upload it underneath my WP root directory (where the blog is), change config to match WP config (for my local it’s just changing out the database name; I have a username/password account set up already for each of test installs), and try to install. I get:
DB Error: cannot select
…on all pages. I’ve looked at both bb-config and wp-config and the database values are identical, except for the suffix variable naturally. I’ve checked the database, only wp_* tables are there. I am using a fresh bbPress download.
Just for completeness’ sake (comments removed for brevity):
bb-config.php excerpt:
/** The name of the database for bbPress */define('DB_NAME', 'pugad-lawin');
/** MySQL database username */
define( ‘BBDB_USER’, ‘username’ );
/** MySQL database password */
define( ‘BBDB_PASSWORD’, ‘password’ );
/** MySQL hostname */
define( ‘BBDB_HOST’, ‘localhost’ );
/** Database Charset to use in creating database tables. */
define( ‘BBDB_CHARSET’, ‘utf8’ );
/** The Database Collate type. Don’t change this if in doubt. */
define( ‘BBDB_COLLATE’, ” );
/** snip snip **/
/**
* bbPress Database Table prefix.
*
* You can have multiple installations in one database if you give each a unique
* prefix. Only numbers, letters, and underscores please!
*/
$bb_table_prefix = ‘bb_’;
wp-config.php excerpt:
/** The name of the database for WordPress */define('DB_NAME', 'pugad-lawin');
/** MySQL database username */
define(‘DB_USER’, ‘username’);
/** MySQL database password */
define(‘DB_PASSWORD’, ‘password’);
/** MySQL hostname */
define(‘DB_HOST’, ‘localhost’);
/** Database Charset to use in creating database tables. */
define(‘DB_CHARSET’, ‘utf8’);
/** The Database Collate type. Don’t change this if in doubt. */
define(‘DB_COLLATE’, ”);
/** snip snip **/
/**
* WordPress Database Table prefix.
*
* You can have multiple installations in one database if you give each a unique
* prefix. Only numbers, letters, and underscores please!
*/
$table_prefix = ‘wp_’;
Again, I have a username/password user setup on my local MySQL database for testing purposes, so yes, it is expected that those will be staying the same.
Any info on this would be great. Thanks!
Since WordPress is open source, maintaining cookie/user integration is definitely possible.