使用 XAMPP 在 Linux Mint 8 中配置 LAMP 环境 - 安装 Memcache

使用 XAMPP 在 Linux Mint 8 中配置 LAMP 环境 - 安装 Memcache

好的,我已成功安装 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 的有用链接,请粘贴到这里。

谢谢。

答案1

如果我正确理解了您的问题,那么当您尝试运行该命令时,似乎您在错误的地方。

您需要从某处下载源代码,将其解压到一个文件夹中,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

然后返回并继续按照你的指示操作。

答案2

Mint 不是基于 debian/ubuntu 的吗?为什么不直接安装现有的 php 和 mysql 包呢?mint 可能还包括 ubuntu 中的 php5-memcache 包。这样工作量会少一些,而且从长远来看更安全。

相关内容