Answers for "install multiple php versions windows xampp"

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
1

install multiple php versions windows xampp

extension_dir = "ext"
Posted by: Guest on June-12-2020
0

install multiple php versions windows xampp

<VirtualHost localhost56:80>
    DocumentRoot "C:\xampp\htdocs56"
    ServerName localhost56
    <Directory "C:\xampp\htdocs56">
        Require all granted    
    </Directory>
    <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
0

install multiple php versions windows xampp

<Directory "C:\xampp\htdocs\my_old_project1">
    <FilesMatch "\.php$">
        SetHandler application/x-httpd-php56-cgi
    </FilesMatch>
</Directory>

<Directory "C:\xampp\htdocs\my_old_project2">
    <FilesMatch "\.php$">
        SetHandler application/x-httpd-php56-cgi
    </FilesMatch>
</Directory>
Posted by: Guest on June-12-2020
0

install multiple php versions windows xampp

SetEnv PHPRC "\\path\\to\\xampp\\php"
Posted by: Guest on June-12-2020

Code answers related to "install multiple php versions windows xampp"

Browse Popular Code Answers by Language