`
chengxianju
  • 浏览: 258017 次
  • 性别: Icon_minigender_1
  • 来自: 合肥
社区版块
存档分类
最新评论

解决NGINX PHP "No input file specified"

 
阅读更多

本地apache,换成nginx1.0.11,

配置文件如下:

#user  nobody;
worker_processes  1;

error_log  logs/error.log;
#error_log  logs/error.log  notice;
#error_log  logs/error.log  info;

#pid        logs/nginx.pid;


events {
    worker_connections  1024;
}


http {
    include       mime.types;
    default_type  application/octet-stream;

    #log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
    #                  '$status $body_bytes_sent "$http_referer" '
    #                  '"$http_user_agent" "$http_x_forwarded_for"';

    #access_log  logs/access.log  main;

    sendfile        on;
    #tcp_nopush     on;

    #keepalive_timeout  0;
    keepalive_timeout  65;

    #gzip  on;

    server {
        listen       8080;
        server_name  localhost;
		charset utf-8;
        #charset koi8-r;

        #access_log  logs/host.access.log  main;

        location / {
            root   html;
            index  index.html index.htm index.php;
			autoindex on;
        }

        #error_page  404              /404.html;

        # redirect server error pages to the static page /50x.html
        #
        error_page   500 502 503 504  /index2.html;
        location = /index2.html {
            root   html;
        }

        # proxy the PHP scripts to Apache listening on 127.0.0.1:80
        #
        #location ~ \.php$ {
        #    proxy_pass   http://127.0.0.1;
        #}

        # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
        #
        location ~ \.php$ {
           #root           D:\test;
           fastcgi_pass   127.0.0.1:9000;
           fastcgi_index  index.php;
           fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
           include        fastcgi_params;
        }

        # deny access to .htaccess files, if Apache's document root
        # concurs with nginx's one
        #
        #location ~ /\.ht {
        #    deny  all;
        #}
    }


    # another virtual host using mix of IP-, name-, and port-based configuration
    #
    #server {
    #    listen       8000;
    #    listen       somename:8080;
    #    server_name  somename  alias  another.alias;

    #    location / {
    #        root   html;
    #        index  index.html index.htm;
    #    }
    #}


    # HTTPS server
    #
    #server {
    #    listen       443;
    #    server_name  localhost;

    #    ssl                  on;
    #    ssl_certificate      cert.pem;
    #    ssl_certificate_key  cert.key;

    #    ssl_session_timeout  5m;

    #    ssl_protocols  SSLv2 SSLv3 TLSv1;
    #    ssl_ciphers  HIGH:!aNULL:!MD5;
    #    ssl_prefer_server_ciphers   on;

    #    location / {
    #        root   html;
    #        index  index.html index.htm;
    #    }
    #}

}

 最主要的是:

1. 更改php.ini

首先php.ini的配置中把

;cgi.fix_pathinfo=0   改为

cgi.fix_pathinfo=1



2. 在nginx/conf/nginx.conf   找到:
fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;  改为:
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;

 

分享到:
评论

相关推荐

    nginx提示No input file specified怎么办.docx

    Nginx 提示 "No input file specified" 的解决方法 Nginx 是一个流行的开源 web 服务器软件,然而,在使用 Nginx 时,有时可能会遇到 "No input file specified" 的错误提示,这篇文章将详细讲解该错误的解决方法。...

    nginx+php出现No input file specified解决办法

    今天在自己本地的开发环境突然出现了No input file specified错误,反复检查返现自己的配置文件和配置路径以及权限都没有问题。经过反复的排查终于发现了问题,现将问题及解决分享如下: 问题原因分析 在GitHub上...

    提示No input file specified的解决方法.docx

    下面将从IIS、Apache和Nginx三个方面详细介绍解决"No input file specified"错误的方法。 IIS解决方法 在IIS服务器中,出现"No input file specified"错误,可能是由于PHP.ini文件中的doc_root行配置不正确。解决...

    【LNMP】提示Nginx PHP “No input file specified”错误的解决办法

    ### LNMP环境中“Nginx PHP ‘No input file specified’”错误解析与解决方案 #### 错误概述 在LNMP(Linux + Nginx + MySQL + PHP)环境下部署Web应用时,用户可能会遇到一个常见的问题:“No input file ...

    提示No input file specified的解决方法

    Nginx No input file specified 解决方法 在 Nginx 中,如果我们遇到了 "No input file specified" 的错误信息,可以尝试以下解决方法: 1. 修改 `php.ini` 文件中的配置,添加以下两项:`cgi.fix_pathinfo=1` 和 ...

    报错 No input file specified的解决办法

    你可以参考提供的资源,如 "No input file specified的解决方法-百度经验.url" 和 "报错 ”No input file specified.“ 排查 - zh_mead的博客 - CSDN博客.url",这些链接可能提供了更具体的步骤和案例。 在实际操作...

    详解no input file specified 三种解决方法

    总结来说,面对“No input file specified”错误时,需要根据使用的服务器类型(IIS、Apache、Nginx)来选择正确的解决方法。无论是哪种服务器,都需要仔细检查PHP运行环境和Web服务器的配置,确保各个参数正确设置...

    电脑提示“No input file specified”怎么办.docx

    #### 四、Nginx环境下解决“No input file specified” ##### 方法一:配置Nginx与PHP-FPM 1. **编辑php.ini文件**: - 找到php.ini文件(通常位于`/etc/php/版本号/fpm/`或`/etc/php/版本号/cli/`)。 - 设置...

    关于PHP5.6+版本“No input file specified”问题的解决

    在PHP开发过程中,有时会遇到“No input file specified”的错误提示,这通常发生在PHP5.6及以上版本,尤其是在使用FastCGI模式时。这个错误是由于服务器无法正确处理请求路径中的参数导致的,特别是与PATH_INFO相关...

    nginx + php 安装配置——WEB页面

    总之,通过以上步骤,我们成功地在CentOS系统上安装了Nginx和PHP,配置了Nginx以支持PHP解析,并解决了可能出现的"No input file specified"错误。这样的配置为部署和运行基于PHP的Web应用程序提供了基础。

    Nginx中部署Angular项目遇到的坑巨坑

    网上搜索Angular 项目编译后部署到 Nginx 中的方法,多数文章都介绍了需要在 Nginx 中的配置文件的 location 中特别指定跳转到首页来避免刷新导致404的问题,那么完整的server 代码是: server { listen 80; ...

    varnish服务器[参考].pdf

    在配置PHP与FastCGI时,可能会遇到"No input file specified."的问题。这通常是由于php.ini中的配置错误,例如`cgi.fix_pathinfo`和`doc_root`设置不当。确保这两个值正确无误,并根据实际情况为每个虚拟主机设置...

    varnish服务器[借鉴].pdf

    在PHP配置中,确保`cgi.fix_pathinfo=1`并且`doc_root`设置正确,以避免“No input file specified.”的错误。同时,Nginx中的FastCGI配置也需要确保`SCRIPT_FILENAME`变量指向正确的PHP脚本路径,例如: ```nginx ...

    YGBOOK带采集规则

    伪静态配置参见压缩包中 txt 文件,针对不同环境的有不同配置说明(自带.htacess 文件重新优化了兼容性,解决了 apache+nts 模式下可能出现的“No input file specified.”问题) 安装步骤: 1.将文件解压后上传至...

Global site tag (gtag.js) - Google Analytics