linux安装php之后如何验证成功(linux安装php步骤详解)

wget http://mirrors.sohu.com/php/php-7.1.3.tar.gztar zxvf php-7.1.3.tar.gz,现在小编就来说说关于linux安装php之后如何验证成功?下面内容希望能帮助到你,我们来一起看看吧!

linux安装php之后如何验证成功(linux安装php步骤详解)

linux安装php之后如何验证成功

Php7.1

wget http://mirrors.sohu.com/php/php-7.1.3.tar.gz

tar zxvf php-7.1.3.tar.gz

./configure \--prefix=/usr/local/php \--with-apxs2=/usr/local/apache2/bin/apxs \--with-config-file-path=/usr/local/php/etc \--with-mysql-sock=/tmp/mysql.sock \--enable-mysqlnd \--with-mysqli=mysqlnd \--with-pdo-mysql=mysqlnd \--with-libxml-dir \--with-gd \--with-jpeg-dir \--with-png-dir \--with-freetype-dir \--with-iconv-dir \--with-zlib-dir \--with-bz2 \--with-openssl \--with-mcrypt \--enable-soap \--enable-gd-native-ttf \--enable-mbstring \--enable-sockets \--enable-exif \--disable-ipv6

xml2-config not found 解决办法:yum install libxml2* -y

Cannot find OpenSSL's <evp.h> 解决办法: yum install openssl openssl-devel

error: Please reinstall the BZip2 distribution 解决办法: yum install bzip2 bzip2-devel

error: jpeglib.h not found 解决办法:32位系统 yum install libjpeg libpng freetype libjpeg-devel libpng-devel freetype-devel -y

若是64位系统解决方法:yum install libjpeg.x86_64 libpng.x86_64 freetype.x86_64 libjpeg-devel.x86_64 libpng-devel.x86_64 freetype-devel.x86_64 -y

error: mcrypt.h not found. Please reinstall libmcrypt 解决办法:

yum install -y epel-releaseyum install -y libmcrypt-devel

cp php.ini-production /usr/local/php/etc/php.inivi /usr/local/apache2/conf/httpd.conf

找到

#ServerName www.example.com:80

改成ServerName localhost:80

找到:

AddType application/x-gzip .gz .tgz

在该行下面添加:

AddType application/x-httpd-php .php

找到:

<IfModule dir_module> DirectoryIndex index.html</IfModule>

将该行改为:

<IfModule dir_module> DirectoryIndex index.html index.htm index.php</IfModule>

/usr/local/apache2/bin/apachectl -tservice httpd restart

ftp没有上传权限的时候用root用户登录

,

免责声明:本文仅代表文章作者的个人观点,与本站无关。其原创性、真实性以及文中陈述文字和内容未经本站证实,对本文以及其中全部或者部分内容文字的真实性、完整性和原创性本站不作任何保证或承诺,请读者仅作参考,并自行核实相关内容。文章投诉邮箱:anhduc.ph@yahoo.com

    分享
    投诉
    首页