my bbpress topic and forum just keeps reloading!
-
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
-
are you using wordpress? can you help me how did you blend bbpress and wordpress theme?
i am using wordpress , and i custom made both the themes for wordpress and bbpress they are seperated
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
ok , http://pastebin.org/71960 is it, but i switched themes and it still happens
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.
i even reainstalled bbpress on a different location on the server it must be the database
That could be the only other option then – though I don’t understand how that would work.
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 GMTWhy 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?
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?
i found the code thats doing it but i cant take it out
Could you post the code so we can have a look?
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
other people are having this issue http://forums.iis.net/p/1150409/1930325.aspx#1930325 its only iis7
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.
i switched to a linux server, kinda fixed the issue
Thank you guys so much for your help!~
Michael R, it’s acting normally today. Maybe alexandanthony made a change and will post back what was causing the problem.
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
10 January 2010 03:13 GMT. I am about to release 5 replies from alexandanthony that were flagged by Akismet as spam.
- You must be logged in to reply to this topic.