我正在尝试安装eAccelerator 0.9.6.1以加快我的Magento站点。
按这里的说明安装:
不幸的是,php -v没有显示eAccelerator,而apache日志在安装后重新启动时显示:
[eAccelerator] This build of "eAccelerator" was compiled for PHP version 5.3.10-1ubuntu3.7. Rebuild it for your PHP version (5.3.10-1ubuntu3.8) or download precompiled binaries.
/usr/bin/ph
我想在我的Linux中开始学习WWW编程。我已经安装了PHP,现在我想安装MySQL。我试着遵循http://www.cyberciti.biz/faq/install-mysql-server-5-on-ubuntu-linux/上的说明,但是我得到了以下错误消息:
sudo /etc/init.d/apache2 restart
* Restarting web server apache2
apache2: Could not reliably determine the server's fully qualified domain name, using 127.0.1
我在我的开发机器(windows)和测试服务器(linux)上安装了Apache2.0/PHP服务器。我有一个PHP脚本,它运行shell命令来生成PDF文档。例如,
<?php
//This script is kicked off via the browser,
//ie. http://localhost/pdf.php
exec('php generatePDF.php');
?>
文档可能需要几分钟才能生成,尽管通常在几秒钟内完成。
在我的Windows本地主机上,在脚本执行时从这个页面导航实际上会导致Apache挂起。在我