有一個項目很老了,最開始用的php版本是5.3,如今換服務器,服務器是ubuntu16.04,默認的php版本是7.0,而後項目在這個版本上運行不起來。php
因而,就卸載了7.0,裝一個5.6吧。python
apt-get install -y language-pack-en-base LC_ALL=en_US.UTF-8 add-apt-repository ppa:ondrej/php add-apt-repository ppa:ondrej/php apt-get update apt-cache search php5 apt-get install php5.6-common apt-get install libapache2-mod-php5.6 apt-get install python-software-properties apt-get install software-properties-common apt-get update apt-get install php5.6 apt-get install php5.6-fpm #諸多擴展按需安裝 apt-get install php5.6-curl apt-get install php5.6-gd apt-get install php5.6-mysql apt-get install php5.6-mbstring apt-get install php5.6-xsl apt-get install php5.6-xml apt-get install php5.6-dev
因爲web服務器用的是nginx,須要更改配置文件裏的fpm路徑mysql
vi /etc/nginx/site-available/default
把原來的php7.0-fpm.sock改爲php5.6-fpm.sock便可nginx