发布于 2015-05-24 23:57:36 | 694 次阅读 | 评论: 1 | 来源: PHPERZ
Nginx WEB服务器
Nginx 是一个高性能的 HTTP 和 反向代理 服务器,也是一个 IMAP/POP3/SMTP 代理服务器。 Nginx 是由 Igor Sysoev 为俄罗斯访问量第二的 Rambler.ru 站点开发的,第一个公开版本0.1.0发布于2004年10月4日。其将源代码以类BSD许可证的形式发布,因它的稳定性、丰富的功能集、示例配置文件和低系统资源的消耗而闻名。
PHP版本 5.4
nginx 1.62
2015/04/07 05:50:43 [error] 1788#0: *413 FastCGI sent in stderr: “PHP message: PHP Parse error: syntax error, unexpected end of file in /data/bei123/class/functions.php on line 1246″ while reading response header from upstream, client: 1×2.1×3.1×7.1×7, server: xxx.xxx.8x.1×9, request: “GET / HTTP/1.1″, upstream: “fastcgi://127.0.0.1:9000″, host: “1×2.1×2.x5.1×9″
打开PHP.ini中的短标签选项
short_open_tag=Off
改成
short_open_tag=On
然后重启php-fpm
ps axu |grep php-fpm 查看 Ss那一项 的第二列 的数字 为进程ID
kill -USR2 进程ID
来重启php-fpm