記事No | : 9719 |
投稿日 | : 2011/11/23(Wed) 21:57:17 |
タイトル | : Shopping Cartの画像表示 |
ID情報 | : Oyazi |
投稿者 | : 工藤 |
URL | : http://hisamac.com/cgi-bin/cart/cart.cgi |
初めて投稿させて頂きます。
MacOS 10.6 自家Serverにて運用しております。
Perlのバージョンは5.12。
KENTさんのShopping Cartを使って、今後の運用を考えていますが
設置自体はFetchにてテキストでアップロード、パーミッションの変更まで
済んでおります。
ただ画像が出てきません。Check.cgiも問題無いのですが、画像をクリックするとServerエラーが出ます。
ただServerのログには何も残っておりません。
”Internal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request.
Please contact the server administrator, admin@example.com and inform them of the time the error occurred, and anything you might have done that may have caused the error.
More information about this error may be available in the server error log.”
どなたかお知恵の拝借をお願いします。
記事No | : 9720 |
投稿日 | : 2011/11/24(Thu) 00:18:21 |
タイトル | : Re: Shopping Cartの画像表示 |
ID情報 | : Fuyuki |
投稿者 | : BAL |
URL | : http://f43.aaa.livedoor.jp/~sumure/ |
imgディレクトリ及びcssディレクトリをcgi-binの外にアップしてください。
tmplディレクトリ内の全てのテンプレートファイルのcssのパスもhttpで指定してください。
【参考】
http://www.kent-web.com/support/faq/faq1-3.html#11
記事No | : 9726 |
投稿日 | : 2011/11/24(Thu) 21:20:43 |
タイトル | : Re^2: Shopping Cartの画像表示 |
ID情報 | : Oyazi |
投稿者 | : 工藤 |
BALさん
ご教授有り難うございます。
早速やってみましたが駄目ですね?
記事No | : 9727 |
投稿日 | : 2011/11/24(Thu) 22:18:27 |
タイトル | : Re^3: Shopping Cartの画像表示 |
ID情報 | : Fuyuki |
投稿者 | : BAL |
URL | : http://f43.aaa.livedoor.jp/~sumure/ |
> BALさん
>
> ご教授有り難うございます。
> 早速やってみましたが駄目ですね?
指示通りにやれていないですね。
1、cgi-binの外にcartディレクトリを作成してその中にimgディレクトリとcssディレクトリをアップ
http://hisamac.com/cart/img/
http://hisamac.com/cart/css/
2、init.cgi画像へのパスを変更
# 画像アップディレクトリ【URLパス】
$cf{imgurl} = '../../cart/img';
# 画像アップディレクトリ【サーバパス】
$cf{imgdir} = '../../cart/img';
3、tmplディレクトリ内の全てのファイルのcssのパスを変更
<link href="./css/cart.css" rel="stylesheet" type="text/css">
↓
<link href="http://hisamac.com/cart/css/cart.css" rel="stylesheet" type="text/css">