我在Mac上安装CakePHP时遇到问题

时间:2015-04-28 04:52:50

标签: php macos cakephp

我目前在计算机上安装了XAMPP 5.6.8和MAMP 3.2.1。我还在Mac上全局安装了Composer。我尝试了CakePHP中的所有建议,但我无法安装它。我查看了整个论坛,但没有任何建议对我有用。这是我在终端输入命令时得到的错误。

    <button type="button" ng-click="login()" ng-hide="isLoggedIn" class="btn btn-default navbar-btn">
        Login
    </button>
    <div id="fb-root">

如果有人能帮助我,我会非常感激。

3 个答案:

答案 0 :(得分:0)

在安装ActiveMQ.Advisory.Queue之前,您必须在系统上安装并启用ext-intl

您将收到here

指令

答案 1 :(得分:0)

检查http://book.cakephp.org/3.0/en/installation.html#requirements

In XAMPP, intl extension is included but you have to uncomment extension=php_intl.dll in php.ini and restart the server through the XAMPP Control Panel.

答案 2 :(得分:0)

OSX对此的回答是转到“php-osx.liip.ch”并在命令行界面(CLI)中运行PHP 5.6(当前稳定版)的命令: curl -s http://php-osx.liip.ch/install.sh | bash -s 5.6

完成后,建立PHP二进制文件的路径。你可以使用你想要的任何东西,但我使用了vim。这是CLI的命令: “vim~ / .bash_profile”

这将引导您进入CLI文本编辑器。我被告知有些人可能没有“usr”目录,如果没有,请随意制作一个。请到其他地方看看如何做到这一点。

同时,在执行“vim~ / .bash_profile”后,在编辑器中,随意按“i”进行插入,然后键入路径。该行是“export PATH =”/ usr / local / php5 / bin:$ PATH“。当你完成后,按下escape然后”:wq“”:“代表”我想输入命令“,并且“wq”代表“写入和退出”。完成后,您将返回命令行。

然后输入“source~ / .bash_profile”启用路径。这将启用您的新路径。关闭CLI并重新启动它(如果需要)。你的新路径将是“/ usr / local / php5 / bin / php”。如果在CLI中键入“which php”,则可以确定这一点。

现在,这将把PHP通用从Mac附带的默认PHP更改为您指定的PHP。之后,随意与作曲家一起烘烤!