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