php – iis – The FastCGI process exceeded configured request timeout

HTTP Error 500.0 – Internal Server Error C:\php\php-cgi.exe – The FastCGI process exceeded configured request timeout %windir%\system32\inetsrv\config\applicationHost.config   <fastCgi>    <application fullPath=“C:\php\php-cgi.exe“ maxInstances=“20″ activityTimeout=“300″ requestTimeout=“300″ /> </fastCgi>   Example: <fastCgi>    <application fullPath = „C:\php\php-cgi.exe“ arguments…

php – iis – Nastavení maxAllowedContentLength

Verify the configuration/system.webServer/security/requestFiltering/requestLimits@maxAllowedContentLength setting in the applicationhost.config or web.config file. <?xml version=“1.0″ encoding=“UTF-8″?><configuration>    <system.webServer>        <defaultDocument>            <files>                <add value=“data.aspx“ />            </files>        </defaultDocument>        <directoryBrowse enabled=“true“ />      <security>        <requestFiltering>          <requestLimits maxAllowedContentLength=“4294967295″ />        </requestFiltering>      </security>    </system.webServer>    <system.web>        <identity impersonate=“true“…

php – mysql – LOAD DATA INFILE

LOAD DATA INFILE ‚c:\\nekde\\nejaky_textovy_soubor‚ INTO TABLE nazev_tabulky  FIELDS TERMINATED BY ‚|‘ ENCLOSED BY ‚\“; hodnoty polí jsou uzavřeny jednoduchými uvozovkami ‚ jednotlivá pole jsou odděleny znakem |   Příklad textového souboru: ‚hodnota_1_1’|’hodnota_1_2’|’hodnota_1_3’|‚hodnota_2_1’|’hodnota_2_2’|’hodnota_2_3’|‚hodnota_3_1’|’hodnota_3_2’|’hodnota_3_3’|