install php intl extension on mountain lion

让人想犯罪 __ 提交于 2020-01-01 15:47:09

问题


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

回答1:


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



回答2:


Use Brew.

e.g. brew install php56-intl

That's it! :-)



来源:https://stackoverflow.com/questions/18888403/install-php-intl-extension-on-mountain-lion

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!