KENT-WEB サポートコーナー 過去ログ [ 0371 ]


記事No: 3841
投稿日: 2008/06/10(Tue) 20:43:00
タイトルinit.cgiのHTMLヘッダーについて
ID情報: bois
投稿者: 麻美
URLhttp://www7b.biglobe.ne.jp/~sayuri-geisha/member/gate.cgi

初めまして掲示板はJoyful Noteを使わせて頂いております。

データ収集加工はCOSMO GATEを使わせて頂いております。

ファビコンの事なのですがJoyful Noteのinit.cgiのHTMLヘッダー


#-------------------------------------------------
# HTMLヘッダー
#-------------------------------------------------
sub header {
$headflag=1;
print "Content-type: text/html\n\n";
print <<"EOM";
<html>
<head>
<META HTTP-EQUIV="Content-type" CONTENT="text/html; charset=Shift_JIS">
<embed src="example2.wav" autostart="false" loop="false" hidden="false" width="300" height="40">
(<link rel="shortcut icon" href="favicon.ico">)
<style type="text/css">
<!--
body,td,th { font-size:$b_size; font-family:$face }
a:hover { color: $al }
-->
</style>
<title>$title</title>
</head>
EOM

()内の<link rel="shortcut icon" href="favicon.ico">貼り付

けて使用してファビコンうまく動作してるのですが、

データ収集加工はCOSMO GATEのinit.cgiのHTMLヘッダー


#-------------------------------------------------
# HTMLヘッダ
#-------------------------------------------------
sub header {
print "Content-type: text/html\n\n";
print <<"EOM";
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html lang="ja">
<head>
(<embed src="example2.wav" autostart="false" loop="false" hidden="false" width="300" height="40">)
(<link rel="shortcut icon" href="favicon.ico">)
<meta http-equiv="content-type" content="text/html; charset=shift_jis">
<meta http-equiv="content-style-type" content="text/css">
<STYLE TYPE="text/css">
<!--
a:link { text-decoration:none; }
a:visited { text-decoration:none; }
a:active { text-decoration:none; }
a:hover { text-decoration:underline; color:red; }
-->
</STYLE>
<title>CosmoGate</title></head>
$body
EOM
$headflag = 1;
}

()内の<link rel="shortcut icon" href="favicon.ico">貼り付

けしても、うまく動作しません。試しに()内の<link rel="shortcut icon" href="favicon.ico">上部に↓を貼り付け

して試しました、これは動作しております。

<embed src="example2.wav" autostart="false" loop="false" hidden="false" width="300" height="40">

*Joyful Noteの init.cgi HTMLヘッダー
<link rel="shortcut icon" href="favicon.ico">貼り付けて
動作するのに

*COSMO GATEの init.cgi HTMLヘッダー
<link rel="shortcut icon" href="favicon.ico">貼り付けて
うまく動作しないのは何故でしょうか?恐れ入りますが教えてください、よろしくお願いします。






記事No: 3843
投稿日: 2008/06/10(Tue) 20:49:42
タイトルRe: init.cgiのHTMLヘッダーについて
ID情報: pachira
投稿者: pachira
URLhttp://www5e.biglobe.ne.jp/~pachira/

> 初めまして掲示板はJoyful Noteを使わせて頂いております。
>
> データ収集加工はCOSMO GATEを使わせて頂いております。
>
> ファビコンの事なのですがJoyful Noteのinit.cgiのHTMLヘッダー
> ↓
>
> #-------------------------------------------------
> # HTMLヘッダー
> #-------------------------------------------------
> sub header {
> $headflag=1;
> print "Content-type: text/html\n\n";
> print <<"EOM";
> <html>
> <head>
> <META HTTP-EQUIV="Content-type" CONTENT="text/html; charset=Shift_JIS">
> <embed src="example2.wav" autostart="false" loop="false" hidden="false" width="300" height="40">
> (<link rel="shortcut icon" href="favicon.ico">)
> <style type="text/css">
> <!--
> body,td,th { font-size:$b_size; font-family:$face }
> a:hover { color: $al }
> -->
> </style>
> <title>$title</title>
> </head>
> EOM
>
> ()内の<link rel="shortcut icon" href="favicon.ico">貼り付
>
> けて使用してファビコンうまく動作してるのですが、
>
> データ収集加工はCOSMO GATEのinit.cgiのHTMLヘッダー
> ↓
>
> #-------------------------------------------------
> # HTMLヘッダ
> #-------------------------------------------------
> sub header {
> print "Content-type: text/html\n\n";
> print <<"EOM";
> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
> <html lang="ja">
> <head>
> (<embed src="example2.wav" autostart="false" loop="false" hidden="false" width="300" height="40">)
> (<link rel="shortcut icon" href="favicon.ico">)
> <meta http-equiv="content-type" content="text/html; charset=shift_jis">
> <meta http-equiv="content-style-type" content="text/css">
> <STYLE TYPE="text/css">
> <!--
> a:link { text-decoration:none; }
> a:visited { text-decoration:none; }
> a:active { text-decoration:none; }
> a:hover { text-decoration:underline; color:red; }
> -->
> </STYLE>
> <title>CosmoGate</title></head>
> $body
> EOM
> $headflag = 1;
> }
>
> ()内の<link rel="shortcut icon" href="favicon.ico">貼り付
>
> けしても、うまく動作しません。試しに()内の<link rel="shortcut icon" href="favicon.ico">上部に↓を貼り付け
>
> して試しました、これは動作しております。
>
> <embed src="example2.wav" autostart="false" loop="false" hidden="false" width="300" height="40">
>
> *Joyful Noteの init.cgi HTMLヘッダー
> <link rel="shortcut icon" href="favicon.ico">貼り付けて
> 動作するのに
>
> *COSMO GATEの init.cgi HTMLヘッダー
> <link rel="shortcut icon" href="favicon.ico">貼り付けて
> うまく動作しないのは何故でしょうか?恐れ入りますが教えてください、よろしくお願いします。

http://から書いてみて下さい。

<link rel="shortcut icon" href="favicon.ico">
↓↓↓
<link rel="shortcut icon" href="http://〜〜/favicon.ico">


記事No: 3846
投稿日: 2008/06/11(Wed) 02:39:03
タイトル有難うございました^^
ID情報: bois
投稿者: 麻美
URLhttp://www7b.biglobe.ne.jp/~sayuri-geisha/member/gate.cgi

いつもpachiraさん有難うございます。すぐにファビコン動作

致しました^^ 感激です。


[検索ページ]