Posiks and internal expansion on the windows

When I installed the symfony2 sandbox and tried to check check.php requirements, I had 2 problems. My server does not have persistent and internal extensions. I use WampServer 2.1e (32 bit) for Windows 7 32bit, so my apache and php versions are: Apache 2.2.17 VC6 ThreadSafe Php 5.3.5

I tried to apply the intl extension from http://windows.php.net/downloads/releases/php-5.3.5-Win32-VC6-x86.zip but I have a strange error in the apache log: "Cannot find the extension in c : / wamp / ... "I am sure that the extension is in the correct directory and is included in php.ini.

I have a bigger problem with the posix extension. I can not find it at all on the Windows platform. The php documentation says that it should be enabled by default, but that is not the case.

+3
source share
1 answer

I am using XAMPP 1.7.4 with PHP 5.3.5 and am having the same problems.

The problem associated with the intl extension was solved as follows: I copied files named icu * 36.dll from the php installation folder in C: \ Windows

Resorurces for intl: http://www.tiv.net/2010/12/php-intl-extension-windows-apache.html

Speaking about the posix problem, I didn’t even search because this extension is used to colorize the CLI output, and the Windows shell cannot do this.

+8
source

All Articles