Symfony2 with internal extension issues. I just can't get the extension

I ran into problems that I knew would still appear in symfony2. All this boils down to the need to install and enable internal expansion.

I am using mamp pro and trying to follow these tutorials:

http://szemian.wordpress.com/2011/03/21/compiling-intl-extension-for-mamp/#comment-7

http://php-osx.liip.ch/

Bad luck..

In the first tutorial, everything works, except for step 0. Can someone advise me how to perform step 0. I really do not understand this step.

As for the second tutorial, I installed the package and then went into the mp pro php.ini file and added the full path to the extension and restarted apache and still have no luck.

+3
source share
4

, Zend Server CE. . php.ini html_errors, . , xdebug, . intl.so mamp, , , zend . gui , , . , zend server ce, . .

0

MAMP. apache php mac. , , "", php. php, php 5.3.3, intl ( php,...), php 5.3.6, macs./p >

, MAMP php, .

+2

- , INTL PECL 10 . ICU Windows , php_intl.dll , php.ini.

. ICU, , PATH. Apache.

0

I had the same problem (a year after the last answers here). I managed to install the extension under MAMP in the following guide: http://sunny.chotai.uk.com/?p=2

Basic steps: 1. install php54-intl using MacPorts

sudo port install php54-intl

2. copy the intl.so file to the php MAMP folder by doing:

cp /opt/local/lib/php54/extensions/no-debug-non-zts-20100525/intl.so /Applications/MAMP/bin/php/php5.4.4/lib/php/extensions/no-debug-non-zts-20100525

3. Enable the extension in php.ini by adding the following line to the end of the file:

extension=intl.so

4. Reboot the servers and enjoy

0
source

All Articles