From: <ex...@us...> - 2014-01-02 08:39:29
|
Revision: 6524 http://sourceforge.net/p/web-erp/reponame/6524 Author: exsonqu Date: 2014-01-02 08:39:24 +0000 (Thu, 02 Jan 2014) Log Message: ----------- 2/1/2014 Exson: Fixed php-mbstring extension detection failure in install/index.php during installation. Modified Paths: -------------- trunk/install/index.php Modified: trunk/install/index.php =================================================================== --- trunk/install/index.php 2014-01-01 16:11:26 UTC (rev 6523) +++ trunk/install/index.php 2014-01-02 08:39:24 UTC (rev 6524) @@ -3,6 +3,10 @@ ini_set('max_execution_time', "600"); session_name('weberp_installation'); session_start(); +if(!extension_loaded('mbstring')){ + echo 'The php-mbstring extension has not been installed or loaded, please correct your php configuration first'; + exit; +} /* * Web ERP Installer |