<?xml version="1.0" encoding="UTF-8"?><!-- generator="bbPress" -->

<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
>

<channel>
<title>bbPress support forums Tag: IIS</title>
<link>http://bbpress.org/forums/</link>
<description>bbPress support forums Tag: IIS</description>
<language>en</language>
<pubDate>Tue, 02 Dec 2008 23:59:58 +0000</pubDate>

<item>
<title>mvds on "INSERT queries for new Topic and new Post"</title>
<link>http://bbpress.org/forums/topic/insert-queries-for-new-topic-and-new-post#post-21109</link>
<pubDate>Fri, 28 Nov 2008 18:09:14 +0000</pubDate>
<dc:creator>mvds</dc:creator>
<guid isPermaLink="false">21109@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;It also seems to be working if you initialize the value of 'topic_id'  as 0 (zero) instead of false. I found no problems with it so far.
&#60;/p&#62;</description>
</item>
<item>
<title>mvds on "INSERT queries for new Topic and new Post"</title>
<link>http://bbpress.org/forums/topic/insert-queries-for-new-topic-and-new-post#post-21100</link>
<pubDate>Fri, 28 Nov 2008 15:12:48 +0000</pubDate>
<dc:creator>mvds</dc:creator>
<guid isPermaLink="false">21100@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Just a question:&#60;/p&#62;
&#60;p&#62;do you include your wp functions in bbpress? I see calls to wp functions in several bb functions (also in bb_insert_topic and bb_insert_post) and I can imagine that if you dont include wp functions in bbpress, that these statements fail.&#60;/p&#62;
&#60;p&#62;I cannot include wp functions with the&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;$bb-&#38;gt;WP_BB = true;
if (file_exists(&#38;#39;../wp-blog-header.php&#38;#39;))
	require_once(&#38;#39;../wp-blog-header.php&#38;#39;);
else
if (file_exists(&#38;#39;../../wp-blog-header.php&#38;#39;))
	require_once(&#38;#39;../../wp-blog-header.php&#38;#39;);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;part because then my forums don't work. I can't access my bb-admin pages and bbpress doesn't recognize my users.
&#60;/p&#62;</description>
</item>
<item>
<title>mvds on "INSERT queries for new Topic and new Post"</title>
<link>http://bbpress.org/forums/topic/insert-queries-for-new-topic-and-new-post#post-21098</link>
<pubDate>Fri, 28 Nov 2008 11:18:24 +0000</pubDate>
<dc:creator>mvds</dc:creator>
<guid isPermaLink="false">21098@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Same problem here, with an Apache server on Windows. Latest versions of all applications. I will try your solutions and see what happens.
&#60;/p&#62;</description>
</item>
<item>
<title>peterve on "bbpress 0.9.0.2 slow"</title>
<link>http://bbpress.org/forums/topic/bbpress-0902-slow#post-20409</link>
<pubDate>Sun, 02 Nov 2008 14:52:35 +0000</pubDate>
<dc:creator>peterve</dc:creator>
<guid isPermaLink="false">20409@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;thanks a lot !
&#60;/p&#62;</description>
</item>
<item>
<title>_ck_ on "bbpress 0.9.0.2 slow"</title>
<link>http://bbpress.org/forums/topic/bbpress-0902-slow#post-20408</link>
<pubDate>Sun, 02 Nov 2008 14:43:18 +0000</pubDate>
<dc:creator>_ck_</dc:creator>
<guid isPermaLink="false">20408@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;You can make my bb-benchmark work on WordPress with a few  changes.&#60;/p&#62;
&#60;p&#62;Most notably you'd have to add the line:&#60;br /&#62;
&#60;code&#62;add_action(&#38;#39;wp_footer&#38;#39;, &#38;#39;bb_benchmark_output&#38;#39;,999);&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;&#60;code&#62;if (bb_current_user_can( &#38;#39;administrate&#38;#39; ) )&#60;/code&#62;  you just have to take off the &#60;code&#62;bb_&#60;/code&#62; part and make it &#60;code&#62;current_user_can&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;Oh and all &#60;code&#62;$bbdb&#60;/code&#62; has to be changed to &#60;code&#62;$wpdb&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;It won't be able to calculate the timing between sections until all the hook names are added which unfortunately I don't have the time right now to lookup. But it will still show you overall times and mysql queries.
&#60;/p&#62;</description>
</item>
<item>
<title>_ck_ on "bbpress 0.9.0.2 slow"</title>
<link>http://bbpress.org/forums/topic/bbpress-0902-slow#post-20407</link>
<pubDate>Sun, 02 Nov 2008 14:39:17 +0000</pubDate>
<dc:creator>_ck_</dc:creator>
<guid isPermaLink="false">20407@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;You are getting an error with &#60;code&#62;admin_email&#60;/code&#62; because in bbPress 0.9 they decided to change it to &#60;code&#62;from_email&#60;/code&#62; with no support for the old variable (bad move). That plugin obviously never got updated.
&#60;/p&#62;</description>
</item>
<item>
<title>peterve on "bbpress 0.9.0.2 slow"</title>
<link>http://bbpress.org/forums/topic/bbpress-0902-slow#post-20406</link>
<pubDate>Sun, 02 Nov 2008 14:37:53 +0000</pubDate>
<dc:creator>peterve</dc:creator>
<guid isPermaLink="false">20406@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;by the way (and perhaps off-topic) : is there a benchmark plugin for wordpress ? can't seem to find one in the plugins directory for wp&#60;/p&#62;
&#60;p&#62;tx
&#60;/p&#62;</description>
</item>
<item>
<title>_ck_ on "bbpress 0.9.0.2 slow"</title>
<link>http://bbpress.org/forums/topic/bbpress-0902-slow#post-20404</link>
<pubDate>Sun, 02 Nov 2008 14:37:09 +0000</pubDate>
<dc:creator>_ck_</dc:creator>
<guid isPermaLink="false">20404@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;That's better but your query counts are still too high.&#60;br /&#62;
Way too high.&#60;br /&#62;
You could post the list of queries from bb-benchmark here and I can take a look at what's causing that.&#60;/p&#62;
&#60;p&#62;eAccelerator is probably the  way too go.&#60;br /&#62;
It's a tad slower than Xcache but it's far more stable.&#60;/p&#62;
&#60;p&#62;Assuming you are using a 2ghz+ cpu that is only lightly loaded, you should be seeing page render times around 100ms on an optimized setup  with proper mysql and php opcode caches.
&#60;/p&#62;</description>
</item>
<item>
<title>peterve on "bbpress 0.9.0.2 slow"</title>
<link>http://bbpress.org/forums/topic/bbpress-0902-slow#post-20403</link>
<pubDate>Sun, 02 Nov 2008 13:57:01 +0000</pubDate>
<dc:creator>peterve</dc:creator>
<guid isPermaLink="false">20403@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;have a look at the forum now  (http://forums.corelan.be:8800)&#60;/p&#62;
&#60;p&#62;runs a lot faster now, doesn't it ?&#60;/p&#62;
&#60;p&#62;I have made a couple of changes to the php.ini file :&#60;br /&#62;
register_long_arrays=off&#60;br /&#62;
output_buffering=4096&#60;br /&#62;
variables_order = &#34;GPCS&#34;  (still need to verify that this doesn't break stuff)&#60;/p&#62;
&#60;p&#62;disabled&#60;br /&#62;
engine=on&#60;/p&#62;
&#60;p&#62;closed &#38;#38; saved the file,  and php runs must faster now&#60;br /&#62;
(windows 2008, IIS7)&#60;/p&#62;
&#60;p&#62;Also, one of the plugins that I'm using (EnhancedRegistration) was reporting repeated errors in my php log file&#60;/p&#62;
&#60;p&#62;&#34;bbPress ER: Failed to send report&#34;&#60;/p&#62;
&#60;p&#62;I looked up the function, replaced the bb_get_option('admin_email') with a static email address, and now the errors went away as well&#60;br /&#62;
Not sure whether this has improved the code as well, but it certainly couldn't hurt, could it&#60;/p&#62;
&#60;p&#62;wtih regards to the opcode cache : what would you recommend using ?
&#60;/p&#62;</description>
</item>
<item>
<title>_ck_ on "bbpress 0.9.0.2 slow"</title>
<link>http://bbpress.org/forums/topic/bbpress-0902-slow#post-20401</link>
<pubDate>Sun, 02 Nov 2008 13:35:34 +0000</pubDate>
<dc:creator>_ck_</dc:creator>
<guid isPermaLink="false">20401@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Your front page is now showing 56 queries which is excessive. Something is very wrong there too. I'll know more after I see what plugins you have installed.
&#60;/p&#62;</description>
</item>
<item>
<title>_ck_ on "bbpress 0.9.0.2 slow"</title>
<link>http://bbpress.org/forums/topic/bbpress-0902-slow#post-20400</link>
<pubDate>Sun, 02 Nov 2008 12:50:54 +0000</pubDate>
<dc:creator>_ck_</dc:creator>
<guid isPermaLink="false">20400@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;By the way, even when we fix the plugin problem, your setup could benefit greatly from a PHP opcode cache (eaccelerator, xcache, APC, etc.) We just have to find one that's compatible with Windows and IIS which will take some research. It should cut your page times in half, on both bbPress and WordPress.&#60;/p&#62;
&#60;p&#62;Here's one possibility:&#60;br /&#62;
&#60;a href=&#34;http://www.sitebuddy.com/PHP/Accelerators/eAccelerator&#34; rel=&#34;nofollow&#34;&#62;http://www.sitebuddy.com/PHP/Accelerators/eAccelerator&#60;/a&#62;&#60;br /&#62;
That site has pre-built windows binaries for eAccelerator as well as good install directions.
&#60;/p&#62;</description>
</item>
<item>
<title>_ck_ on "bbpress 0.9.0.2 slow"</title>
<link>http://bbpress.org/forums/topic/bbpress-0902-slow#post-20399</link>
<pubDate>Sun, 02 Nov 2008 12:45:08 +0000</pubDate>
<dc:creator>_ck_</dc:creator>
<guid isPermaLink="false">20399@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Give me a list of what plugins you are using and I'll guess at the culprit.&#60;/p&#62;
&#60;p&#62;If you are using firefox you can copy just the column of the plugin names from the admin menu by using control-click on the table cells.
&#60;/p&#62;</description>
</item>
<item>
<title>peterve on "bbpress 0.9.0.2 slow"</title>
<link>http://bbpress.org/forums/topic/bbpress-0902-slow#post-20398</link>
<pubDate>Sun, 02 Nov 2008 11:37:58 +0000</pubDate>
<dc:creator>peterve</dc:creator>
<guid isPermaLink="false">20398@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;update : benchmark results :&#60;/p&#62;
&#60;p&#62;total page time: 5.3 seconds.&#60;/p&#62;
&#60;p&#62;time to reach each section:&#60;br /&#62;
   bb_underscore_plugins_loaded =  0.172&#60;br /&#62;
   bb_plugins_loaded =  5.210&#60;br /&#62;
   bb_init =  5.211&#60;br /&#62;
   bb_index.php_pre_db =  5.215&#60;br /&#62;
   front-page.php =  5.217&#60;br /&#62;
   header.php =  5.220&#60;br /&#62;
   logged-in.php =  5.247&#60;br /&#62;
   footer.php =  5.298&#60;/p&#62;
&#60;p&#62;so apparently one of the plugins takes a long time to run&#60;/p&#62;
&#60;p&#62;how can I find the plugin without having to disable all plugins ?
&#60;/p&#62;</description>
</item>
<item>
<title>peterve on "bbpress 0.9.0.2 slow"</title>
<link>http://bbpress.org/forums/topic/bbpress-0902-slow#post-20397</link>
<pubDate>Sun, 02 Nov 2008 11:31:40 +0000</pubDate>
<dc:creator>peterve</dc:creator>
<guid isPermaLink="false">20397@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;this is a dedicated host, running at home - no option to move it because of too much integration with other stuff...&#60;/p&#62;
&#60;p&#62;I have full access to all components&#60;/p&#62;
&#60;p&#62;anything I can do to get you more info ?
&#60;/p&#62;</description>
</item>
<item>
<title>_ck_ on "bbpress 0.9.0.2 slow"</title>
<link>http://bbpress.org/forums/topic/bbpress-0902-slow#post-20395</link>
<pubDate>Sun, 02 Nov 2008 10:38:04 +0000</pubDate>
<dc:creator>_ck_</dc:creator>
<guid isPermaLink="false">20395@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Are you on a shared host or do you have access to the mysql cache and adding PHP modules?&#60;/p&#62;
&#60;p&#62;Install &#60;a href=&#34;http://bbpress.org/plugins/topic/bb-benchmark/&#34;&#62;bb-benchmark&#60;/a&#62; and tell me how long it takes for a page to render.&#60;/p&#62;
&#60;p&#62;update: I found your forums and you're correct, there is definitely something wrong:&#60;br /&#62;
10.275 - 24 queries&#60;/p&#62;
&#60;p&#62;There is probably a configuration issue with your server.&#60;br /&#62;
Let me know if you have root access. It's going to be difficult to help because you are on Microsoft IIS 7.0 but I'll see if there's anything we can do.&#60;/p&#62;
&#60;p&#62;ps. are you running this on your home computer?&#60;br /&#62;
If so, consider moving your hosting setup to xampp, though it still might be remotely possible to install eaccelerator with your IIS configuration.
&#60;/p&#62;</description>
</item>
<item>
<title>peterve on "bbpress 0.9.0.2 slow"</title>
<link>http://bbpress.org/forums/topic/bbpress-0902-slow#post-20393</link>
<pubDate>Sun, 02 Nov 2008 10:07:33 +0000</pubDate>
<dc:creator>peterve</dc:creator>
<guid isPermaLink="false">20393@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Hello,&#60;/p&#62;
&#60;p&#62;I have been running wordpress 2.6.x and bbpress 0.9.0.2 on the same server&#60;br /&#62;
While wordpress (with many plugins) runs pretty fast, my bbpress forum appears to be very slow&#60;br /&#62;
Even without plugins, I had the impression bbpress runs much slower than wordpress (with plugins)&#60;/p&#62;
&#60;p&#62;How can I troubleshoot this ?&#60;/p&#62;
&#60;p&#62;thanks
&#60;/p&#62;</description>
</item>
<item>
<title>chrishajer on "INSERT queries for new Topic and new Post"</title>
<link>http://bbpress.org/forums/topic/insert-queries-for-new-topic-and-new-post#post-20278</link>
<pubDate>Mon, 27 Oct 2008 15:27:17 +0000</pubDate>
<dc:creator>chrishajer</dc:creator>
<guid isPermaLink="false">20278@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;So much for my IIS guess.  I am not having this trouble on a Linux server, MySQL 4.0.28-log,  Apache 1.3.x, PHP 5.2.6 with Alpha 2.
&#60;/p&#62;</description>
</item>
<item>
<title>rowoot on "INSERT queries for new Topic and new Post"</title>
<link>http://bbpress.org/forums/topic/insert-queries-for-new-topic-and-new-post#post-20237</link>
<pubDate>Sat, 25 Oct 2008 18:13:50 +0000</pubDate>
<dc:creator>rowoot</dc:creator>
<guid isPermaLink="false">20237@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;i am using apache 2.2.9. php 5.2.6
&#60;/p&#62;</description>
</item>
<item>
<title>chrishajer on "INSERT queries for new Topic and new Post"</title>
<link>http://bbpress.org/forums/topic/insert-queries-for-new-topic-and-new-post#post-20087</link>
<pubDate>Tue, 21 Oct 2008 14:43:40 +0000</pubDate>
<dc:creator>chrishajer</dc:creator>
<guid isPermaLink="false">20087@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Sounds like both of you are on IIS web servers?
&#60;/p&#62;</description>
</item>
<item>
<title>rowoot on "INSERT queries for new Topic and new Post"</title>
<link>http://bbpress.org/forums/topic/insert-queries-for-new-topic-and-new-post#post-20079</link>
<pubDate>Tue, 21 Oct 2008 08:29:29 +0000</pubDate>
<dc:creator>rowoot</dc:creator>
<guid isPermaLink="false">20079@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I too am facing the same problem.&#60;/p&#62;
&#60;p&#62;I am trying on a local server (apache) wp2.6.2+bbpress alpha releases and also the latest version from the trunk&#60;/p&#62;
&#60;p&#62;I have tried on ,&#60;br /&#62;
mysql version 5.0.16-nt&#60;br /&#62;
mysql version is 5.0.67-community nt&#60;/p&#62;
&#60;p&#62;I think it is a bug.
&#60;/p&#62;</description>
</item>
<item>
<title>ikailo on "INSERT queries for new Topic and new Post"</title>
<link>http://bbpress.org/forums/topic/insert-queries-for-new-topic-and-new-post#post-19586</link>
<pubDate>Wed, 01 Oct 2008 13:18:10 +0000</pubDate>
<dc:creator>ikailo</dc:creator>
<guid isPermaLink="false">19586@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Ver 14.12 Distrib 5.0.45, for Win32 (ia32)&#60;br /&#62;
5.0.45-community-nt MySQL Community Edition (GPL)
&#60;/p&#62;</description>
</item>
<item>
<title>chrishajer on "INSERT queries for new Topic and new Post"</title>
<link>http://bbpress.org/forums/topic/insert-queries-for-new-topic-and-new-post#post-19581</link>
<pubDate>Wed, 01 Oct 2008 03:32:12 +0000</pubDate>
<dc:creator>chrishajer</dc:creator>
<guid isPermaLink="false">19581@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;What &#60;strong&#62;is&#60;/strong&#62; your MySQL version?
&#60;/p&#62;</description>
</item>
<item>
<title>ikailo on "INSERT queries for new Topic and new Post"</title>
<link>http://bbpress.org/forums/topic/insert-queries-for-new-topic-and-new-post#post-19579</link>
<pubDate>Wed, 01 Oct 2008 03:05:04 +0000</pubDate>
<dc:creator>ikailo</dc:creator>
<guid isPermaLink="false">19579@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;This was originally going to be an &#34;It's not working!&#34; post, but I made some progress. Now it's &#34;Is what I did ok?&#34; post.&#60;/p&#62;
&#60;p&#62;I kept getting a&#34;This Topic is Closed&#34; error every time I tried to create a new topic.  Traced it back to the insert statement in 'bb_insert_topic' in functions.php. The database was responding with the error of  &#34;The value ' '  is not a valid integer for column 'topic_id'.  (I am paraphrasing, I don't have the exact response in front of me)&#60;/p&#62;
&#60;p&#62;I suspected it had something to do with the fact that the topic_id value is being supplied to MySql, but it is set to be an auto-increment / not null field.&#60;/p&#62;
&#60;p&#62;So, I commented out in the $default array definition in 'bb_insert_topic':&#60;br /&#62;
&#60;code&#62;// 'topic_id' =&#38;gt; false, // accepts ids or slugs&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;and I changed this line:&#60;br /&#62;
&#60;code&#62;unset( $default['topic_id'], $defaults['tags'] );&#60;/code&#62;&#60;br /&#62;
to this:&#60;br /&#62;
&#60;code&#62;unset( $args['topic_id'], $defaults['tags'] );&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;Did the same thing under the 'bb_insert_post' function in the same file, but for the 'post_id' variables.&#60;/p&#62;
&#60;p&#62;Presto. Everything seems to work OK now.&#60;/p&#62;
&#60;p&#62;Could this issue be specific to my version of MySql? Although it is strange, because the original query works just fine using a third party tool (SQLyog).&#60;/p&#62;
&#60;p&#62;Has anyone encountered this issue before?  Or - can anyone comment on the validity of my changes, and if they might cause issues going forward?&#60;/p&#62;
&#60;p&#62;Finally - should this be logged as a bug?&#60;/p&#62;
&#60;p&#62;Thanks!&#60;/p&#62;
&#60;p&#62;WP 2.6, BB 1.0, IIS 6.
&#60;/p&#62;</description>
</item>
<item>
<title>chrishajer on "Infinite Loops on posts and profiles with IIS"</title>
<link>http://bbpress.org/forums/topic/infinite-loops-on-posts-and-profiles#post-17406</link>
<pubDate>Fri, 18 Jul 2008 02:38:04 +0000</pubDate>
<dc:creator>chrishajer</dc:creator>
<guid isPermaLink="false">17406@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Awesome _ck_ - thank you.
&#60;/p&#62;</description>
</item>
<item>
<title>Anonymous on "Infinite Loops on posts and profiles with IIS"</title>
<link>http://bbpress.org/forums/topic/infinite-loops-on-posts-and-profiles#post-17399</link>
<pubDate>Thu, 17 Jul 2008 21:48:10 +0000</pubDate>
<dc:creator>Anonymous</dc:creator>
<guid isPermaLink="false">17399@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;You sir, are an absolute GENIUS!&#60;/p&#62;
&#60;p&#62;It works!&#60;/p&#62;
&#60;p&#62;I cannot thank you enough, thanks very much.&#60;/p&#62;
&#60;p&#62;Just to confirm that this is only need for IIS7 as IIS6 works just fine with Bbpress.&#60;/p&#62;
&#60;p&#62;Seriously, thank you _ck_ I owe you a drink or something!&#60;/p&#62;
&#60;p&#62;M
&#60;/p&#62;</description>
</item>
<item>
<title>_ck_ on "Infinite Loops on posts and profiles with IIS"</title>
<link>http://bbpress.org/forums/topic/infinite-loops-on-posts-and-profiles#post-17396</link>
<pubDate>Thu, 17 Jul 2008 16:14:59 +0000</pubDate>
<dc:creator>_ck_</dc:creator>
<guid isPermaLink="false">17396@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I have a crazy idea to try to &#34;fake out&#34; bbPress and make it think request_uri actually exists on the IIS server so it doesn't try to (incorrectly) calculate it itself.&#60;/p&#62;
&#60;p&#62;Try saving and installing this as a plugin with a leading underscore, ie. &#60;code&#62;_IIS-fix.php&#60;/code&#62;&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;?php
/*
Plugin Name: IIS request_uri fix
*/
    if (isset($_SERVER[&#38;#39;HTTP_REQUEST_URI&#38;#39;])){
        $_SERVER[&#38;#39;REQUEST_URI&#38;#39;] = $_SERVER[&#38;#39;HTTP_REQUEST_URI&#38;#39;];
    }
    else{
        if(isset($_SERVER[&#38;#39;SCRIPT_NAME&#38;#39;]))
            $_SERVER[&#38;#39;HTTP_REQUEST_URI&#38;#39;] = $_SERVER[&#38;#39;SCRIPT_NAME&#38;#39;];
        else
            $_SERVER[&#38;#39;HTTP_REQUEST_URI&#38;#39;] = $_SERVER[&#38;#39;PHP_SELF&#38;#39;];
        if($_SERVER[&#38;#39;QUERY_STRING&#38;#39;]){
            $_SERVER[&#38;#39;HTTP_REQUEST_URI&#38;#39;] .=  &#38;#39;?&#38;#39; . $_SERVER[&#38;#39;QUERY_STRING&#38;#39;];
        }
        $_SERVER[&#38;#39;REQUEST_URI&#38;#39;] = $_SERVER[&#38;#39;HTTP_REQUEST_URI&#38;#39;];
    }
?&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;no activation required, should auto-activate - just delete if it causes problems
&#60;/p&#62;</description>
</item>
<item>
<title>_ck_ on "Infinite Loops on posts and profiles with IIS"</title>
<link>http://bbpress.org/forums/topic/infinite-loops-on-posts-and-profiles#post-17395</link>
<pubDate>Thu, 17 Jul 2008 15:44:29 +0000</pubDate>
<dc:creator>_ck_</dc:creator>
<guid isPermaLink="false">17395@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I'm taking a look at this now for what it's worth.&#60;br /&#62;
Not sure if I'll be able to help but let's see.&#60;/p&#62;
&#60;p&#62;IIS is sending a refresh header:&#60;br /&#62;
&#60;code&#62;Refresh	 0;url=http://www.louisecooper.com/journal/messageboard/topic.php?id=20&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;content length is zero, so nothing is being sent&#60;/p&#62;
&#60;p&#62;Apparently IIS returns &#34;request_uri&#34; differently than other servers. I suspect it's a similar problem to what they went through with drupal here:  &#60;a href=&#34;http://drupal.org/node/166095&#34; rel=&#34;nofollow&#34;&#62;http://drupal.org/node/166095&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Unfortunately it's way over my head to fix. I suspect it will take someone like MDA to fix it.
&#60;/p&#62;</description>
</item>
<item>
<title>chrishajer on "Infinite Loops on posts and profiles with IIS"</title>
<link>http://bbpress.org/forums/topic/infinite-loops-on-posts-and-profiles#post-17311</link>
<pubDate>Tue, 15 Jul 2008 19:42:50 +0000</pubDate>
<dc:creator>chrishajer</dc:creator>
<guid isPermaLink="false">17311@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;How about IIS access logs or error logs?
&#60;/p&#62;</description>
</item>
<item>
<title>Anonymous on "Infinite Loops on posts and profiles with IIS"</title>
<link>http://bbpress.org/forums/topic/infinite-loops-on-posts-and-profiles#post-17291</link>
<pubDate>Tue, 15 Jul 2008 07:43:19 +0000</pubDate>
<dc:creator>Anonymous</dc:creator>
<guid isPermaLink="false">17291@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Yeah I've tried what you've tried there with the re-directs and yep, it just dies.&#60;/p&#62;
&#60;p&#62;But no meta-redirects are used in my sites at all. For experimentation I tried the domain with two different domain bindings, multiple domain bindings. But no difference.&#60;/p&#62;
&#60;p&#62;I tried an older version of bbpress, same problem. I installed bbpress fresh into a different domain, same problem.&#60;/p&#62;
&#60;p&#62;I noticed this guy here had a similar prob a while back:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://bbpress.org/forums/topic/forum-and-topic-pages-redirects-to-page-1&#34; rel=&#34;nofollow&#34;&#62;http://bbpress.org/forums/topic/forum-and-topic-pages-redirects-to-page-1&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;But never said how he solved it, I might join up to his forum and ask him....&#60;br /&#62;
But yes this is driving me crazy...on a plus note when I finally fix it I can fresh install bbpress in about two minutes ;-)&#60;/p&#62;
&#60;p&#62;Any other suggestions from folk greatly appreciated. And thanks for ongoing help Chris.
&#60;/p&#62;</description>
</item>
<item>
<title>chrishajer on "Infinite Loops on posts and profiles with IIS"</title>
<link>http://bbpress.org/forums/topic/infinite-loops-on-posts-and-profiles#post-17282</link>
<pubDate>Mon, 14 Jul 2008 23:32:06 +0000</pubDate>
<dc:creator>chrishajer</dc:creator>
<guid isPermaLink="false">17282@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I see :-)   So you turn on permalinks to prevent people from viewing anything and putting their request into an infinite loop.  Got it.&#60;/p&#62;
&#60;p&#62;I see now that it's still broken.  Are you sure there is nothing causing a meta redirect?  The only thing that stops the looping for me is to disable meta redirects in my browser.  Other than that, it loops forever.
&#60;/p&#62;</description>
</item>

</channel>
</rss>
