Re: phpinfo() not finding intl and mbstring

[email protected] (Good Guy) Sat, 14 Dec 2013 21:59:49 +0000
Newsgroups php.windows
Message-ID <[email protected]>
On 14/12/2013 21:37, Wendell P wrote:
> With PHP 5.5.6 VC11 x64 Non Thread Safe:
>
> I unpacked the distribution on my machine, keeping the default file
> structure but also installing a PECL extension in \ext. Running from the
> CLI, everything seems to be working. However, phpinfo() indicates that
> the intl and mbstring extensions are not loaded. Also, "php -i" says
> they are not loaded but "php -m" says that they are. I tested functions
> from both extensions and they are working.
>
> Looking online, it seems this problem has existed for several years.
> People look at phpinfo() and think that mbstring and intl aren't loaded.
> The Linux distribution doesn't display this problem.
>


Have you enabled mbstring in your php.ini file?  to do this change:

;extension=php_mbstring.dll

to

extension=php_mbstring.dll

Similarly change:  ;extension=php_intl.dll

to

extension=php_intl.dll

when you have made the changes, restart the server so that changes takes 
effect.

Good luck.