davidbaldwin (@davidbaldwin)

Forum Replies Created

Viewing 13 replies - 1 through 13 (of 13 total)
  • @davidbaldwin

    Member

    lolos,

    first of all, if you are doing this with WordPress 2.6 or newer, you have to run 1.0-alpha. If you are running an older version of wordpress you can use the stable version. I attempted to roll back to an older version of wordpress, but i was unsuccessful, so this method is for 1.0-alpha users.

    I found the intigration information at:

    https://bbpress.org/documentation/integration-with-wordpress/

    https://bbpress.org/forums/topic/first-pass-at-a-fix-for-deep-integration-in-trunk#post-21572

    you need to add the following to the bb-config.php file, after <?php

    if ( !defined( 'ABSPATH' ) ) {
    include_once( '/Full/Path/To/wp-load.php' );
    }

    require_once('/Full/Path/To/wp-blog-header.php');

    the full paths have to be absolute paths on the servers, not the domain paths.

    this will load wordpress when bbpress is loaded.

    and then you need to add this line to the very top of every page that has this line: <?php bb_get_header(); ?>

    <?php get_header(); ?>

    please note that the line above has to be line #1 in every page that already calls the bb header, if it does not call the bb header, do not add this, the final result should look like this:

    <?php get_header(); ?>
    <?php bb_get_header(); ?>

    this will load the wordpress header when the bbpress header is called. you can edit the bbpress header to remove all the unnecessary code. (like the title, etc.)

    and then you need to add this line to the very bottom of every page that has this line: <?php bb_get_footer(); ?>

    <?php get_footer(); ?>

    please note that the line above has to be the last line in every page that already calls the bb footer, if it does not call the bb footer, do not add this, the final result should look like this:

    <?php bb_get_footer(); ?>
    <?php get_footer(); ?>

    this will load the wordpress footer when the bbpress footer is called. you can edit the bbpress footer to remove all the unnecessary code. (like the title, etc.)

    I hope this helps. if you have any questions, please feel free to ask!

    david

    @davidbaldwin

    Member

    I tried re-installing bbpress, but after I got past the first step (inserting the bbpress database info), it brings me to the forum home page. I cannot log in using any of the user id’s.

    In reply to: bbPress 1.0 alpha

    @davidbaldwin

    Member

    if i upgrade to the alpha, can I downgrade to the stable release?

    peace

    @davidbaldwin

    Member

    If I try and create a new user, I get the error:

    Warning: mysql_insert_id(): supplied argument is not a valid MySQL-Link resource in /home/turner/public_html/lifelightcam/bbpress/bb-includes/db-mysql.php on line 180"

    I can log into wordpress just fine with my user id and password, but not into bbpress. I checked and the user id does exist in wp_users

    @davidbaldwin

    Member

    is there a fix to this problem?

    peace

    @davidbaldwin

    Member

    ok, i downgraded to wordpress 2.5.1, and now I’m getting a “This username does not exist.” in bbpress when I try and log in. I can log into wordpress just fine, just not bbpress.

    what gives?

    @davidbaldwin

    Member

    is there an ETA on a version of bbpress that will work with wordpress 2.6?

    thanks!

    david

    @davidbaldwin

    Member

    dang it!

    i wish i knew that before I upgraded..

    what do i do know?

    thanks!

    @davidbaldwin

    Member

    I added

    <?php get_header(); ?>
    <?php bb_get_header(); ?>

    to the beginning, and

    <?php bb_get_footer(); ?>
    <?php get_footer(); ?>

    to the end.

    obviously, this calls both the wordpress and bbpress headers.

    that makes everything work, except for the wordpress search engine.

    any ideas?

    thanks!

    @davidbaldwin

    Member

    here is the URL to bbpress:

    http://lifelightcam.com/bbpress/

    and the admin:

    http://lifelightcam.com/bbpress/bb-admin

    i’m using this permalink structure:

    http://lifelightcam.com/2008/06/07/sample-post/

    thanks for your help!

    david

    @davidbaldwin

    Member

    atomAstro, how did you get your titles/rss to work?

    (I’m assuming your using WordPress for your blog)

    I think I might have a problem with the theme I’m using, but I’m not sure.

    Thanks!

    -Baldwin

    @davidbaldwin

    Member

    Has anyone else been able to get the titles to work?

    Thanks!

    -Baldwin

    @davidbaldwin

    Member

    We’ve been talking about that a lot here:

    https://bbpress.org/forums/topic/1140

    Somewhat like this website:

    http://www.ppacp.org/

    I still can’t get the titles to work correctly though, (see if you can, and let me know what you did),

    -Baldwin

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