Home  >  Article  >  php教程  >  ubuntu安装php5.4

ubuntu安装php5.4

WBOY
WBOYOriginal
2016-06-06 20:12:371197browse

昨天遇到一个问题,郁闷了我一下午,说的是PHP的一个BUG,于是乎就升级PHP了。现在自己搞了个vps,然后就想着装php5.4,自己又嫌编译很麻烦。所以把安装过程记录下来,所有命令如下: apt-get install python-software-propertiessudo add-apt-repository pp

昨天遇到一个问题,郁闷了我一下午,说的是PHP的一个BUG,于是乎就升级PHP了。现在自己搞了个vps,然后就想着装php5.4,自己又嫌编译很麻烦。所以把安装过程记录下来,所有命令如下:

apt-get install python-software-properties
sudo add-apt-repository ppa:ondrej/php5
sudo apt-get update
sudo apt-get install php5-cli php5-fpm php-pear php5-mysql libcurl4-openssl-dev
sudo apt-get install php5-dev
sudo pecl install pecl_http  # Update /etc/php5/fpm/php.ini and /etc/php5/cli/php.ini with http.so

顺带附上将php5.4将为5.3的方法

#安装
ppa-purge apt-get install ppa-purge 
#移除源 
ppa-purge ppa:ondrej/php5 apt-get update && apt-get upgrade -y && apt-get autoremove -y && apt-get autoclean -y

顺带说一句,php5.4的fpm默认是使用socket连接的,所以你要在nginx的设置里面改成127.0.0.1:9000

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn