Skip to content

Instantly share code, notes, and snippets.

@nanasess
Created May 1, 2014 04:59
Show Gist options
  • Save nanasess/11444727 to your computer and use it in GitHub Desktop.
Save nanasess/11444727 to your computer and use it in GitHub Desktop.
IIS で PHP の ob_* 関数が効かない場合の対処法 ref: http://qiita.com/nanasess/items/ac002829035dbf78aa02
<configuration>
<system.webServer>
.....
<handlers>
<remove name="PHP53_via_FastCGI" />
<add name="PHP53_via_FastCGI" path="*.php" verb="GET,HEAD,POST" modules="FastCgiModule" scriptProcessor="D:\Program Files (x86)\PHP\v5.3\php-cgi.exe" resourceType="Either" requireAccess="Script" responseBufferLimit="0"/>
</handlers>
</system.webServer>
</configuration>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment