<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Using WordPress on IIS7</title>
	<atom:link href="http://robboek.com/2009/01/03/using-wordpress-on-iis7/feed/" rel="self" type="application/rss+xml" />
	<link>http://robboek.com/2009/01/03/using-wordpress-on-iis7/</link>
	<description>Husband, Father, SQL Server Consultant, Tech Geek.</description>
	<lastBuildDate>Sat, 19 Jun 2010 09:09:55 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Mason</title>
		<link>http://robboek.com/2009/01/03/using-wordpress-on-iis7/comment-page-1/#comment-2268</link>
		<dc:creator>Mason</dc:creator>
		<pubDate>Fri, 02 Oct 2009 16:33:11 +0000</pubDate>
		<guid isPermaLink="false">http://robboek.com/?p=65#comment-2268</guid>
		<description>Found a solution on the EE forums that I thought didn&#039;t work, but then realized it was because of my &#039;staging&#039; subfolder (you would want to replace this or remove it, depending on your setup).  Hope this helps anyone with a wordpress or ExpressionEngine installation on windows hosting on godaddy:

&lt;configuration&gt;
    &lt;system.webServer&gt;
        &lt;defaultDocument&gt;
            &lt;files&gt;
                &lt;remove value=&quot;default.aspx&quot; /&gt;
                &lt;remove value=&quot;iisstart.htm&quot; /&gt;
                &lt;remove value=&quot;index.html&quot; /&gt;
                &lt;remove value=&quot;index.htm&quot; /&gt;
                &lt;remove value=&quot;Default.asp&quot; /&gt;
                &lt;remove value=&quot;Default.htm&quot; /&gt;
                &lt;add value=&quot;index.php&quot; /&gt;
            &lt;/files&gt;
        &lt;/defaultDocument&gt;
        &lt;rewrite&gt;
            &lt;rules&gt;
                &lt;rule name=&quot;Imported Rule 1&quot; stopProcessing=&quot;true&quot;&gt;
                    &lt;match url=&quot;^(.*)$&quot; ignoreCase=&quot;false&quot; /&gt;
                    &lt;conditions logicalGrouping=&quot;MatchAll&quot;&gt;
                        &lt;add input=&quot;{R:1}&quot; negate=&quot;true&quot; pattern=&quot;^(pdfs&#124;css&#124;js&#124;swf&#124;images&#124;system&#124;tools&#124;themes&#124;index\.php)&quot; /&gt;
                    &lt;/conditions&gt;
                    &lt;action type=&quot;Rewrite&quot; url=&quot;/staging/index.php/{R:1}&quot; /&gt;
                &lt;/rule&gt;
            &lt;/rules&gt;
        &lt;/rewrite&gt;
    &lt;/system.webServer&gt;
&lt;/configuration&gt;</description>
		<content:encoded><![CDATA[<p>Found a solution on the EE forums that I thought didn&#8217;t work, but then realized it was because of my &#8217;staging&#8217; subfolder (you would want to replace this or remove it, depending on your setup).  Hope this helps anyone with a wordpress or ExpressionEngine installation on windows hosting on godaddy:</p>
<p>&lt;configuration&gt;<br />
    &lt;system.webServer&gt;<br />
        &lt;defaultDocument&gt;<br />
            &lt;files&gt;<br />
                &lt;remove value=&#8221;default.aspx&#8221; /&gt;<br />
                &lt;remove value=&#8221;iisstart.htm&#8221; /&gt;<br />
                &lt;remove value=&#8221;index.html&#8221; /&gt;<br />
                &lt;remove value=&#8221;index.htm&#8221; /&gt;<br />
                &lt;remove value=&#8221;Default.asp&#8221; /&gt;<br />
                &lt;remove value=&#8221;Default.htm&#8221; /&gt;<br />
                &lt;add value=&#8221;index.php&#8221; /&gt;<br />
            &lt;/files&gt;<br />
        &lt;/defaultDocument&gt;<br />
        &lt;rewrite&gt;<br />
            &lt;rules&gt;<br />
                &lt;rule name=&#8221;Imported Rule 1&#8243; stopProcessing=&#8221;true&#8221;&gt;<br />
                    &lt;match url=&#8221;^(.*)$&#8221; ignoreCase=&#8221;false&#8221; /&gt;<br />
                    &lt;conditions logicalGrouping=&#8221;MatchAll&#8221;&gt;<br />
                        &lt;add input=&#8221;{R:1}&#8221; negate=&#8221;true&#8221; pattern=&#8221;^(pdfs|css|js|swf|images|system|tools|themes|index\.php)&#8221; /&gt;<br />
                    &lt;/conditions&gt;<br />
                    &lt;action type=&#8221;Rewrite&#8221; url=&#8221;/staging/index.php/{R:1}&#8221; /&gt;<br />
                &lt;/rule&gt;<br />
            &lt;/rules&gt;<br />
        &lt;/rewrite&gt;<br />
    &lt;/system.webServer&gt;<br />
&lt;/configuration&gt;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mason</title>
		<link>http://robboek.com/2009/01/03/using-wordpress-on-iis7/comment-page-1/#comment-2267</link>
		<dc:creator>Mason</dc:creator>
		<pubDate>Thu, 01 Oct 2009 21:11:43 +0000</pubDate>
		<guid isPermaLink="false">http://robboek.com/?p=65#comment-2267</guid>
		<description>Shoot, removed my code.  Let me try again:

configuration&gt;
  system.webServer&gt;
    rewrite&gt;
      rules&gt;
 rule name=&quot;Rewrite Rule&quot;&gt;
  match url=&quot;.*&quot; /&gt;
  conditions&gt;
   add input=&quot;{StaticRewrites:{REQUEST_URI}}&quot; pattern=&quot;(.+)&quot; /&gt;
  /conditions&gt;
  action type=&quot;Rewrite&quot; url=&quot;{C:1}&quot;/&gt;
 /rule&gt;
      /rules&gt;
      rewriteMaps&gt;
  rewriteMap name=&quot;StaticRewrites&quot; defaultValue=&quot;&quot;&gt;
    add key=&quot;/staging/blog&quot; value=&quot;/staging/index.php?blog&quot; /&gt;
  /rewriteMap&gt;
      /rewriteMaps&gt;
    /rewrite&gt;
  /system.webServer&gt;
/configuration&gt;</description>
		<content:encoded><![CDATA[<p>Shoot, removed my code.  Let me try again:</p>
<p>configuration&gt;<br />
  system.webServer&gt;<br />
    rewrite&gt;<br />
      rules&gt;<br />
 rule name=&#8221;Rewrite Rule&#8221;&gt;<br />
  match url=&#8221;.*&#8221; /&gt;<br />
  conditions&gt;<br />
   add input=&#8221;{StaticRewrites:{REQUEST_URI}}&#8221; pattern=&#8221;(.+)&#8221; /&gt;<br />
  /conditions&gt;<br />
  action type=&#8221;Rewrite&#8221; url=&#8221;{C:1}&#8221;/&gt;<br />
 /rule&gt;<br />
      /rules&gt;<br />
      rewriteMaps&gt;<br />
  rewriteMap name=&#8221;StaticRewrites&#8221; defaultValue=&#8221;"&gt;<br />
    add key=&#8221;/staging/blog&#8221; value=&#8221;/staging/index.php?blog&#8221; /&gt;<br />
  /rewriteMap&gt;<br />
      /rewriteMaps&gt;<br />
    /rewrite&gt;<br />
  /system.webServer&gt;<br />
/configuration&gt;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mason</title>
		<link>http://robboek.com/2009/01/03/using-wordpress-on-iis7/comment-page-1/#comment-2266</link>
		<dc:creator>Mason</dc:creator>
		<pubDate>Thu, 01 Oct 2009 21:09:51 +0000</pubDate>
		<guid isPermaLink="false">http://robboek.com/?p=65#comment-2266</guid>
		<description>Hi.  I&#039;m setting up expression engine on GoDaddy windows economy hosting (the $4.99 option; turns out it support URL Rewrite now), and I am trying to remove index.php and index.php/site from the url.  After much trial and error (and many many 500 errors) I have it working for a single url as such:


  
    
      
 
  
  
   
  
  
 
      
      
  
    
  
      
    
  


As you can see, the site is in a staging folder, so I&#039;m crossing my fingers that this solution will work by removing ./staging&#039; when I relocate to root, but I would also like to expand it to rewrite index.php? out of the url always (not just for /blog), but every attempt has resulted in 500 errors (many many many...).  Expression Engine is installed into the staging folder, blog is just a template I have.  So would anyone in the know please help me rewrite this rewrite to work globally?</description>
		<content:encoded><![CDATA[<p>Hi.  I&#8217;m setting up expression engine on GoDaddy windows economy hosting (the $4.99 option; turns out it support URL Rewrite now), and I am trying to remove index.php and index.php/site from the url.  After much trial and error (and many many 500 errors) I have it working for a single url as such:</p>
<p>As you can see, the site is in a staging folder, so I&#8217;m crossing my fingers that this solution will work by removing ./staging&#8217; when I relocate to root, but I would also like to expand it to rewrite index.php? out of the url always (not just for /blog), but every attempt has resulted in 500 errors (many many many&#8230;).  Expression Engine is installed into the staging folder, blog is just a template I have.  So would anyone in the know please help me rewrite this rewrite to work globally?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mullikin</title>
		<link>http://robboek.com/2009/01/03/using-wordpress-on-iis7/comment-page-1/#comment-2261</link>
		<dc:creator>Mullikin</dc:creator>
		<pubDate>Mon, 28 Sep 2009 17:14:26 +0000</pubDate>
		<guid isPermaLink="false">http://robboek.com/?p=65#comment-2261</guid>
		<description>Get the same error  how do rename your web config.

&lt;a href=&quot;http://hydraulichosereels.com&quot; rel=&quot;nofollow&quot;&gt;Hose Reels&lt;/a&gt;</description>
		<content:encoded><![CDATA[<p>Get the same error  how do rename your web config.</p>
<p><a href="http://hydraulichosereels.com" rel="nofollow">Hose Reels</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bill</title>
		<link>http://robboek.com/2009/01/03/using-wordpress-on-iis7/comment-page-1/#comment-2233</link>
		<dc:creator>Bill</dc:creator>
		<pubDate>Fri, 07 Aug 2009 04:32:38 +0000</pubDate>
		<guid isPermaLink="false">http://robboek.com/?p=65#comment-2233</guid>
		<description>Hi all, 
I, too, am struggling with the 500 error on GoDaddy. Not using rewriting, just trying to get wordpress working. I started a support ticket with them, and they told me (after a week) that it was a problem with my web.config. No other details, of course, since it is &quot;third party software&quot; and they don&#039;t support it. However, when I rename my web.config, the 500 disappears entirely and my admin pages work great. Trouble is, I need it, kinda, for the rest of my site, which is .NET. Any idea what wordpress might be looking for in there?</description>
		<content:encoded><![CDATA[<p>Hi all,<br />
I, too, am struggling with the 500 error on GoDaddy. Not using rewriting, just trying to get wordpress working. I started a support ticket with them, and they told me (after a week) that it was a problem with my web.config. No other details, of course, since it is &#8220;third party software&#8221; and they don&#8217;t support it. However, when I rename my web.config, the 500 disappears entirely and my admin pages work great. Trouble is, I need it, kinda, for the rest of my site, which is .NET. Any idea what wordpress might be looking for in there?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: korey kashmer</title>
		<link>http://robboek.com/2009/01/03/using-wordpress-on-iis7/comment-page-1/#comment-2225</link>
		<dc:creator>korey kashmer</dc:creator>
		<pubDate>Sun, 21 Jun 2009 21:23:08 +0000</pubDate>
		<guid isPermaLink="false">http://robboek.com/?p=65#comment-2225</guid>
		<description>hey guys, i am having the godaddy 500 error as well. Not sure what I am doing wrong here. I have www.maindomain.com/blog as the location. I dropped web.config, bin folder with files and rules file into the blog folder. also set permissions on blog folder in godaddy interface to read and write and also setup bin folder in iis. Not sure what else to do here.</description>
		<content:encoded><![CDATA[<p>hey guys, i am having the godaddy 500 error as well. Not sure what I am doing wrong here. I have <a href="http://www.maindomain.com/blog" rel="nofollow">http://www.maindomain.com/blog</a> as the location. I dropped web.config, bin folder with files and rules file into the blog folder. also set permissions on blog folder in godaddy interface to read and write and also setup bin folder in iis. Not sure what else to do here.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: medcl</title>
		<link>http://robboek.com/2009/01/03/using-wordpress-on-iis7/comment-page-1/#comment-2216</link>
		<dc:creator>medcl</dc:creator>
		<pubDate>Thu, 11 Jun 2009 08:28:32 +0000</pubDate>
		<guid isPermaLink="false">http://robboek.com/?p=65#comment-2216</guid>
		<description>to handle 500 error is easy,login into godaddy webcontrol,and go to filemanage,and check your blog folder,and then click permissions,and set writable,so the 500 error will gone.</description>
		<content:encoded><![CDATA[<p>to handle 500 error is easy,login into godaddy webcontrol,and go to filemanage,and check your blog folder,and then click permissions,and set writable,so the 500 error will gone.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ash</title>
		<link>http://robboek.com/2009/01/03/using-wordpress-on-iis7/comment-page-1/#comment-1118</link>
		<dc:creator>Ash</dc:creator>
		<pubDate>Fri, 10 Apr 2009 14:25:15 +0000</pubDate>
		<guid isPermaLink="false">http://robboek.com/?p=65#comment-1118</guid>
		<description>Try adding:

RewriteBase /blog/

as the second line of your rules where &quot;/blog/&quot; is the path from the root directory to the root of your blog.

That fixed this error for me. Unfortunately I&#039;m still stuck with the 500 errors on any of the blog admin pages. The blog itself is fine, the admin stuff either hangs or gets the errors.</description>
		<content:encoded><![CDATA[<p>Try adding:</p>
<p>RewriteBase /blog/</p>
<p>as the second line of your rules where &#8220;/blog/&#8221; is the path from the root directory to the root of your blog.</p>
<p>That fixed this error for me. Unfortunately I&#8217;m still stuck with the 500 errors on any of the blog admin pages. The blog itself is fine, the admin stuff either hangs or gets the errors.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: cinebrief dev blog &#187; welcome to the cinebrief dev blog</title>
		<link>http://robboek.com/2009/01/03/using-wordpress-on-iis7/comment-page-1/#comment-1079</link>
		<dc:creator>cinebrief dev blog &#187; welcome to the cinebrief dev blog</dc:creator>
		<pubDate>Thu, 09 Apr 2009 15:43:30 +0000</pubDate>
		<guid isPermaLink="false">http://robboek.com/?p=65#comment-1079</guid>
		<description>[...] setting it up for Wordpress permalinks. So that&#8217;s part of the reason I setup this blog. This is the post I&#8217;m using as the basis for my [...]</description>
		<content:encoded><![CDATA[<p>[...] setting it up for Wordpress permalinks. So that&#8217;s part of the reason I setup this blog. This is the post I&#8217;m using as the basis for my [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dude</title>
		<link>http://robboek.com/2009/01/03/using-wordpress-on-iis7/comment-page-1/#comment-839</link>
		<dc:creator>dude</dc:creator>
		<pubDate>Fri, 03 Apr 2009 21:41:45 +0000</pubDate>
		<guid isPermaLink="false">http://robboek.com/?p=65#comment-839</guid>
		<description>to have godaddy work, you need to add the bin directory on the IIS Settings from the godaddy admin. Just add the directory and wait a couple of minutes , then just copy the dll and pdb file manually. 
BUT i get a new error:
The virtual path &#039;/index.php/ ..... .bla bla/&#039; maps to another application, which is not allowed
so it looks like .net security getting in the way, i&#039;ve seen other posts with the same problem, 
any solutions to this ?</description>
		<content:encoded><![CDATA[<p>to have godaddy work, you need to add the bin directory on the IIS Settings from the godaddy admin. Just add the directory and wait a couple of minutes , then just copy the dll and pdb file manually.<br />
BUT i get a new error:<br />
The virtual path &#8216;/index.php/ &#8230;.. .bla bla/&#8217; maps to another application, which is not allowed<br />
so it looks like .net security getting in the way, i&#8217;ve seen other posts with the same problem,<br />
any solutions to this ?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
