- 締切済み
携帯&PCで表示可能なカウントダウンスクリプトの設置
携帯・PC共に表示可能な、ページに埋め込み型のカウントダウンができるスクリプトを設置したいと考えています。 そこで発見したのが以下のSSIのスクリプトです。 http://210.143.110.54/soft/cgi/xday.html しかし、自分はperlに関する知識がないので、いまいち設置の仕方がよくわかりません。(SSI式のカウンターなどは設置に成功しています) <!--#exec cmd="./xday.pl yyyymmdd"-->で呼び出すとありますが、 サーバがXREAなのでexec cmdが使えません。 何か対応策はありませんでしょうか?
- みんなの回答 (2)
- 専門家の回答
補足
回答ありがとうございます。 遅くなってしまい、本当に申し訳ありません。 とりあえず今は、 / └ public_html/ ├ index.shtml └ xday.pl このような階層で、<!--#exec cgi="./xday.pl"-->と指定しています。 どうやらXREAは引数を指定できないようでした。 すると、 CGIWrap Error: Execution of this script not permitted Execution of (xday.pl) is not permitted for the following reason: Script is not executable. Issue 'chmod 755 filename' となってしまいました。どうやらパーミッション604では駄目みたいで。 そこで705にしてみたところ 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 thisscript under CGIWrap debugging. Usually, either rename or linkthe script temporarily to a file which ends with .cgidextension, or add a AddHandler cgi-script-debug .cgiline to your .htaccess file. となってしまいました汗 print "Content-type: text/html\n\n";はもちろん入れているんですが…。 <!--#include virtual="./xday.pl"-->なども試しましたが同じ結果でした。 拡張子のせいなのかな…などと思っていますが一体原因はなんなのでしょうか?今一度お助けください。。