Heim  >  Artikel  >  php教程  >  ubuntu安装php5.4

ubuntu安装php5.4

WBOY
WBOYOriginal
2016-06-06 20:12:371198Durchsuche

昨天遇到一个问题,郁闷了我一下午,说的是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

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn