PS:今天测试一套用php开发的开源ERP系统发现有个问题比较怪,部分页面正常,部分页面空白,看官方文档只说php 5.4以上版本就行,但出问题的版本已经是5.4。最终排查发现还是php版本问题,升级到5.6问题解决。默认的yum官方源php版本很老,是5.1.x版本,下面方法升级是最快最简单的:(不建议编译php源码包)
1、首先确认yum源的地址是否有效。
# yum install epel-release
# rpm -Uvh http://rpms.famillecollet.com/enterprise/remi-release-7.rpm
2、确认安装的php版本
# yum list --enablerepo=remi --enablerepo=remi-php56 | grep php
3、安装php5.6及常用模块
# yum install --enablerepo=remi --enablerepo=remi-php56 php php-opcache php-pecl-apcu php-devel php-mbstring php-mcrypt php-mysqlnd php-phpunit-PHPUnit php-pecl-xdebug php-pecl-xhprof php-pdo php-pear php-fpm php-cli php-xml php-bcmath php-process php-gd php-common php-xcache
注:php-opcache和php-xcache会有效的提高php执行速度。