| maroさん同様、v7.0で
#---[SSI表示設定]-------#
$SSI = 1;
$SC = 0;
とすると、
Script Error
The script did not produce proper HTTP headers. Please see the error log to see the detail of the errors. Depending on the server configuration, you can also run this script under CGIWrap debugging. Usually, either rename or link the script temporarily to a file which ends with .cgid extension, or add a AddHandler cgi-script-debug .cgi line to your .htaccess file.
とエラー表示されます。($JSc = 0、$HTc = 0)(サーバーはxrea.com)
そこで、v7.0の239行目をv6.6のように書き換えて試してみたら、取り敢えず上手く動作している感じです。
if($ARGV[0] eq "s"){$Rankh.="Content-type: text/html\n\n"; if(!$SC){exit;}}
↓↓↓
if($ARGV[0] eq "s"){print"Content-type: text/html\n\n";if($SC==0){exit;}}
これだと他の場面で問題が発生するでしょうか?
|