Forum Replies Created
-
In reply to: bb-load, bbsync & wp_plugin_bbPress_Integration
here the php log
[05-May-2010 16:55:12] PHP Warning: require_once(/Applications/MAMP/htdocs/bbpress/bb-load.php) [function.require-once]: failed to open stream: No such file or directory in /Applications/MAMP/htdocs/wp2.9/wp-config.php on line 18
[05-May-2010 16:55:13] PHP Warning: require_once(/Applications/MAMP/htdocs/bbpress/bb-load.php) [function.require-once]: failed to open stream: No such file or directory in /Applications/MAMP/htdocs/wp2.9/wp-config.php on line 18
[05-May-2010 16:55:44] PHP Fatal error: Cannot redeclare wp_clone() (previously declared in /Applications/MAMP/htdocs/wp2.9/bbpress/bb-includes/backpress/functions.core.php:1043) in /Applications/MAMP/htdocs/wp2.9/wp-settings.php on line 308
[05-May-2010 16:56:13] PHP Warning: require_once(/Applications/MAMP/htdocshttp://localhost:8888/wp2.9/bbpress/bb-load.php) [function.require-once]: failed to open stream: No such file or directory in /Applications/MAMP/htdocs/wp2.9/wp-config.php on line 18
[05-May-2010 16:56:14] PHP Warning: require_once(/Applications/MAMP/htdocshttp://localhost:8888/wp2.9/bbpress/bb-load.php) [function.require-once]: failed to open stream: No such file or directory in /Applications/MAMP/htdocs/wp2.9/wp-config.php on line 18
I try to set another path on my wp-config.php as
http://localhost:8888/wp2.9/bbpress/bb-load.php or
/bbpress/bb-load.php
but nothing
any ideas?
kikko088
In reply to: bbpress login & registration in wpU found this topic https://bbpress.org/forums/topic/load-bbpress-into-wordpress it can be a solution but when I put require_once(‘/bbpress/bb-config.php’ ); i recive a blank page…
any solution?
kikko088
In reply to: bbpress login & registration in wpok but I want that the user put also other information…
I don’t like the wordpress profile manager, i prefer the profile manger of bbpress than i want that all user access only to bbpress profile manager.
In reply to: bbpress login & registration in wpmy bbpress and wordpress ara just integrating, if i’m login with wp i’m login also with bbpress, but while the registration with bbpress the user must insert name, email, site with wordpress the user must insert only a nickname and email…I want to menage the registration only with bbpress….I try to put the html code for login but there is a little problem, until the user isn’t logged in the sidebar there is the login form, but when the user login in the sidebar remains the login form instead “Welcome, user, ecc…..”
There is another way for put login form in the sidebar?
thank you
In reply to: bbpress login & registration in wpthank you
In reply to: languagesthe file that I use are your file…the problem was a plugin of wp…now is all OK
In reply to: languagesis the same… I change the line but nothing…
define( ‘BB_LANG’, ‘it_IT’ );
kikko088
In reply to: problem with css menuthank you!
In reply to: wordpress integrationit workkkkkk!! the problema was wordpress 3.0! with wp 2.9 is all ok!
In reply to: wordpress integrationnothing…always blank page…uff….i find also this line
require_once( dirname( dirname( __FILE__ ) ) . ‘../wp-blog-header.php’ );
define(‘WP_BB’, true);
but nothing…blank page…grrr
kikko088
In reply to: wordpress integrationnothing, I try to add also this line but nothing… clean install of bbpress and 0 plugin wp.
my bb-config.php
<?php
/**
* The base configurations of bbPress.
*
* This file has the following configurations: MySQL settings, Table Prefix,
* Secret Keys and bbPress Language. You can get the MySQL settings from your
* web host.
*
* This file is used by the installer during installation.
*
* @package bbPress
*/
// ** MySQL settings – You can get this info from your web host ** //
/** The name of the database for bbPress */
define( ‘BBDB_NAME’, ‘mio’ );
/** MySQL database username */
define( ‘BBDB_USER’, ‘root’ );
/** MySQL database password */
define( ‘BBDB_PASSWORD’, ‘root’ );
/** 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’, ” );
/**#@+
* Authentication Unique Keys.
*
* Change these to different unique phrases!
* You can generate these using the {@link https://api.wordpress.org/secret-key/1.1/bbpress/ WordPress.org secret-key service}
*
* @since 1.0
*/
define( ‘BB_AUTH_KEY’, ‘put your unique phrase here’ );
define( ‘BB_SECURE_AUTH_KEY’, ‘put your unique phrase here’ );
define( ‘BB_LOGGED_IN_KEY’, ‘put your unique phrase here’ );
define( ‘BB_NONCE_KEY’, ‘put your unique phrase here’ );
/**#@-*/
/**
* 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_’;
/**
* bbPress Localized Language, defaults to English.
*
* Change this to localize bbPress. A corresponding MO file for the chosen
* language must be installed to a directory called “my-languages” in the root
* directory of bbPress. For example, install de.mo to “my-languages” and set
* BB_LANG to ‘de’ to enable German language support.
*/
define( ‘BB_LANG’, ” );
require_once(dirname(__FILE__) . ‘/../wp-load.php’);
OR
(
/* Deep integration */
if ( !defined(‘ABSPATH’) & !defined(‘XMLRPC_REQUEST’)) {
define(‘WP_USE_THEMES’, false);
include_once(dirname(__FILE__) . ‘/../wp-blog-header.php’ );
header(“HTTP/1.1 200 OK”);
header(“Status: 200 All rosy”);
}
)
?>
I I’m not expert on php, I add correctly the line?