Answers for "xampp change vesion of php"

PHP
1

install multiple php versions windows xampp

Listen 8056
<VirtualHost *:8056>
    <FilesMatch ".php$">
        SetHandler application/x-httpd-php56-cgi
    </FilesMatch>
</VirtualHost>
Posted by: Guest on June-12-2020
0

install multiple php versions windows xampp

ScriptAlias /php56 "C:/xampp/php56"
Action application/x-httpd-php56-cgi /php56/php-cgi.exe
<Directory "C:/xampp/php56">
    AllowOverride None
    Options None
    Require all denied
    <Files "php-cgi.exe">
        Require all granted
    </Files>
</Directory>
Posted by: Guest on June-12-2020

Browse Popular Code Answers by Language