JaneLitte (@janelitte)

Forum Replies Created

Viewing 5 replies - 1 through 5 (of 5 total)
  • 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 .php

    Where can I download futurekind?

    I 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.

    I 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.

    I 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&#8217;; //

    $bb->wp_siteurl = ‘http://dearauthor.com&#8217;; //

    $bb->cookiedomain = ‘dearauthor.com’;

    $bb->cookiepath = ‘/’;

    require_once(‘http://dearauthor.com/wordpress/wp-config.php&#8217;);

    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.

Viewing 5 replies - 1 through 5 (of 5 total)