首页 博客 文档 标签 归档 分类 示例文章 更新记录
Install PHP 5.6 on CentOS 7 Server - SasSPro | 优秀的 Emlog 文档展示模板 | 高效管理与展示解决方案
首页 博客 文档 标签 归档 分类 示例文章 更新记录

Install PHP 5.6 on CentOS 7 Server

2017-10-13 · 管理员 · 阅读 4676

转自: https://blog.hostonnet.com/install-php-5-6-on-centos-7-server

CentOS 7 come with outdated PHp 5.4 for some strange reason only enterprise can understand. I normally prefer Ubuntu 16.04 over CentOS 7 because it come with latest software. Default PHP version with Ubuntu 16.04 is 7.

To install PHP 5.6 on CentOS 7, you need to install remi repository.


yum install -y epel-release
wget https://rpms.remirepo.net/enterprise/remi-release-7.rpm
rpm -ivh remi-release-7.rpm
yum update


If you have older version of PHP, uninstall it with

yum remove php-pdo php-odbc php-xml php-soap php-cli php-devel php-pspell php php-intl php-xmlrpc php-process php-common php-gd php-mysqlnd php-mbstring

Now you can install PHP 5.6 with

yum install php56 php56-php php56-php-mysqlnd php56-php-gd php56-php-mcrypt php56-php-mbstring php56-php-xml php56-php-cli

If you need ioncube loader, install it with

yum install php56-php-ioncube-loader

php-fpm

if you want to use php-fpm, then install

yum install php56-php-ioncube-loader

You can edit php-fpm pool config with

vi /opt/remi/php56/root/etc/php-fpm.d/ www.conf

Start/stop/restart php-fpm with

systemctl start php56-php-fpm
systemctl stop php56-php-fpm
systemctl restart php56-php-fpm

In your Apache virtual host file or global Apache config, add

<FilesMatch \.php$>
SetHandler "proxy:fcgi://127.0.0.1:9000"
</FilesMatch>

If you want multiple php version, use different ports or sockets for each php-fpm installation and add the entry in virtual host.

上一篇 制作macOS的U盘安装器-apple官方教程 下一篇 jquery中的map与原生js的map的区别
管理员

emlog模版beginning开发者

评论交流 (0)

暂无评论,来坐第一个沙发吧~

发表评论