equired PHP version greater than equal to 5.4.0 AND found version is : 5.3.29 - Softaculous Prestashop not picking up correct php version

You may come across an issue while installing Prestashop via Softaculous regarding not picking up correct php version.

The error would look similar to the error below -

The following errors were found : Required PHP version greater than equal to 5.4.0 AND found version is : 5.3.29

Solution :

1. Modify the file where softaculous is installed on the server -
/usr/local/cpanel/whostmgr/docroot/cgi/softaculous/enduser/hooks/pre_install.php

2. Make a copy of pre_install.php file before you make any changes.

3. Now, add below code and replace $version = phpversion(); with $version = 5.6;

    function __pre_install()
   {

    global $soft, $software, $globals;
    // Your Code to Identify the PHP version
    // E.g
   $version = phpversion();
   define('php_version', $version);
   }

 Give a try to re-install prestashop via Softaculous and this should work for you.
  • 0 Users Found This Useful
Was this answer helpful?

Related Articles

How to reset SSH port back to default port 22?

In some situations most of us may come across a problem that we are able to log into the WHM but...

How to setup the root login alert notification email?

Its very important to keep a check on your servers and who logs into the server, From security...

How to enable Open SSL on WHM?

Before enabling open SSL, you can check whether it is already enabled on your server. Please fire...

How to install mod_pagespeed on WHM?

'mod_pagespeed' is module of Apache which is nothing but plugin which is used for compressing the...

How to enable Hot Link Protection in cPanel?

To avoid other sites to use your website's bandwidth, you can enable the hot link protection....

Powered by WHMCompleteSolution