Linux

使用 XAMPP 在 Linux Mint 8 中配置 LAMP 環境 - 安裝 Memcache

  • January 2, 2010

Okies,我已經成功安裝了 XAMPP 並添加了虛擬主機,並且能夠進行數據庫呼叫等。我面臨的問題是在嘗試啟用 memcache 模組時。目前正在嘗試使用這些連結進行配置。

  1. h??p://theindexer.wordpress.com/2008/06/02/installing-a-lamp-stack-on-linux-using-xampp-for-linux/
  2. h??p://theindexer.wordpress.com/2008/06/11/installing-xdebug-on-xampp-for-linux/
  3. http://lynxbites.blogspot.com/2009/09/steps-to-install-memcache.html

我面臨的問題是從 /opt/lampp/bin/phpize 啟動 phpize

我收到以下錯誤。

Cannot find config.m4. 
Make sure that you run '/opt/lampp/bin/phpize' in the top level source directory of the module

誰能告訴我要為這個錯誤做什麼,如果有人有任何有用的連結來使用 XAMPP 在 linux 上配置 memcache,請粘貼到這裡。

謝謝。

如果我正確理解了您的問題,那麼您在嘗試執行該命令時似乎是在錯誤的地方。

您需要從某個地方下載原始碼,將其解壓縮到一個文件cd夾中,然後執行該程序。

所以:

wget http://pecl.php.net/get/memcache-2.2.5.tgz
tar -xvf memcache-2.2.5.tgz
cd memcache-2.2.5
/opt/lampp/bin/phpize

然後返回按照您的指示進行操作。

Mint 不是基於 debian/ubuntu 的嗎?為什麼不直接安裝 php 和 mysql 的現有包,mint 可能還包括 ubuntu 中的 php5-memcache 包。從長遠來看,這將減少工作量,並且更安全。

引用自:https://serverfault.com/questions/98749