> > I am trying to install Japanese support with squirrel. I compiled php > with --enable-mbstring and it appears to be set up correctly. When I run > "php -i | grep mbstring", I see: > > > Configure Command => './configure' '--with-apxs2=/usr/sbin/apxs' > '--with-mysql' '--enable-mbstring=all' '--enable-mbregex' '--with-gettext' > mbstring > mbstring extension makes use of > "streamable kanji code filter and converter", which is distributed under > the GNU Lesser General Public License version 2.1. > mbstring.detect_order => auto => auto > mbstring.encoding_translation => Off => Off > mbstring.func_overload => 0 => 0 > mbstring.http_input => auto => auto > mbstring.http_output => UTF-8 => UTF-8 > mbstring.internal_encoding => UTF-8 => UTF-8 > mbstring.language => Japanese => Japanese > mbstring.substitute_character => no value => no value
If you want to check php configuration, you must use phpinfo() command and run it from script that is stored in same directory as other scripts. php -i displays global configuration. It does not show local configuration settings applied to script directory. > However, when I log in, I get this error message: > > You need to have php4 installed with the multibyte string function > enabled (using configure option --enable-mbstring). ... > Is there something else I need to do, besides compiling php with > --enable-mbstring and changing a few values in my php.ini? Restart apache2. If you have installed php when apache was running, you might have to stop it, make sure that there are no running apache processes and start it. apachectl graceful does not work. -- Tomas ------------------------------------------------------- SF.Net email is sponsored by: Tame your development challenges with Apache's Geronimo App Server. Download it for free - -and be entered to win a 42" plasma tv or your very own Sony(tm)PSP. Click here to play: http://sourceforge.net/geronimo.php -- squirrelmail-users mailing list Posting Guidelines: http://squirrelmail.org/wiki/wiki.php?MailingListPostingGuidelines List Address: [email protected] List Archives: http://news.gmane.org/thread.php?group=gmane.mail.squirrelmail.user List Archives: http://sourceforge.net/mailarchive/forum.php?forum_id=2995 List Info: https://lists.sourceforge.net/lists/listinfo/squirrelmail-users
