php开发

[php开发]ubuntu所有php扩展php-7.0扩展列表

sudo apt-get install php7.0-bcmath sudo apt-get install php7.0-bz2 sudo apt-get install php7.0-calendar sudo apt-get install php7.0-ctype sudo apt-get install php7.0-curl sudo apt-get install php...
发布时间:2023-10-11  

[php开发]Linux基于php-fpm模式的lamp搭建phpmyadmin

一、 名词简介1、linux Linux 是免费开源软件,这意味着源代码可用的操作系统。2、 lamp lamp指的Linux(操作系统)、ApacheHTTP 服务器,MySQL(有时也指MariaDB,数据库软件) 和PHP(有时也是指Perl或Pytho...
发布时间:2023-10-11  

[php开发]Centos7配置ThinkPHP5.0完整过程(一)

在Centos中配置PHP服务器环境,首先要安装Apache的http服务,然后安装php解析环境,最后再配置ThinkPHP5.0。首先安装HTTP sudo yum install httpd -y 安装时需要管理员权限,所以需要使用sudo。安装之后,启动h...
发布时间:2023-10-11  

[php开发]Windows10搭建标准的WAMP开发环境-httpd2.4+php7.2+mariadb10.3

这些年来,也一直都在运维Linux环境,突然有朋友自学PHP开发,说要在自己的windows笔记本上搭建一套PHP的开发环境,之前的开发环境也都是开发人员自己搞定的,所以也没去研究过。应邀接单后竟然发现自己都不会玩wind...
发布时间:2023-10-11  

[php开发]linux 下 PHP 环境搭建

一、安装Apache2.2.221、到官网下载 http://httpd.apache.org/download.cgi ,选择相应的版本可以先下载到windows系统中,上传到linux, 也可以直接下载到linux : wget http://mirrors.tuna.tsinghua.edu.cn/ap...
发布时间:2023-10-11  

[php开发]linux下设置php执行命令

第一种方法:打开用户根目录下的:vi ~/.bash_profile # .bash_profile# Get the aliases and functionsif [ -f ~/.bashrc ]; then. ~/.bashrcfi# User specific environment and startup programsPATH=$PATH:$HO...
发布时间:2023-10-11  

[php开发]Centos6.8OpenLDAP+PhpLdapAdmin部署

一、OpenLDAP安装及配置1、安装openldap及配置yum install -y openldap openldap-* rpm -qa|grep openldapopenldap-clients-2.4.40-16.el6.x86_64openldap-servers-2.4.40-16.el6.x86_64openldap-servers-sql-2...
发布时间:2023-10-11  

[php开发]mac nginx 安装及PHP配置

安装nginx 1.安装brew命令ruby -e $(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)2.使用brew 安装nginxbrew install nginx3.修改配置nginx 文件 (文件应该在 /usr/local/etc/...
发布时间:2023-10-11  

[php开发]在 ubuntu 上运行 php 脚本

在 ubuntu 上运行 php 脚本一、配置运行环境1.要在 ubuntu 上运行 php 脚本,需要安装 Apache2 和 PHP具体步骤,请参考:Ubuntu 搭建Web服务器(MySQL+PHP+Apache)详细教程2.已经安装完,或者之前安装过,打开浏览...
发布时间:2023-10-11  

[php开发]CentOs7Nginx+php-fpm出现访问php文件404 not found

前提1.nginx成功安装并跑起来了2.php安装成功且php-fpm成功运行3.netstat -antp | grep :80 and netstat -antp | grep :9000 ,80和9000端口处于监听状态问题[root@xxx ~] # curl -i http://localhost/test.php...
发布时间:2023-10-11  

[php开发]Linux下查找及修改PHP配置文件ini的路径[转载]

##原本地址:http://www.findme.wang/blog/detail/id/278.html一、查找PHP配置文件说到查找,当然首先想到的是find命令。执行如下命令,即可查找到php.ini文件find / -name php.ini可是,找到三个php.ini文件,具...
发布时间:2023-10-11  

[php开发]php启动后netstat看不到9000端口的问题

其实就是PHP配置文件改一个参数listen = 127.0.0.1:9000 在php-fpm.conf文件里找到这一行,如果listen后面不是127.0.0.1:9000则改成127.0.0.1:9000但nginx配置也要和PHP配置保持一致server里面也要指定fastcgi_p...
发布时间:2023-10-11  

[php开发]nginx与PHP配置

一、安装依赖包yum -y install? libxml2? libxml2-devel? openssl? openssl-devel? curl? curl-devel libjpeg? libjpeg-devel? libpng? libpng-devel freetype? pcre pcre-devel? libxslt? libxslt-devel? bzip2?? ...
发布时间:2023-10-11  

[php开发]Increase PHP script execution time with Nginx

If you have a large WordPress setup or a server with limited resources, then you will often see the “504 Gateway Time-out” error.You can follow the steps given below to increase the timeout value. ...
发布时间:2023-10-11