The PHP program is not able to display the results gradually in the default settings of IIS. But in the FTP space can be instantaneous output, research for a long time, finally found a solution.
The approach is as follows:
First of all:
Open file C:\Windows\System32\inetsrv\config\applicationHost.config, note If you are a 64-bit system, this file must be opened with 64-bit editing software, 32-bit software open will prompt the file does not exist , you can use the system's own Notepad notepad to open it. Find " > This paragraph, add the following light background code on the line, that is, PHP this handler inside add responsebufferlimit= "0".
<add name= "php_via_fastcgi" path= "*.php" verb= "*" modules= "fastcgimodule" scriptprocessor= " E:\PHPCMS\PHP\php-cgi.exe " resourcetype=" either " responsebufferlimit= "0" />
Secondly:
Put the output_buffering inside the php.ini = Off.
:
ok, running, successful implementation of the immediate output.
Original address: http://blog.csdn.net/aerchi/article/details/38397469
Author Address: www.aerchi.com