I get this error on PHP 7.2.5. Espo is a great product unfortunately it does not work after an update...
Your PHP version is not supported by EspoCRM, please update to PHP 7.1.0 at least.
Collapse
X
-
Tags: None
-
I unzipped / untarred a new installation. php -v produces
PHP 7.3.11-1~deb10u1 (cli) (built: Oct 26 2019 14:14:18) ( NTS )
Copyright (c) 1997-2018 The PHP Group
Zend Engine v3.3.11, Copyright (c) 1998-2018 Zend Technologies
with Zend OPcache v7.3.11-1~deb10u1, Copyright (c) 1999-2018, by Zend Technologies
Comment
-
On the webserver host I issued the command php -v and supplied the version information. I can't get to Administration->System Requirements because I get the version error regardless of what page I try to load from ESPOCRM. On the webserver host, "Webserver PHP" is the same as command line PHP.Comment
-
>"Webserver PHP" is the same as command line PHP.
I believe that the php version is not appropriate.
If you are a webserver owner you can create in the localhost root directory a simple php file (for example index.php) with this code:
PHP Code:<?php phpinfo();
If you are using an Apache webserver, you can change the php version by running these commands in the terminal:
1. sudo a2dismode php5.6 (php5.6 is an example, you need to input your current webserver php version);
2. sudo a2enmode php7.3;
3. sudo service apache2 restart.
If you are using a NGINX webserver, you can change its php version by doing these:
1. In the NGINX config file that mapped to the EspoCRM directory change the fastcgi_pass to the correct one. Example:
Code:fastcgi_pass unix:/var/run/php/php5.6-fpm.sock; to fastcgi_pass unix:/var/run/php/php7.3-fpm.sock;
If you are using a host solution then you need to contact the host support service and ask them to change the php version.Comment
-
a2enmode is not found. The latest stable release of PHP under apache on debian is 7.0. Looks like I need to search for a CRM that does work with the latest stable release of debian.Comment
-
Please check this https://packages.debian.org/search?keywords=php7.3. I believe you can upgrade your PHP version.Comment
Comment