<返回更多

linux安装php步骤详解

2021-03-25    
加入收藏

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-release
yum install -y libmcrypt-devel

cp php.ini-production /usr/local/php/etc/php.ini
vi /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 -t
service httpd restart

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

声明:本站部分内容来自互联网,如有版权侵犯或其他问题请与我们联系,我们将立即删除或处理。
▍相关推荐
更多资讯 >>>