简体   繁体   中英

strange behavior of PHP error reporting in windows server

I have successfully setup Php,Mysql and phpmyadmin in my windows server,but the problem occurs in error reporting.Here is the two cases of my problem.

CASE1

when i enable this line

error_reporting 
Production Value: E_ALL & ~E_DEPRECATED & ~E_STRICT

get all the errors of my Php script but the Phpmyadmin is crashed.it shows mbstring extension missing error.

CASE2

when i disable the above line Phpmyadmin works properly but didn't shows any error.

check your php.ini file in the root directory of your php installation. In the extensions part of the configuration you should find:

;extension=php_mbstring.dll

remove the leading ';'

 extension=php_mbstring.dll

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM