pecl event

回覆文章
yehlu
Site Admin
文章: 3245
註冊時間: 2004-04-15 17:20:21
來自: CodeCharge Support Engineer

pecl event

文章 yehlu »

https://docs.google.com/a/551.com.tw/pr ... slide=id.p

只支援 PHP 5.4 以上

代碼: 選擇全部

pecl install event
widnows pecl download
http://windows.php.net/downloads/pecl/releases/
http://downloads.php.net/pierre/

http://www.arthurtoday.com/2010/08/ubun ... lzZRVDa4Wk

在 Ubuntu 如果只有安裝 php-pear 的話,還是會不能用 PECL 來安裝 PHP 的擴充套件,因為下載來的 PHP 擴充套件通常還是會需要再編譯過的,所以,一定要安裝 php-dev 的 PHP 開發套件才行,詳細操作步驟如下:

1.安裝需要的 PHP 套件
sudo apt-get install php-pear php5-dev

2.安裝 PECL 套件 ( 以安裝 uploadprogress 擴充套件為例 )
sudo pecl install uploadprogress

3.修改 PHP.ini
在 php.ini 中新增 extension=uploadprogress.so ( Ubuntu 不需要指定路徑 )

4.重新啟動 Apache
sudo /etc/init.d/apache2 restart
yehlu
Site Admin
文章: 3245
註冊時間: 2004-04-15 17:20:21
來自: CodeCharge Support Engineer

Re: pecl event

文章 yehlu »

10.04 只有 libevent 1.4
要自己下載編譯 libevent 2

代碼: 選擇全部

checking for include/event2/event.h... not found
configure: error: Please reinstall the event library, or provide the installation prefix via --with-event-libevent-dir option
ERROR: `/tmp/pear/temp/event/configure --enable-event-debug=no --enable-event-sockets=yes --with-event-libevent-dir=/usr --with-event-pthreads=no --with-event-extra --with-event-openssl --with-openssl-dir=no' failed

代碼: 選擇全部

wget http://github.com/downloads/libevent/libevent/libevent-2.0.21-stable.tar.gz
tar -xzvf libevent-2.0.21-stable.tar.gz
cd libevent-2.0.21-stable
./configure
make
sudo make install
回覆文章

回到「PHP」