Michael Adams (mdawaffe) (@mdawaffe)

Forum Replies Created

Viewing 10 replies - 326 through 335 (of 335 total)
  • In reply to: installing … error

    @mdawaffe

    Member

    Those two line look fine to me.

    You are definitely missing files, though: http://www.thai-boxing.org/muay-thai-forum/bb-includes/

    Not all of them are there.

    Are you trying to integrate bbPress with WordPress? That would explain why bbPress did not complain that wp-functions.php was missing.

    In reply to: Using WP template tags

    @mdawaffe

    Member

    Try

    require_once(dirname(dirname(__FILE__)) . '/wp-config.php');

    in bbPress’ config.php.

    In reply to: Can’t Login!

    @mdawaffe

    Member

    What webserver are you two using? This initial release didn’t receive much testing under IIS. There could still be some bugs there.

    Also, please try installing the official release, garymill. There were several changes between October 12th and the final version, some of which dealt with login issues.

    In reply to: installing … error

    @mdawaffe

    Member

    It looks like your install is not complete. Try downloading it again and trying from scratch.

    @mdawaffe

    Member

    kyte,

    A hint: copy the original style.css to a new directory called my-templates/ and modify that one.

    In reply to: Can’t Login!

    @mdawaffe

    Member

    No one can login, or just you?

    Does your WP username have any spaces or “funny” characters in it?

    @mdawaffe

    Member

    What is the url you’re tring to install it to?

    http://subdomain.domain.com/forums/ ?

    If that’s the case, you need to install bbPress in the directory on your server that that url points to. You config should then look like:

    $bb->domain = 'http://subdomain.domain.com';

    $bb->path = '/forums/';

    In reply to: RSS problem

    @mdawaffe

    Member

    Fixed, thanks!

    @mdawaffe

    Member

    If you define('WP_BB', true);, you still have to call the WordPress script yourself.

    put require_once('../wp-config.php'); (or whatever the right path is) in bbPress’ config.php.

    In reply to: Login Errors

    @mdawaffe

    Member

    klasen,

    Users with spaces:

    You way be able to get away with creating a plugin that overrides bb_check_login and bb_set_current_user with your own functions of the same name. If not, you’ll probablp have to edit the user_sanitize function. That function should probably be made pluggable.

    I’ll try to get more details about this soon.

    Fatal Error:

    I assume you are talking about defining the constant WP_BB. All this does is tell bbPress not to load certain functions. It does not include the wp-config file for you (haw would it know where to look?). You need to do that yourself. I’d suggest require_once('../wp-config.php'); (or where ever it is) in bbPress’ config.php file.

    mod_rewrite:

    bbPress can generate a sample .htaccess file for you if you log in and browse to bb-admin/rewrite-rules.php. Copy the output and save it into your .htaccess file. Alternatively, you might be able to forgo the rewrite rules and instead set Options +MultiViews

Viewing 10 replies - 326 through 335 (of 335 total)