Answers for "xampp change php version"

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
5

update php version in xampp

Take a backup of your htdocs and data folder (subfolder of MySQL folder), reinstall upgraded version and replace those folders.

Note: In case you have changed config files like PHP (php.ini), Apache (httpd.conf) or any other, please take back up of those files as well and replace them with newly installed version.
Posted by: Guest on March-01-2021
0

install multiple php versions windows xampp

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

install multiple php versions windows xampp

<Directory "C:xampphtdocsmy_old_project1">
    <FilesMatch ".php$">
        SetHandler application/x-httpd-php56-cgi
    </FilesMatch>
</Directory>

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

Browse Popular Code Answers by Language