Forums

Join
bbPress Support ForumsTroubleshootingTitle is Page not Found - But Page Content is just fine

Info

Title is Page not Found - But Page Content is just fine

  1. I recently started a blog and I added bbPress for a forum related to the blog. I do have a 'interesting' thing happening.

    if I go to the forum (http://forum.eshipguy.com) the front page looks great(ish). but if I go to any topic, forum, registration or any other sub-page, Firefox/Internet Explorer changes the title to Page Not Found - yet the content shows just fine.

    I am running with deep wordpress integration

    /Henrik

  2. I am also having the same issue on one of my clients sites using WordPRess + bbPress with deep integration here:

    http://theagelessedge.com/wp/forum/

    Please excuse the roughness of layout for now.

    Again, like <b>eshipguy</b> has said all of the posts work and can be seen - but every TITLE of very forum page displays "404 Not Found" EXCEPT for forum/php (in the main bbPress directory).

    Anyone else figure this out or anyone want to work with me to try and figure it out?

    Thanks,
    Dave

  3. yeah i fixed that by making call wp_title and bb_title conditionally.
    hint:

    <title>
    <?php
    if ( function_exists('bb_title') )
    bb_title();
    else
    wp_title();
    ?>
    </title>

    Also you will need to send headers in deep integration as some users have reported to get 404 errors on all forum pages

  4. Asfame,

    MANY Thanks!

    WordPress + bbPress is new to me ( it is my third day working with them both) and your article about deep-integration:

    http://www.wpwebhost.com/make-bbpress-theme-match-with-wordpress-by-deep-integration/

    was EXTREMELY helpful in me understanding hoe to integrate them both.

    Again - many thanks!
    Dave

  5. I would also like to thank you for your contributions - I followed the same article!

  6. You must log in to post.