zhucheer 发表于 2014-8-26 09:16:34

访问挂载的目录出现No input file specified.求救

mount -t cifs -o uid=500,gid=500,username=username,password=*** //192.168.xx.xx/www /webser/www/code/ -o nolock用上面这个命令挂载好window下的一个目录,有写入权限,无论是通过192.168.XX.XX/code/**这样访问还是新建一个虚拟机来访问都会出现No input file specified.
网上搜了好多,什么改php.ini的root_dir 、pathinfo什么的都么用,我把nginx工作进程改成root用户了还是一样
root      17580.01.118504 12332 ?      S    09:02   0:00 nginx: worker process



nginx测试结果如下:
# /usr/local/nginx/sbin/nginx -t
nginx: the configuration file /usr/local/nginx/conf/nginx.conf syntax is ok
nginx: configuration file /usr/local/nginx/conf/nginx.conf test is successful


配置如下:
server
      {
                listen 80 default;
                #listen [::]:80 default ipv6only=on;
                server_name www.lnmp.org;
                index index.html index.htm index.php;
                root/webser/www;

                #error_page   404   /404.html;
                location ~ [^/]\.php(/|$)
                        {
                              # comment try_files $uri =404; to enable pathinfo
                              try_files $uri =404;
                              fastcgi_passunix:/tmp/php-cgi.sock;
                              fastcgi_index index.php;
                              include fastcgi.conf;
                              #include pathinfo.conf;
                        }

                location /nginx_status {
                        stub_status on;
                        access_log   off;
                }

                location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
                        {
                              expires      30d;
                        }

                location ~ .*\.(js|css)?$
                        {
                              expires      12h;
                        }

                access_log/home/wwwlogs/access.logaccess;
      }

licess 发表于 2014-8-26 11:03:35

你确定挂载的目录能直接访问吗

zhucheer 发表于 2014-8-26 11:14:20

可以访问的,下面新建一个.htm或者txt的文件可以,php后缀的就不行,centos6.5,6.2都是这样。:Q

hbniit 发表于 2014-9-27 00:37:08

同求这个问题,我也是出现这样的状况。

ipahoo_com 发表于 2014-9-27 12:46:54

换个5.4吧,我也遇过
页: [1]
查看完整版本: 访问挂载的目录出现No input file specified.求救