您当前的位置:首页 > 电脑百科 > 程序开发 > 语言 > php

linux安装php步骤详解

时间:2021-03-25 11:30:51  来源:  作者:

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用户登录



Tags:安装php   点击:()  评论:()
声明:本站部分内容及图片来自互联网,转载是出于传递更多信息之目的,内容观点仅代表作者本人,如有任何标注错误或版权侵犯请与我们联系(Email:2595517585@qq.com),我们将及时更正、删除,谢谢。
▌相关推荐
序言:习惯了用集成软件来安装php的运行环境,单独配置php、apache成为了部分程序员不愿意面对的问题,下面和我一块来复习一下,赶紧点赞收藏吧。 php官方下载地址https://windows....【详细内容】
2021-11-23  Tags: 安装php  点击:(24)  评论:(0)  加入收藏
准备安装包(PHP: Hypertext Preprocessor)下载安装包以及组件wget https://www.php.net/distributions/php-8.0.0.tar.bz2wget https://github.com/phpredis/phpredis/archive...【详细内容】
2021-11-09  Tags: 安装php  点击:(40)  评论:(0)  加入收藏
一、环境说明本文中使用本地VM虚机部署测试。OS:CentOS Linux release 7.8.2003 (Core)虚机配置:2核CPU、4G内存①系统为CentOS 7.8 x64最小化安装,部署前已完成系统初始化、...【详细内容】
2021-06-25  Tags: 安装php  点击:(141)  评论:(0)  加入收藏
Php7.1wget http://mirrors.sohu.com/php/php-7.1.3.tar.gztar zxvf php-7.1.3.tar.gz./configure \ --prefix=/usr/local/php \ --with-apxs2=/usr/local/apache2/bin/apxs...【详细内容】
2021-03-25  Tags: 安装php  点击:(315)  评论:(0)  加入收藏
首先要确认的是你的服务器的系统,Windows、或者linux系统。 要想在Windows系统里运行php网站,可以选择iis或者Apache,如果你单独的去安装,可能会花很多时间去配置这个软件直接问...【详细内容】
2020-03-17  Tags: 安装php  点击:(65)  评论:(0)  加入收藏
本篇文章给大家带来的内容是关于CentOS7编译安装PHP7的详细教程(图文),有一定的参考价值,有需要的朋友可以参考一下,希望对你有所帮助。使用编译的方式来安装 PHP 7。安装编译工...【详细内容】
2019-11-25  Tags: 安装php  点击:(72)  评论:(0)  加入收藏
案例: memcached是一个php的缓存扩展,通过它把数据库的查询结果缓存在内存中,而内存的读写速度比SSD还要快几十倍,解决了硬盘缓存速度的瓶颈,加快服务器网页加载速度。 流程: 一...【详细内容】
2019-11-18  Tags: 安装php  点击:(100)  评论:(0)  加入收藏
定义Dockerfile,采用官方php镜像安装,下面安装了拓展:FROM php:5.6-fpmRUN apt-get update && apt-get install -y \ libfreetype6-dev \ libjpeg62-turbo-dev \ libmcrypt-d...【详细内容】
2019-10-24  Tags: 安装php  点击:(225)  评论:(0)  加入收藏
bug没有爱安装Nginx1.安装软件包epel-release并更新,它会帮我们自动配置好yum的软件仓库。yum -y install epel-releaseyum update2.安装nginx,一般的项目不建议wget下载包编...【详细内容】
2019-09-29  Tags: 安装php  点击:(172)  评论:(0)  加入收藏
新增系统用户组和用户:[root@localhost ~]# groupadd webg[root@localhost ~]# useradd -g webg webu下载 PHP7.3.5[root@localhost ~]# mkdir devdir[root@localhost ~]# c...【详细内容】
2019-09-09  Tags: 安装php  点击:(267)  评论:(0)  加入收藏
▌简易百科推荐
序言:前段时间织梦因为版权的问题在网上闹得沸沸扬扬,也提醒了众多开发者选择cms上应该谨慎使用,今天给大家展示一款自己搭建的内容管理系统,不用担心版权的问题,而且非常容易维...【详细内容】
2021-11-30  小程序软件开发    Tags:管理系统   点击:(31)  评论:(0)  加入收藏
准备安装包(PHP: Hypertext Preprocessor)下载安装包以及组件wget https://www.php.net/distributions/php-8.0.0.tar.bz2wget https://github.com/phpredis/phpredis/archive...【详细内容】
2021-11-09  mimic96    Tags:PHP   点击:(40)  评论:(0)  加入收藏
golang context 很好用,就使用php实现了github地址 : https://github.com/qq1060656096/php-go-context context使用闭坑指南1. 将一个Context参数作为第一个参数传递给传入和...【详细内容】
2021-11-05  1060656096    Tags:PHP   点击:(40)  评论:(0)  加入收藏
一段数组为例:$list = array:4 [ 0 => array:7 [ "id" => 56 "mer_id" => 7 "order_id" => "wx163265961408769974" "is_postage" => 0 "store_name" => "奇...【详细内容】
2021-09-29  七七小影视    Tags:PHP   点击:(64)  评论:(0)  加入收藏
利用JS的CryptoJS 3.x和PHP的openssl_encrypt,openssl_decrypt实现AES对称加密解密,由于需要两种语言对同一字符串的操作,而CryptoJS 的默认加密方式为“aes-256-cbc”,PHP端也...【详细内容】
2021-09-16  李老师tome    Tags:对称加密   点击:(79)  评论:(0)  加入收藏
1、checkdate()验证格利高里日期即:日期是否存在。checkdate(month,day,year);month必需。一个从 1 到 12 的数字,规定月。day必需。一个从 1 到 31 的数字,规定日。year必需。...【详细内容】
2021-08-31  七七小影视    Tags:时间函数   点击:(80)  评论:(0)  加入收藏
对于各类开发语言来说,整数都有一个最大的位数,如果超过位数就无法显示或者操作了。其实,这也是一种精度越界之后产生的精度丢失问题。在我们的 PHP 代码中,最大的整数非常大,我...【详细内容】
2021-08-26  硬核项目经理    Tags:PHP   点击:(83)  评论:(0)  加入收藏
遵从所有教材以及各类数据结构相关的书书籍,我们先从线性表开始入门。今天这篇文章更偏概念,是关于有线性表的一个知识点的汇总。上文说过,物理结构是用于确定数据以何种方式存...【详细内容】
2021-07-19  硬核项目经理    Tags:线性表   点击:(94)  评论:(0)  加入收藏
一、开启IIS全部功能。二、部署PHP1.官网下载并解压PHP: https://windows.php.net/downloads/releases/2.将php.ini-development文件改为php.ini3.修改php.ini(1)去掉注释,并修...【详细内容】
2021-07-15  炘蓝火诗  今日头条  Tags:PHP环境   点击:(128)  评论:(0)  加入收藏
一、环境说明本文中使用本地VM虚机部署测试。OS:CentOS Linux release 7.8.2003 (Core)虚机配置:2核CPU、4G内存①系统为CentOS 7.8 x64最小化安装,部署前已完成系统初始化、...【详细内容】
2021-06-25  IT运维笔记  今日头条  Tags:PHP8.0.7   点击:(141)  评论:(0)  加入收藏
最新更新
栏目热门
栏目头条