Edit report at https://bugs.php.net/bug.php?id=61750&edit=1
ID: 61750 Updated by: php-bugs@lists.php.net Reported by: yolongyi at gmail dot com Summary: php-fpm can not load mbstring module -Status: Feedback +Status: No Feedback Type: Bug Package: FPM related Operating System: Linux PHP Version: 5.3.10 New Comment: No feedback was provided. The bug is being suspended because we assume that you are no longer experiencing the problem. If this is not the case and you are able to provide the information that was requested earlier, please do so and change the status of the bug back to "Open". Thank you. Previous Comments: ------------------------------------------------------------------------ [2012-04-17 07:01:11] yolongyi at gmail dot com the php package are compiled with '--disable-cli' option ( checked via phpinfo() ). so there is not 'php-cli.ini'. and making changes of '/etc/php/php.ini' affects both behavior. can 'Zend Multibyte Support = disabled' affects the loading mbstring from php-fpm ? ------------------------------------------------------------------------ [2012-04-17 05:09:47] larue...@php.net php-cli will prefer php-cli.ini, plz check your php inis. ------------------------------------------------------------------------ [2012-04-17 04:17:52] yolongyi at gmail dot com Description: ------------ >From the command line, I can use the functions of mbstring like, $ret = mb_detect_encoding("this is a test"); // do something with $ret It does well. I can get the right result for $ret. but if I open the same file from the browser via web server ( NginX + php-fpm ), it errors 'mb_detect_encoding' function does not exists. I use the same php and php.ini in both command line and php-fpm. ( checked with phpinfo() ) and compiled php with '--enable-mbstring' ( also check with phpinfo() ) I think there must be some bug in php-fpm when it executes scripts. Test script: --------------- <? echo "result:", function_exists('mb_detect_encoding'), "\n"; ?> Expected result: ---------------- result: 1 Actual result: -------------- result:1 <--- in command line result: <--- in browser ------------------------------------------------------------------------ -- Edit this bug report at https://bugs.php.net/bug.php?id=61750&edit=1