Forum Replies Created
-
In reply to: Redirect problem
I don’t have pretty permalinks on. I don’t have an .htaccess file in the bbpress install. My root .htaccess is this
php_flag register_globals off
RewriteRule ^([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/print/?$ /wp-print.php?year=$1&monthnum=$2&day=$3&name=$4 [QSA,L]
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_COOKIE} !^.*comment_author_.*$
RewriteCond %{HTTP_COOKIE} !^.*wordpressuser.*$
RewriteCond %{HTTP_COOKIE} !^.*wp-postpass_.*$
RewriteCond %{HTTP:Accept-Encoding} gzip
RewriteCond %{DOCUMENT_ROOT}/wordpress/wp-content/cache/supercache/%{HTTP_HOST}/$1index.html.gz -f
RewriteRule ^(.*) /wordpress/wp-content/cache/supercache/%{HTTP_HOST}/$1index.html.gz [L]
RewriteCond %{HTTP_COOKIE} !^.*comment_author_.*$
RewriteCond %{HTTP_COOKIE} !^.*wordpressuser.*$
RewriteCond %{HTTP_COOKIE} !^.*wp-postpass_.*$
RewriteCond %{DOCUMENT_ROOT}/wp-content/cache/supercache/%{HTTP_HOST}/$1index.html -f
RewriteRule ^(.*) /wp-content/cache/supercache/%{HTTP_HOST}/$1index.html [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
<Files 403.shtml>
order allow,deny
allow from all
</Files>
#AddHandler php5-script .phpIn reply to: new bbPress Theme: FutureKindWhere can I download futurekind?
In reply to: Plugins for WordPress integrationI just realized that there was information regarding a person with an external database. My wordpress database was different than my bbpress database. So I needed to add the following information
// This is the information about wordpress database. bbPress will look for users in this database
define(‘USER_BBDB_NAME’, ‘wordpress_database’);
define(‘USER_BBDB_USER’, ‘wordpress_database_username’);
define(‘USER_BBDB_PASSWORD’, ‘wordpress_database_password’);
define(‘USER_BBDB_HOST’, ‘localhost’);
The problem is now that I don’t have admin privileges at bbpress.
In reply to: Plugins for WordPress integrationI have tried that. It seems to me that it is not looking at either the right database (ie., the wordpress database is different than the bbpress database) or it needs to have the “bb_” prefix instead of the “wp_” prefix.
i.e., when I change
$bb->wp_table_prefix = 'wp_';
to$bb->wp_table_prefix = 'bb_';
, I no longer get the error, but then I am also not getting the wordpress users either.In reply to: Plugins for WordPress integrationI am having problems with the integration. I installed the bbpress_integration on my wordpress blog which is installed at dearauthor.com/wordpress.
I have a redirect that makes the blog address dearauthor.com
I then installed the bb forum at dearauthor.com/forum.
I set the bbPress Integration as
bb_
I have this in the config.php file for bbPress
$bb->wp_table_prefix = 'wp_'; //
$bb->wp_home = ‘http://dearauthor.com’; //
$bb->wp_siteurl = ‘http://dearauthor.com’; //
$bb->cookiedomain = ‘dearauthor.com’;
$bb->cookiepath = ‘/’;
require_once(‘http://dearauthor.com/wordpress/wp-config.php’);
I am getting this error.
bbPress database error: [Table ‘dearauth_bbdb.wp_users’ doesn’t exist]
SELECT * FROM wp_users WHERE ID = 1 AND user_status % 2 = 0
Anonymous`
Thanks.