php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #61750 php-fpm can not load mbstring module
Submitted: 2012-04-17 04:17 UTC Modified: 2013-02-18 00:35 UTC
Votes:3
Avg. Score:5.0 ± 0.0
Reproduced:2 of 2 (100.0%)
Same Version:1 (50.0%)
Same OS:0 (0.0%)
From: yolongyi at gmail dot com Assigned:
Status: No Feedback Package: FPM related
PHP Version: 5.3.10 OS: Linux
Private report: No CVE-ID: None
Welcome back! If you're the original bug submitter, here's where you can edit the bug or add additional notes.
If this is not your bug, you can add a comment by following this link.
If this is your bug, but you forgot your password, you can retrieve your password here.
Password:
Status:
Package:
Bug Type:
Summary:
From: yolongyi at gmail dot com
New email:
PHP Version: OS:

 

 [2012-04-17 04:17 UTC] 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

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2012-04-17 05:09 UTC] laruence@php.net
-Status: Open +Status: Feedback
 [2012-04-17 05:09 UTC] laruence@php.net
php-cli will prefer php-cli.ini, plz check your php inis.
 [2012-04-17 07:01 UTC] 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 
?
 [2013-02-18 00:35 UTC] php-bugs at lists dot php dot net
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.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Thu Apr 25 01:01:30 2024 UTC