Own PHP-Versions with FastCGI

Manuals and useful tips how to configurate WWebserver
Post Reply
User avatar
mwiede
Site Admin
Posts: 34
Joined: Fri Oct 27, 2017 12:56 pm
Location: Germany
Contact:

Own PHP-Versions with FastCGI

Post by mwiede » Mon Oct 30, 2017 11:14 am

1. Install your favourite PHP-Version: http://windows.php.net/download/
(For FastCGI you can also use non thread safe versions.)

2. Configurate FastCGI in cfg\cgi.txt

Disable PHPBuildIn:

Code: Select all

# .php;PHPBuildIn
Enable FastCGI for example:

Code: Select all

.php;PHPFCGI C:\php7.1.11\php-cgi.exe -c "C:\php7.1.11\php.ini"
-c Option for location of php.ini

3. Restart the WWebserver

Post Reply