[Vtigercrm-commits] [Vtiger development] #8567: Installation wizard incorrectly reporting PHP version doesn't meet requirements
Vtiger development
vtiger-tickets at trac.vtiger.com
Fri Jun 5 08:56:55 GMT 2015
#8567: Installation wizard incorrectly reporting PHP version doesn't meet
requirements
------------------------+------------------------------------------------
Reporter: markcox | Owner: developer
Type: defect | Status: new
Priority: unassigned | Milestone: Unassigned
Component: vtigercrm | Version: 6.3.0
Severity: Medium | Keywords: Installation, Wizard, PHP, Version
------------------------+------------------------------------------------
The installation wizard incorrectly reports the PHP version doesn't meet
requirements.
Version on my setup is PHP 5.5.12-2ubuntu4.3
This occurs because of a bug in modules/Install/models/utils.php
$preinstallconfig['lbl_php_version'] = array(phpversion(), '5.5.0',
(version_compare(phpversion(), '5.5.0', '<=')));
It should be
$preinstallconfig['lbl_php_version'] = array(phpversion(), '5.5.0',
(version_compare(phpversion(), '5.5.0', '>=')));
--
Ticket URL: <http://trac.vtiger.com/cgi-bin/trac.cgi/ticket/8567>
Vtiger development <http://trac.vtiger.com/>
Vtiger CRM
More information about the vtigercrm-commits
mailing list