How can I change the PHP version to 5.2 on a server using either an .htaccess of php.ini file?
相关问题
- Views base64 encoded blob in HTML with PHP
- Laravel Option Select - Default Issue
- PHP Recursively File Folder Scan Sorted by Modific
- Can php detect if javascript is on or not?
- Using similar_text and strpos together
I take it you want to process e.g. .php3 files with php 3.x.
You can't switch between php versions like this, but you might be able to do it by setting up a proxy server that distributes the query to one of several servers (one for each PHP version).
There might also be some apache hack that works by calling the cgi-bin mode php in FastCGI mode. See the linked answer for this.
According to https://www.first2host.co.uk/f/change-php-version-php-ini/, adding the following line to your php.ini file will change you to PHP version 5.2:
It only works if your host is first2host though, I reckon.
Adding
to your .htaccess might work.
This question was solveable through a simple google search:
http://kb.siteground.com/article/How_to_have_different_Php__MySQL_versions.html
Can't see why this shouldn't work in your case as well, even though the article is host specific.