// Add a check on required PHP version in installer

git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@12601 b9a71923-0436-4b27-9f14-aed3839534dd
This commit is contained in:
rMalie
2012-01-23 12:38:34 +00:00
parent c012fb57e4
commit 05dfb8abd4
+4
View File
@@ -25,6 +25,10 @@
* International Registered Trademark & Property of PrestaShop SA
*/
// Check PHP version
if (version_compare(PHP_VERSION, '5.1', '<'))
die('You need at least PHP 5.1 to run PrestaShop. Your current PHP version is '.PHP_VERSION);
// Generate common constants
define('PS_INSTALLATION_IN_PROGRESS', true);
define('_PS_INSTALL_PATH_', dirname(__FILE__).'/');