程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> The specified CGI application misbehaved by not returning a

The specified CGI application misbehaved by not returning a

編輯:關於PHP編程

是錯誤報告:
The specified CGI application misbehaved by not returning a complete set of HTTP headers
意思是:(http協議的CGI模式運行不正確)

因為perl腳本的第一句中不支持 -wT 參數,將所有的 -wT 替換成 -w 即可
即:將 #!/usr/bin/perl –wT 替換為:將 #!/usr/bin/perl –w
這是代表php是以CGI模試運行的 在php.ini找到 gi.force_redirect 把前面的分號去掉 把值改成0就行了。

再次運行就可以了,這是PHP另一種運行模式的配置方法

今天遇到的PHP錯誤

CGI Error
The specified CGI application misbehaved by not returning a complete set of HTTP headers.

最後解決辦法是將PHP的CGI方式改為isapi方式。

環境:windows XP SP3+IIS5.1+ActivePerl 5.10.0
安裝BugZilla後,配置CGI,運行後錯誤如下:

CGI Error
The specified CGI application misbehaved by not returning a complete set of HTTP headers. The headers it did return are:

"-T" is on the #! line, it must also be used on the command line at E:\bugzilla-3.4.2\bugzilla-3.4.2\index.cgi line 1.

錯誤報告:
The specified CGI application misbehaved by not returning a complete set of HTTP headers
意思是:(http協議的CGI模式運行不正確)

因為perl腳本的第一句中不支持 -wT 參數,將所有的 -wT 替換成 -w 即可
即:將 #!/usr/bin/perl –wT 替換為:將 #!/usr/bin/perl –w
這是代表php是以CGI模試運行的 在php.ini找到 gi.force_redirect 把前面的分號去掉 把值改成0就行了。

PS:另外解決辦法
修改IIS設置裡,主目錄選項卡->應用程序設置->選擇CGI,之後在添加/編輯應用程序擴展映射名:將CGI可執行文件名寫為:
D:\Perl\bin\perl.exe -x -wT “%s“ %s
(注:這裡我的Perl安裝在D:\Perl目錄裡)
這個樣子就不需要更改BUGZilla的文件了

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved