我有一些基于phalcon版本2构建的应用程序,但自版本3发布以来,phalcon的新安装默认为版本3.
答案 0 :(得分:3)
您需要从源代码安装phalcon,但不是从主分支构建,而是将分支切换到2.0.x分支。
git clone --depth 1 https://github.com/phalcon/cphalcon.git
cd cphalcon
git remote set-branches origin '2.0.x'
git fetch --depth 1 origin 2.0.x
git checkout 2.0.x
cd build
./install
我创建了这个要点,以便更轻松 - https://gist.github.com/goke-epapa/c325da217296ec4880850972be955bf0
<强>更新强>
我已经被告知上面的代码片段会安装2.0.10版本,所以下面的代码段是专门针对2.0.13版本的
git clone --depth 1 https://github.com/phalcon/cphalcon.git
cd cphalcon
git remote set-branches origin 'phalcon-v2.0.13'
git fetch --depth 1 origin phalcon-v2.0.13
git checkout phalcon-v2.0.13
cd build
./install
<强>更新强>
两个代码片段都缺少cd cphalcon
命令,因此我修改了片段。