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
有帮助吗?

解决方案

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

其他提示

Use Brew.

e.g. brew install php56-intl

That's it! :-)

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top