在Windows 10上运行NginX和PHP(CGI) - 未指定输入文件

时间:2015-11-27 16:24:45

标签: php mysql windows batch-file nginx

我想在Windows 10 PC上设置Web开发环境。在我的第二个硬盘驱动器(D:\WebDev)上,我有以下内容:

enter image description here

这就是我的NginX的配置方式:http://pastebin.com/raw.php?i=JFSX6hfU

所以,这是我的 start.bat 文件的内容:

@ECHO OFF
set PATH=D:\WebDev\php-5.6.16;%PATH%

ECHO Starting...

RunHiddenConsole.exe D:\WebDev\php-5.6.16\php-cgi.exe -b 127.0.0.1:9000
RunHiddenConsole.exe D:\WebDev\php-5.6.16\php-cgi.exe -b 127.0.0.1:9001
RunHiddenConsole.exe D:\WebDev\php-5.6.16\php-cgi.exe -b 127.0.0.1:9002
RunHiddenConsole.exe D:\WebDev\php-5.6.16\php-cgi.exe -b 127.0.0.1:9003
RunHiddenConsole.exe D:\WebDev\php-5.6.16\php-cgi.exe -b 127.0.0.1:9004

RunHiddenConsole.exe D:\WebDev\mariadb-10.1.9\bin\mysqld --defaults-file=D:\WebDev\mariadb-10.1.9\my.ini --standalone --console

cd D:\WebDev\nginx-1.9.7 && START /B nginx.exe && cd ..
  

这是基于https://stackoverflow.com/questions/15819351/can-windows-php-fpm-serve-multiple-simultaneous-requests/33032959#=

组合在一起的

当我运行start.bat文件时,NginX和MariaDB即将开始(我已通过访问http://localhost进行了验证,我可以看到index.html正在投放)我可以连接使用Navicat到MariaDB服务器(mysql)。

唯一不起作用的是PHP。首先,我在任务管理器中看不到任何PHP进程,当我访问phpinfo()页面时,我收到错误:

  

未指定输入文件。

知道可能出错的是什么?对不起,如果这个问题在错误的网站上。

0 个答案:

没有答案