Nginx執行php,顯示“No input file specified. ”的處理方法
- 修訂歷史History:
2011.05.29 初稿,僅記錄
- 系統: Ubuntu 10.04
- 軟體: Nginx 0.7.65 | PHP 5.2.10
使用apt-get install nginx和php-cgi
配置好nginx和php,如果配置的請看網上教程,很多。
在/var/www/nginx-default中放上一份phpinfo.php,使用
http://localhost/phpinfo.info |
訪問,結果報錯,顯示 “No input file specified”
【不良現狀】
尋找原因,發現這是一個灰常普遍的問題,處理方法大異其趣!
現存的各種方案,是讓你把nginx站點配置檔案中的這一句話hardcode起來的(真想罵人):
# 即把fastcgi_param指令的SCRIPT_FILENAME項 從動態值改為fixed值,如: fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; # 修改為 fastcgi_param SCRIPT_FILENAME /var/www/nginx-default$fastcgi_script_name; |
另外還有一種是修改php.ini中的什麼
cgi.fix_pathinfo=1 doc_root= |
請注意!!以上這些都是非常不良的改動!
【問題原因】
導致“No input file specified. ”這個問題的原因,是因為nginx的配置不正確,從而導致CGI獲取引數錯誤。
簡單來說,是因為$document_root這個變數尚未定義。
Nginx的配置檔案中,
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; |
而我們也知道,在nginx中,有三級的關係,http > server > location。
如果要在location塊中使用$document_root,需要在上層server塊或http塊中定義了root指令,這樣才能通過繼承關係,在location塊中用$document_root拿到root的值。而定義在別的location塊中的root指令的值,是一個區域性變數,其值無法在匹配php的這個location塊中被獲取。
因此,解決這個問題的辦法,是把"/" location塊中的root上提到server。
或者,在php的location塊中,重新定義root。
即可。
具體配置是這樣的
location ~ \.php$ {
root html;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
出處:http://blog.163.com/cobyeah@126/blog/static/140137653201142945054441/
相關文章
- No input file specified.
- 記:痛苦的排錯之” No input file specified.“
- 使用url()後出現No input file specified.
- apache PHP 隱藏 index.php 報錯 No input file specified. 解決辦法ApachePHPIndex
- apache 與 Nginx 隱藏 index.php 報錯 No input file specified. 解決辦法 設定偽靜態ApacheNginxIndexPHP
- Web 伺服器顯示 no input file specifiedWeb伺服器
- 處理input file限制只能拍照不能選相簿
- xshell終端顯示亂碼的處理方法
- 在 apache 中重寫規則不生效的問題 [No input file specified.] 解決Apache
- php 與 nginx 的兩種處理方式PHPNginx
- 資料顯示62%的網站仍然執行PHP 5網站PHP
- Nginx 與 PHP 的執行機制NginxPHP
- 計劃任務執行批處理指令碼,執行記錄顯示“上次執行結果(0x1)”指令碼
- win10瀏覽器執行緩慢顯示正在處理怎麼辦Win10瀏覽器
- 執行 PHP artisan queue:work 一直 processing 非正常執行處理PHP
- php執行的時候報File size limit exceededPHPMIT
- idea執行時預設顯示自己建立的jsp方法IdeaJS
- win10行動硬碟我的電腦無顯示怎麼辦 win10行動硬碟電腦不顯示處理方法Win10硬碟
- 記錄一次通過homestead配置多站點不起作用的坑--No input file specified.
- bc搭建資料夾顯示特殊html字元處理方法HTML字元
- no input file specified 三種解決方法
- 系統中資料顯示進行脫敏處理
- nginx+php執行請求的工作原理NginxPHP
- jQuery 顯示 input 輸入的密碼!jQuery密碼
- input 的placeholder不顯示如何解決
- 【JavaScript】拖拽圖片檔案顯示縮圖 + div點選模擬 input[type=file]JavaScript
- Android 介面顯示與邏輯處理Android
- win10圖示錯誤顯示怎麼改回來_win10電腦圖示顯示錯誤處理方法Win10
- JAVA不使用執行緒池來處理的非同步的方法Java執行緒非同步
- WordPress 生成網站地圖顯示 XML 解析錯誤:格式不佳的處理方法網站地圖XML
- win10 office圖示無法顯示怎麼辦 w10系統office圖示顯示不出來處理方法Win10
- input type="file"使用
- Mysql輸出中文顯示亂碼處理MySql
- vscode無法執行input輸入解決方法VSCode
- Netty中的執行緒處理EventLoopNetty執行緒OOP
- php錯誤與異常處理方法PHP
- 一文搞懂 $_POST 和 file_get_contents ("PHP://input") 的區別PHP
- el-input-number 的圖層顯示問題
- Win10系統WampServer執行顯示橙色變成綠色的方法Win10Server