MU wordpress 2.6.1 + bbpress 0.9.0.2
-
Hello, I read the forums but I have not found a solution.
My wp-config.php is:
<?php
/* Don’t try to create this file by hand. Read the README.txt and run the installer. */
// ** MySQL settings ** //
define(‘DB_NAME’, ‘sito’); // The name of the database
define(‘DB_USER’, ‘root’); // Your MySQL username
define(‘DB_PASSWORD’, ”); // …and password
define(‘DB_HOST’, ‘localhost’); // 99% chance you won’t need to change this value
define(‘DB_CHARSET’, ‘utf8’);
define(‘DB_COLLATE’, ”);
define(‘VHOST’, ‘no’);
$base = ‘/sito/’;
define(‘COOKIE_DOMAIN’, ”);
define(‘COOKIEPATH’, ‘/sito/’);
// Change each KEY to a different unique phrase. You won’t have to remember the phrases later,
// so make them long and complicated. You can visit http://api.wordpress.org/secret-key/1.1/
// to get keys generated for you, or just make something up. Each key should have a different phrase.
define(‘AUTH_KEY’, ‘3e4e2e456cd44f52600ea4e614e94a8acfa4c97995f339d818eb02dea01b1c05’); // Change this to a unique phrase.
define(‘SECURE_AUTH_KEY’, ‘355918119ed39b28e890f2da0419d51284517d99b701cb2d7be09d9bf7943bda’); // Change this to a unique phrase.
define(‘SECURE_AUTH_SALT’, ’46ee307c3c9059000a578808454e176be6d185443fc8c9f8dcb3f95d2e4fc08b’); // Change this to a unique phrase.
define(‘LOGGED_IN_KEY’, ‘f5a5bc795a85bdcb7511ad0f1fd849c2e50aab8b413505f62a7188f6f215cddd’); // Change this to a unique phrase.
define(‘SECRET_KEY’, ‘313aa0bc3b2494acc5aef9ffacd3f34e205f2f4af13ef31d8249ab0a9a5d2c7b’); // Change these to unique phrases.
define(‘SECRET_SALT’, ’18a040b3d856fe9c91b03a63cbdfc4ad60360e9eb46532d8df5d016013283faa’);
define(‘LOGGED_IN_SALT’, ‘6f4751395b14e1a2e3ef6ea948afa8815f35053466d1378ee5f885d878c06235’);
// double check $base
if( $base == ‘BASE’ )
die( ‘Problem in wp-config.php – $base is set to BASE when it should be the path like “/” or “/blogs/”! Please fix it!’ );
// You can have multiple installations in one database if you give each a unique prefix
$table_prefix = ‘wp_’; // Only numbers, letters, and underscores please!
// Change this to localize WordPress. A corresponding MO file for the
// chosen language must be installed to wp-content/languages.
// For example, install de.mo to wp-content/languages and set WPLANG to ‘de’
// to enable German language support.
define (‘WPLANG’, ”);
// uncomment this to enable wp-content/sunrise.php support
//define( ‘SUNRISE’, ‘on’ );
// Uncomment and set this to a URL to redirect if a blog does not exist or is a 404 on the main blog. (Useful if signup is disabled)
// For example, browser will redirect to http://examples.com/ for the following: define( ‘NOBLOGREDIRECT’, ‘http://example.com/’ );
// define( ‘NOBLOGREDIRECT’, ” );
define( “WP_USE_MULTIPLE_DB”, false );
/* That’s all, stop editing! Happy blogging. */
if ( !defined(‘ABSPATH’) )
define(‘ABSPATH’, dirname(__FILE__) . ‘/’);
require_once(ABSPATH . ‘wp-settings.php’);
?>
My bb-config.php is:
<?php
// ** MySQL settings ** //
define(‘BBDB_NAME’, ‘sito’); // The name of the database
define(‘BBDB_USER’, ‘root’); // Your MySQL username
define(‘BBDB_PASSWORD’, ”); // …and password
define(‘BBDB_HOST’, ‘localhost’); // 99% chance you won’t need to change these last few
define(‘BBDB_CHARSET’, ‘utf8’); // If you are *upgrading*, and your old bb-config.php does
define(‘BBDB_COLLATE’, ”); // not have these two contstants in them, DO NOT define them
// If you are installing for the first time, leave them here
// Change BB_SECRET_KEY to a unique phrase. You won’t have to remember it later,
// so make it long and complicated. You can visit https://www.grc.com/passwords.htm
// to get a phrase generated for you, or just make something up.
// If you are integrating logins with WordPress, you will need to match the value
// of the “SECRET_KEY” in the WordPress file wp-config.php
define(‘BB_SECRET_KEY’, ‘313aa0bc3b2494acc5aef9ffacd3f34e205f2f4af13ef31d8249ab0a9a5d2c7b’); // Change this to a unique phrase.
define(‘BB_AUTH_KEY’, ‘3e4e2e456cd44f52600ea4e614e94a8acfa4c97995f339d818eb02dea01b1c05’); // Change this to a unique phrase.
define(‘BB_SECURE_AUTH_KEY’, ‘355918119ed39b28e890f2da0419d51284517d99b701cb2d7be09d9bf7943bda’); // Change this to a unique phrase.
define(‘BB_LOGGED_IN_KEY’, ‘f5a5bc795a85bdcb7511ad0f1fd849c2e50aab8b413505f62a7188f6f215cddd’); // Change this to a unique phrase.
// If you are running multiple bbPress installations in a single database,
// you will probably want to change this.
$bb_table_prefix = ‘bb_’; // Only letters, numbers and underscores please!
// 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 BB_LANG to ‘de’
// to enable German language support.
define(‘BB_LANG’, ”);
/* Stop editing */
if ( !defined(‘BB_PATH’) )
define(‘BB_PATH’, dirname(__FILE__) . ‘/’ );
require_once( BB_PATH . ‘bb-settings.php’ );
?>
Why if I access at bbpress (login) I don’t access at WordPress MU?
This is a problem of “cookie”, ok… but you can fix it?
Is there a new plugin?
Will be solved by bbpress 1.0?
Thank you
- You must be logged in to reply to this topic.