Mbstring

massive

Verified User
Joined
Feb 16, 2006
Messages
299
I have installed php-cgi in my server but mbstring isn't loaded

[root@ruby custombuild]#php -m
[PHP Modules]
bcmath
calendar
ctype
curl
date
dom
filter
ftp
gd
gettext
hash
iconv
json
libxml
mcrypt
mhash
mysql
mysqli
openssl
pcre
PDO
pdo_mysql
pdo_sqlite
posix
Reflection
session
SimpleXML
sockets
SPL
SQLite
standard
suhosin
tokenizer
xml
xmlreader
xmlwriter
Zend Optimizer
zip
zlib

[Zend Modules]
Zend Extension Manager
Zend Optimizer

Any idea?
 
Check:
Code:
cd /usr/local/directadmin/custombuild
cat `./build used_configs | grep configure.php | awk '{ print $4 }'`

It should have an "--enable-mbstring" flag.
 
Thanks for your reply smtalk.
I just remembered that i was using a custom configure script, which by the way
--enable-mbstring was included. Then i deleted the customt script and rebuild php
and mbstring now is included in php.ini.
 
Last edited:
Back
Top