<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>可乐博 &#187; php</title>
	<atom:link href="http://keleblog.com/tag/php/feed/" rel="self" type="application/rss+xml" />
	<link>http://keleblog.com</link>
	<description></description>
	<lastBuildDate>Fri, 03 Sep 2010 01:09:24 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>64位系统IIS7中关于PHP的404.17错误</title>
		<link>http://keleblog.com/2009/05/31/64bit-iis7-php-404/</link>
		<comments>http://keleblog.com/2009/05/31/64bit-iis7-php-404/#comments</comments>
		<pubDate>Sun, 31 May 2009 07:54:01 +0000</pubDate>
		<dc:creator>泥人</dc:creator>
				<category><![CDATA[好好学习]]></category>
		<category><![CDATA[404.17]]></category>
		<category><![CDATA[64位]]></category>
		<category><![CDATA[IIS7]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.keleblog.com/2009/05/31/64%e4%bd%8d%e7%b3%bb%e7%bb%9fiis7%e4%b8%ad%e5%85%b3%e4%ba%8ephp%e7%9a%8440417%e9%94%99%e8%af%af/</guid>
		<description><![CDATA[If you&#x2019;re getting&#x2026; &#34;HTTP Error 404.17 &#8211; Not Found &#8211; The requested content appears to be script and will not be served by the static file handler.&#34; &#x2026;on Vista while trying to get PHP working under IIS7 with the standard ISAPI &#34;php5isapi.dll&#34; ask yourself, are you running 64-bit? That ISAPI DLL is a 32-bit DLL, [...]]]></description>
			<content:encoded><![CDATA[<p>If you&#x2019;re getting&#x2026; </p>
<blockquote><p><em><strong>&quot;HTTP Error 404.17 &#8211; Not Found &#8211; The requested content appears to be script and will not be served by the static file handler.&quot;</strong></em></p>
</blockquote>
<p>&#x2026;on Vista while trying to get PHP working under IIS7 with the standard ISAPI &quot;php5isapi.dll&quot; ask yourself, <em>are you running 64-bit?</em> That ISAPI DLL is a 32-bit DLL, so you&#x2019;ll have to either change your default Application Pool to enable 32-bit, or preferably create a separate 32-bit AppPool for your PHP Application. </p>
<p>Right click on the Application Pool and select &quot;Advanced Settings&quot; then &quot;Enable 32-bit Applications.&quot; </p>
<p>基本原因就是IIS是64位和PHP不能运行.需要在应用程序池中把相应的程序池的高级属性中设置兼容32位. </p>
<p>打开应用程序池，选中后点右键&#8211;高级设置，将&#x201C;启动32位应用程序&#x201D;改为&#x201C;true&#x201D;</p>
<div style="margin-top: 15px; font-style: italic">
<p><strong>原创文章，转载请注明：</strong> 转载自<a href="http://keleblog.com/">可乐博</a>http://keleblog.com/</p>
<p><strong>本文链接地址:</strong> <a href="http://keleblog.com/2009/05/31/64bit-iis7-php-404/">64位系统IIS7中关于PHP的404.17错误</a>       <b>URL:</b>  http://keleblog.com/2009/05/31/64bit-iis7-php-404/</p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://keleblog.com/2009/05/31/64bit-iis7-php-404/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>phpinfo.php文件</title>
		<link>http://keleblog.com/2009/05/31/phpinfo-php/</link>
		<comments>http://keleblog.com/2009/05/31/phpinfo-php/#comments</comments>
		<pubDate>Sun, 31 May 2009 06:30:50 +0000</pubDate>
		<dc:creator>泥人</dc:creator>
				<category><![CDATA[好好学习]]></category>
		<category><![CDATA[info]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[探针]]></category>

		<guid isPermaLink="false">http://www.keleblog.com/?p=63</guid>
		<description><![CDATA[新建一个 .php的文件，输入下面的代码： 这个文件可以读出目前的服务器上PHP的所有配置,不过建议你配置完成后一定要把这个页面删除.非则&#8230;..嘿嘿&#8230;.小心点你的数据罗!! 原创文章，转载请注明： 转载自可乐博http://keleblog.com/ 本文链接地址: phpinfo.php文件 URL: http://keleblog.com/2009/05/31/phpinfo-php/]]></description>
			<content:encoded><![CDATA[<p>新建一个 .php的文件，输入下面的代码：<?phpphpinfo();?> 这个文件可以读出目前的服务器上PHP的所有配置,不过建议你配置完成后一定要把这个页面删除.非则&#8230;..嘿嘿&#8230;.小心点你的数据罗!!
<div style="margin-top: 15px; font-style: italic">
<p><strong>原创文章，转载请注明：</strong> 转载自<a href="http://keleblog.com/">可乐博</a>http://keleblog.com/</p>
<p><strong>本文链接地址:</strong> <a href="http://keleblog.com/2009/05/31/phpinfo-php/">phpinfo.php文件</a>       <b>URL:</b>  http://keleblog.com/2009/05/31/phpinfo-php/</p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://keleblog.com/2009/05/31/phpinfo-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
