码迷,mamicode.com
首页 > Web开发 > 详细

LuManager升级php5.6.27方法

时间:2017-11-04 23:41:53      阅读:443      评论:0      收藏:0      [点我收藏+]

标签:bic   auto   cache   tab   iconv   资料   exif   下载页面   hit   

LuManager自带的PHP在FastCGI模式是 5.2.17版,非FastCGI模式是 5.3.14版。由于360网盘的停服,已不敢再用那些免费的网盘,干脆自己搭个私有云。查了下相关资料准备先试试ownCloud ,ownCloud 目前最新版本是ownCloud 9.1.1,最低要求PHP5.4,所以必须要升级下PHP版本,开始折腾吧。

一开始参考这篇文章http://www.zijidelu.org/thread-51419-1-1.html试了几次,安装过程也没有错误提示,以为成功了,可重启Apache后通过探针测试还是5.3.14版。然后又参考http://www.zijidelu.org/thread-51549-1-1.html,折腾了半天终于成功了。安装过程中除了文中说的几个错误,我又遇到了几个新问题,最后都通过百度查资料,一个个的解决了。

言归正传,下面是方法:(阿里云 centos 6.5)

  1. 先去PHP官网获取要安装的PHP版本下载地址(http://php.net/downloads.php)
  2. 以root权限进入终端界面,下载php
    1
    wget http://php.net/get/php-5.6.27.tar.gz

    技术分享
  3. 解压并安装,这里是关键,也是问题最多的地方
    1
    2
    3
    4
    5
    tar -zxvf php-5.6.27.tar.gz
    cd php-5.6.27
    ./configure --prefix=/usr/local/php -with-apxs2=/usr/local/apache/bin/apxs --with-config-file-path=/usr/local/php/etc  --enable-opcache --with-mysql=mysqlnd --with-mysqli=mysqlnd --with-pdo-mysql=mysqlnd --enable-fileinfo --with-mcrypt=/usr/local/libmcrypt   --with-iconv-dir=/usr/local  --with-freetype-dir --with-jpeg-dir --with-png-dir --with-zlib --with-libxml-dir=/usr --enable-xml   --disable-rpath --enable-bcmath --enable-shmop --enable-exif --enable-sysvsem --enable-inline-optimization --with-curl   --enable-mbregex --enable-mbstring  --with-gd --enable-gd-native-ttf --with-openssl --with-mhash  --enable-pcntl --enable-sockets --with-xmlrpc --enable-ftp --with-gettext --enable-zip --enable-soap --disable-ipv6  --disable-debug
    make ZEND_EXTRA_LIBS=‘-liconv‘
    make install

    问题1:安装过程中出现 “Sorry, I cannot run apxs” 错误提示
    解决方法:修改vi /usr/local/apache/bin/apxs文件,之后重新编译安装PHP
    1
    vi /usr/local/apache/bin/apxs

    将第一行这句
    1
    #!/usr/sbin/perl -w

    修改为
    1
    #!/usr/bin/perl -w

    问题2:执行“make ZEND_EXTRA_LIBS=’-liconv’”时出现错误提示“/usr/bin/ld: cannot find -liconv”
    解决方法:安装libiconv库(下载页面 http://www.gnu.org/software/libiconv/),之后重新编译安装PHP
    1
    2
    3
    4
    5
    6
    7
    8
    wget http://ftp.gnu.org/pub/gnu/libiconv/libiconv-1.14.tar.gz
    tar -xzf libiconv-1.14.tar.gz
    cd libiconv-1.14
    ./configure --prefix=/usr/local
    make
    make install
    ln -s /usr/local/lib/libiconv.so /usr/lib
    ln -s /usr/local/lib/libiconv.so.2 /usr/lib/libiconv.so.2

    问题3:运行PHP时报“Call to undefined function: mcrypt_module_open() ”错误
    解决方法:安装libmcrypt(下载页面 ftp://mcrypt.hellug.gr/pub/crypto/mcrypt/libmcrypt),之后重新编译安装PHP
    1
    2
    3
    4
    5
    6
    7
    wget ftp://mcrypt.hellug.gr/pub/crypto/mcrypt/libmcrypt/libmcrypt-2.5.7.tar.gz
    tar -zxvf libmcrypt-2.5.7.tar.gz
    cd libmcrypt-2.5.7
    ./configure --prefix=/usr/local/libmcrypt
    make
    make check
    make install
  4. 检查apache下/usr/local/apache/modules是否有libphp5.so
  5. 复制配置文件
    1
    cp php.ini-development /usr/local/php/etc/php.ini
  6. 编辑php.ini,把include_path前面的分号删除,改成include_path = “/opt/php/lib/php”
    1
    vi /usr/local/php/etc/php.ini
  7. 重启apache
原文:https://www.mebox.cn/develop/929.html

收藏备用。 

LuManager升级php5.6.27方法

标签:bic   auto   cache   tab   iconv   资料   exif   下载页面   hit   

原文地址:http://www.cnblogs.com/cnteam/p/7784898.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!