Skip to:
Content
Pages
Categories
Search
Top
Bottom

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

  • 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

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

  • nmprofessional
    Member

    @nmprofessional

    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


    nmprofessional
    Member

    @nmprofessional

    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

    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

    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


    nmprofessional
    Member

    @nmprofessional

    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


    nmprofessional
    Member

    @nmprofessional

    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

    I would also like to thank you for your contributions – I followed the same article!

    I would also like to thank you for your contributions – I followed the same article!

Viewing 8 replies - 1 through 8 (of 8 total)
  • You must be logged in to reply to this topic.
Skip to toolbar