Question

I'm trying to install rubedo cms, and get an error in the php application:

Zend\I18n\Validator component requires the intl PHP extension

These are the steps I've taken to install the extension

sudo port install php5-intl
sudo cp /opt/local/lib/php54/extensions/no-debug-non-zts-20100525/intl.so /usr/lib/php/extensions/no-debug-non-zts-20090626/
sudo pico /private/etc/php.ini

add

extension=intl.so

then

sudo apachectl restart
Was it helpful?

Solution

I found the problem.

I needed the right version of intl. I'm running php 5.3, which I think is the reason that when I ran:

sudo port install php53-intl

it worked.

Significantly, the parent folder also was named the same in the src and destination in the copy.

So my final process was:

sudo port install php53-intl
sudo cp /opt/local/lib/php54/extensions/no-debug-non-zts-20090626/intl.so  /usr/lib/php/extensions/no-debug-non-zts-20090626/
sudo pico /private/etc/php.ini

add

extension=intl.so

then

sudo apachectl restart

OTHER TIPS

Use Brew.

e.g. brew install php56-intl

That's it! :-)

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top