Forums

Join
bbPress Support ForumsTroubleshootingmy bbpress topic and forum just keeps reloading!

Info

my bbpress topic and forum just keeps reloading!

  1. my bbpress install at http://strangebutfunny.net/forum when you click a topic it just reloads! can anyone help i use godaddy hosting if that helps

  2. are you using wordpress? can you help me how did you blend bbpress and wordpress theme?

  3. i am using wordpress , and i custom made both the themes for wordpress and bbpress they are seperated

  4. alexandanthony: It lookas like you've modified something when you edited the theme files. It looks like it's running some kind of continuous loop.

    Can you put the code for topic.php (in your my-themes directory) on pastebin.org? I'd like to have a look. :)

    Michael

  5. ok , http://pastebin.org/71960 is it, but i switched themes and it still happens

  6. I see - then it can't be in the template. Must be something in the core. Do you remember what you did just before it started happening? We need details with this one.

  7. i even reainstalled bbpress on a different location on the server it must be the database

  8. That could be the only other option then - though I don't understand how that would work.

  9. Interesting, you're going to throw the whole internets into a loop!

    Here are the headers:

    [~]$ curl -I http://strangebutfunny.net/forum/topic.php?id=2
    HTTP/1.1 200 OK
    Content-Length: 0
    Content-Type: text/html; charset=UTF-8
    Server: Microsoft-IIS/7.0
    X-Pingback: http://strangebutfunny.net/forum/xmlrpc.php
    Refresh: 0;url=http://strangebutfunny.net/forum/topic.php?id=2
    X-Powered-By: ASP.NET
    Date: Thu, 07 Jan 2010 17:09:09 GMT

    Why is there a "Refresh: 0;" in there? Do you have a fresh in any of your header.php files, maybe to direct people from the website to the forum?

  10. chrishajer: i looked everywhere, i can't find that code or anything that looks like it could it be a topic someone put with html in it?

  11. i found the code thats doing it but i cant take it out

  12. Could you post the code so we can have a look?

  13. function wp_redirect($location, $status = 302) {
    global $is_IIS;

    $location = apply_filters('wp_redirect', $location, $status);
    $status = apply_filters('wp_redirect_status', $status, $location);

    if ( !$location ) // allows the wp_redirect filter to cancel a redirect
    return false;

    $location = wp_sanitize_redirect($location);

    if ( $is_IIS ) {
    header("Refresh: 0;url=$location");
    } else {
    if ( php_sapi_name() != 'cgi-fcgi' )
    status_header($status); // This causes problems on IIS and some FastCGI setups
    header("Location: $location");
    }
    }
    in file functions.bb-pluggable.php in bb-includes

  14. other people are having this issue http://forums.iis.net/p/1150409/1930325.aspx#1930325 its only iis7

  15. I can't actually see where the problem is - not that I can find a problem. Just tested your forum, and it seems to work okay.

  16. i switched to a linux server, kinda fixed the issue

  17. Thank you guys so much for your help!~

  18. Michael R, it's acting normally today. Maybe alexandanthony made a change and will post back what was causing the problem.

  19. i was forced to switch to a linux server because my windows server was incompatable, i master in php,asp.net,vb.net and a ton of others but i couldn't do this! where can i report this bug

  20. 10 January 2010 03:13 GMT. I am about to release 5 replies from alexandanthony that were flagged by Akismet as spam.

  21. You must log in to post.