• Inviting everyone who uses WordPress management tools in Plesk
    The Plesk team is conducting a 60-minute research session that includes an interview and a moderated usability test.
    To participate, please use this link .
    Your experience will help shape product decisions and ensure the tools better support real-world use cases.

Multiple PHP Versions in Panel on Linux

With PHP 5.4 still set on the site, run a phpinfo() page and there will be a large section on what was used previously for ./configure. For the most part, you can almost copy-paste that into the new ./config, except with some changes (e.g. 5.3 had --with-fastcgi instead of --with-cgi as in 5.4). You will also likely have to end up taking a lot of time installing all the development dependencies if you wish to use that, but, if your server doesn't hate you, you can also hopefully get away with minimal options (do NOT forget mysqlnd if those scripts use mysqli or PDO and use the functions that require it); just include the features you know you'll need (DO NOT FORGET --prefix=/path/to/customphp/ AS MENTIONED IN THE DOCS!!!) and that will hopefully be enough (sorry if this makes anyone cringe).

Alternatively, you can also use PHP-Panda! if the server was RPM-based (just sharing for future reference, moreorless).
 
Back
Top