Search Results for '"wordpress'
-
Search Results
-
I had my WordPress installed by fantastico automatically. Therefore, the AUTH_KEY, SECURE_AUTH_KEY, and LOGGED_IN_KEY were all different. When bbPress asked me for the SECRET_KEY, I put in the key for AUTH_KEY. Now, integration didn’t work. So…I removed all bbPress tables from the database and changed all the KEYS so that they are the same. I tried installed bbPress again and it still didn’t integrate users. The installation of bbPress says that integration works, but in reality, it didn’t. What do I do now?
*By the way, my wordpress is running fine and I’m not willing to unistall it or delete its database.
Topic: stylesheet_directory
Hello,
what is the function for have the theme directory in bbpress, like <?php bloginfo(‘stylesheet_directory’); ?> for wordpress ?
Bye
Well, I was having issues with my WordPress admin, so, like a clever person I created a new admin name and deleted the old. Well. Turns out that in doing so I’ve deleted my keymaster in BBPress.
I’ve seen some posts that suggest editing the tables. I’ve tried adding the code
$bb->new_keymaster = ‘AdminTwo’;
to my bb-config.php and then running install.php. But, nothing happens. So, if I must edit my database, can someone please let me know in more deatail how? (Ie: Which tables, which values, etc.)
Thank You so Much!
Hi!
This is just a comment just in case it helps because I had to remove again bbpress.
I tried to integrate 1.0 Alpha with Wp following the bbpress installer and after installation finished, admin login was all messed.
First, bbpress changed my wp admin password. I re-set the old password from bbpress control panel and everything seemed to work fine again but next, whenever I tried to login in wordpress I had to log-out from bbpress.
Hope developers consider a better bbpress-wp integration for 1.0 final
Topic: admin link not working
i’m new to all this wordpress stuff so forgive me if this is too hackish.
i installed wp2.6 and bbp1 alpha. they almost integrate. i had a problem getting the admin link to work when i had logged in via wordpress (no problem logging in via bbpress). on investigation i discovered wp login was setting cookies only for itself, whereas bbpress was setting cookies for itself and wordpress.
my solution tells wordpress to be as polite as bbpress:
insert the following into wp-config.php replacing {bbpath} with your bbpath:
define(‘BB_ADMIN_COOKIE_PATH’, ‘/{bbpath}/bb-admin/’);
define(‘BB_PLUGINS_COOKIE_PATH’, /{bbpath}/bb-plugins/’);
define(‘BB_MYPLUGINS_COOKIE_PATH’, ‘/{bbpath}/my-plugins/’);
open wp-includes/pluggable.php and find where the cookies are set – these lines:
setcookie($auth_cookie_name, $auth_cookie, $expire, PLUGINS_COOKIE_PATH, COOKIE_DOMAIN, $secure);
setcookie($auth_cookie_name, $auth_cookie, $expire, ADMIN_COOKIE_PATH, COOKIE_DOMAIN, $secure);
insert the following immediatley after:
setcookie($auth_cookie_name, $auth_cookie, $expire, BB_ADMIN_COOKIE_PATH, COOKIE_DOMAIN, $secure);
setcookie($auth_cookie_name, $auth_cookie, $expire, BB_PLUGINS_COOKIE_PATH, COOKIE_DOMAIN, $secure);
setcookie($auth_cookie_name, $auth_cookie, $expire, BB_MYPLUGINS_COOKIE_PATH, COOKIE_DOMAIN, $secure);
now wordpress will set the same cookies as bbpress thus allowing full access averywhere.
like i say, i’m fairly new to this so please correct me if i’m wrong or if this approach has security implications.
has anyone seen a complete solution for this issue? many hosts do not allow php mail() function because it doesn’t support smtp authentication
i’ve seen several posts about swiftmailer, phpmailer alternatives, but none offer a step by step instructions?
interested in modifying files only from the latest verion bbpress-0.9.0.2.zip
also, are any of these solutions integrated with wordpress? or when you use them you lose the bbpress user = wp user integration?
any kind of complete solution would be appreciated by many
