• If you are still using CentOS 7.9, it's time to convert to Alma 8 with the free centos2alma tool by Plesk or Plesk Migrator. Please let us know your experiences or concerns in this thread:
    CentOS2Alma discussion
  • Please beaware of a breaking change in the REST API on the next Plesk release (18.0.62).
    Starting from Plesk Obsidian 18.0.62, requests to REST API containing the Content-Type header with a media-type directive other than “application/json” will result in the HTTP “415 Unsupported Media Type” client error response code. Read more here

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