1. 程式人生 > >PHP擴充套件beanstalked遇到的問題解決記錄

PHP擴充套件beanstalked遇到的問題解決記錄

安裝教程:http://beanspeak.readthedocs.io/en/latest/reference/install.html

需要安裝zephir:

$ git clone https://github.com/phalcon/zephir
$ cd zephir
$ ./install -c

執行 zephir build 命令的時候,會提示報錯,需要安裝擴充套件。

The Zephir Parser extension is not loaded.
  Note: Zephir no longer distributed with internal parser.
  
  To install latest stable Zephir Parser please refer to:
  https://github.com/phalcon/php-zephir-parser

根據提示下載擴充套件。

git clone https://github.com/phalcon/php-zephir-parser.git

 ./install  

提示需要以來包 re2c: “error: unable to locate the re2c”,不要yum安裝,預設版本低,不滿足要求(“minimal required version of re2c is 0.13.6”)。

wget https://github.com/skvadrik/re2c/releases/download/0.16/re2c-0.16.tar.gz

tar zxvf re2c-0.16.tar.gz

cd re2c-0.16

./configure

make
make install

此時執行:re2c --version 提示找不到命令。 執行:source /etc/profile 即可。

在安裝beanspeak的時候,會提示各種被禁用的php方法,在php.ini 中的disable_function 開啟這些方法即可。

zephir build 即可執行成功,其中會有部分waring,可以忽略不計。

安裝完成之後,在php的擴充套件資料夾裡面會找到beanspeak.so的檔案。

重啟php-fpm 即可。