CentOS 从源代码安装 PHP 5.3.1
因为需要用到一个 PHP 程序,它要求 php 5.2+ 的版本,而 CentOS 5 使用 yum install php
安装的 php 是 5.1 版本的,所有现在需要手动从源代码安装新的 Php。
我这里选了 php-5.3.1
1 2 3 4 5 6 7 8 |
|
- 必须安装 httpd-devel 不然的话,Apache 的 apxs2 就没有,那就没法让 httpd 与 php
- 安装完成后 打开 /etc/php.ini 以后找到 include_path 的位置,将它设置为:
include_path = "/usr/local/lib/php/"
- 重启 Apache:
sudo service httpd restart
哎,还是 Ubuntu Server 方便些,好多软件都是比较新的,经常在 CentOS 下面折腾版本问题….
相关页面:
PHP 官方 mcrypt 安装教程 CentOS Php and Apache Install Installing PHP from source on CentOS x86_64 (w/ apache)