1.在ubuntu下安装配置nginx, mysql, php安装步骤:参考:https://www.digitalocean.com/community/tutorials/how-to-install-linux-nginx-mysql-php-lemp-stack-on-ubuntu-12-0...
分类:
Web程序 时间:
2014-07-18 16:29:36
阅读次数:
302
在配置中加上location ~ .*\.(php|php5)?$ {fastcgi_pass 127.0.0.1:9000;fastcgi_read_timeout 700;fastcgi_index index.php;include fastcgi.conf;}
分类:
Web程序 时间:
2014-07-18 15:17:43
阅读次数:
335
LNMP一键安装zabbix安装 zabbix安装图文介绍php.ini修改,重启nginx后,不生效原因:php5.3中要重启php-fpm,单纯的重启nginx不能使php.ini设置生效ps aux | grep php-fpmkill -QUIT xxxx启动:/usr/local/...
分类:
其他好文 时间:
2014-07-17 22:33:45
阅读次数:
290
Nginx与PHP结合,nginx解析动态网页,而php动态网页交给php处理,解决方案:---从nginx的角度使用nginx的代理模块使用FastCGI模块---从php的角度以php-fpm方式运行php自带的fastcgi serverlighttpd带的spawn-fcgi 1)php安....
分类:
Web程序 时间:
2014-07-16 18:48:25
阅读次数:
310
1》 下载php源码
#wget http://cn2.php.net/get/php-5.4.30.tar.gz/from/this/mirror
官网5.2的版本貌似没提供
为了php-5.2.13-fpm php-5.2.13.tar.gz兼容 去我百度分享地址下载 http://pan.baidu.com/s/1sjwLdNZ
2》 下载 php...
分类:
Web程序 时间:
2014-07-16 08:29:15
阅读次数:
288
之前在Ubuntu12.04上搭建过PHP开发环境,按照这里http://budongzhenren.blog.51cto.com/2288320/991365安装的。但是系统换成14.04后,再用这个方法安装一直不成功,让我很郁闷,折腾了好久,后来才发现在12.04上安装Nginx,默认的网站.....
分类:
数据库 时间:
2014-07-15 08:16:11
阅读次数:
553
All relative paths in this config are relative to php's install prefix
Pid file
/usr/local/php/logs/php-fpm.pid
Error log file
/usr/local/php/logs/php-fpm.log
Log level
notice
Whe...
分类:
Web程序 时间:
2014-07-13 16:26:05
阅读次数:
248
[root@luozhonghua etc]# /usr/local/php/sbin/php-fpm start
Starting php_fpm Jul 12 09:41:02.077951 [ERROR] fpm_unix_conf_wp(), line 124: please specify user and group other than root, pool 'default'
...
分类:
其他好文 时间:
2014-07-13 16:20:24
阅读次数:
225
配置nginx支持php 出现了No input file specified ?
只要修改下安装目录下的 nginx.conf下的
location ~ \.php$ {
root html;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index ...
分类:
Web程序 时间:
2014-07-13 16:16:48
阅读次数:
270
执行:
./configure --prefix=/usr/local/php --enable-fastcgi --enable-fpm
之后出现
Running FastCGI Process Manager checks
checking for php-fpm config file path... $prefix/etc/php-fpm.conf
checking for ...
分类:
其他好文 时间:
2014-07-13 13:50:43
阅读次数:
205