flamzeron
New Member
- Messages
- 3
- Reaction score
- 0
- Points
- 0
My CGI website won't show. Whenever I go to it, it just says:
"Internal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request.
Please contact the server administrator, webmaster@cgi-bin.skitstylebbs.co.cc 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.
Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request."
I don't know what I did wrong. Here's my code in case I did.
What did I do wrong? Thanks in advanced.
"Internal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request.
Please contact the server administrator, webmaster@cgi-bin.skitstylebbs.co.cc 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.
Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request."
I don't know what I did wrong. Here's my code in case I did.
Code:
#!/usr/local/bin/perl
#### �X�N���v�g�ì¬ï¿½ï¿½ ####################
## Honey Board v1.62 (2000/10/08) ##
## Copyright(C) Kent Web 2000 ##
## Mail: webmaster@kent-web.com ##
## Home: http://www.kent-web.com/ ##
##########################################
$ver = 'Honey v1.62e'; # �o�[�W�������
##+- Created By --------------------------+##
## ##
## Talking BBS v1.0307 (1.0307) ##
## ##
## *- CGI Cafe. -* ##
## URL: http://saya.kiy.jp/ ##
## ##
##+------------------------------------+##
##+- CGI Edited and Translated By --------------------------+##
## ##
## Talking BBS v1.62e (1.62) ##
## ##
## Zapchu Evolution ##
## URL: http://zapchu.com ##
## ##
##+------------------------------------+##
##+- Re-post, Hosting, Slight CGI Edit, and Early HTML Edit By --------------------------+##
## ##
## Talking BBS v1.62e (1.62) ##
## ##
## Flamzeron ##
## URL: http://www.freewebs.com/flamzeron/ ##
## ##
##+------------------------------------+##
##----[���ӎ���]------------------------------------------------##
## ##
## 1. ���̃X�N���v�g�̓t���[�\�t�g�ł��B���̃X�N���v�g��g�p����##
## �����Ȃ鑹�Q�ɑ΂��Ă��҂͈�؂ÌÓ”C�𕉂��܂���B ##
## ##
## 2. �ݒu�Ɋւ��鎿��͌f���‚ɂ��肢�������܂��B ##
## ���[���ɂ�鎿��ɂ͈�؂��������܂���B ##
## ##
## 3. ����CGI�ɑ΂���₢���킹��A�X�N���v�g�ì¬ï¿½ï¿½ï¿½É‚� ##
## ��΂ɂ��Ȃ��ł��������ËB ##
## ##
##��������������������������������������������������������������##
## ##
## �� �K�v�ȃt�@�C���Ǝ�ȃp�[�~�b�V�����ݒ� ##
## ���e�v���o�C�_�ɂ��ĈႢ�܂��̂ŕK���m�F���ĉ������ËI##
## ������CGI�X�N���v�g��u���f�B���N�g���� ##
## �@�p�[�~�b�V������[777]�ɕÏX�����������I ##
## ##
##�@(��)talkbbs�f�B���N�g��[777] ##
## �talkbbs.cgi-----------------[777] ##
## �jcode.pl--------------------[777] ##
## �talkbbs.log(���O�ۑ��p)-----[777] ##
## �count.dat(�J�E���^�[���O)---[777] ##
## �img�t�H���_(gif�摜)--------[�ÏX�s�v] ##
## ##
##--------------------------------------------------------------##
#============#
# �ݒ� #
#============#
require 'skitstylebbs.x10.mx/public_html/skitstylebbs.co.cc/cgi-bin/jcode.pl'; # Location of jcode.pl
$title = "Skit Style BBS"; # Title name
$t_color = "#000000"; # Title color
$t_face = "�ւ���"; # Title font
$t_point = '14pt'; # Title font size
$ImgT = "skitstylebbs.x10.mx/home/flamze/public_html/cgi-bin/talkbbs/imgtitle.gif"; # Title image location goes here.
$ImgW = "376"; # Title image width
$ImgH = "83"; # Title image height
$script = "skitstylebbs.x10.mx/home/flamze/public_html/skitstylebbs.co.cc/cgi-bin/talkbbs.cgi"; # Name of script.
$logfile = "skitstylebbs.x10.mx/home/flamze/public_html/skitstylebbs.co.cc/cgi-bin/talkbbs.log"; # Name of logfile.
$pass = 'apple'; # Admin password
$admin ="Admin"; # Admin name.
$max = 300; # Max number of entries and replies before log overwrites.
$home = "http://www.skitstylebbs.co.cc/"; # Homepage
$imgurl = "skitstylebbs.x10.mx/home/flamze/public_html/skitstylebbs.co.cc/cgi-bin/img"; # Folder location for your images
$home_img = "home.gif"; # Homepage image.
# �w�i�F�A�����F
$bgrnd = "skitstylebbs.x10.mx/home/flamze/public_html/skitstylebbs.co.cc/cgi-bin/img/bg1.gif"; # Background image
$lbg = "skitstylebbs.x10.mx/home/flamze/public_html/skitstylebbs.co.cc/cgi-bin/img/lefbg.gif"; # Left Background image
$rbg = "skitstylebbs.x10.mx/home/flamze/public_html/skitstylebbs.co.cc/cgi-bin/img/rigbg.gif"; # Right Background image
$tbg = "skitstylebbs.x10.mx/home/flamze/public_html/skitstylebbs.co.cc/cgi-bin/img/topbg.gif"; # Top Background image
$bbg = "skitstylebbs.x10.mx/home/flamze/public_html/skitstylebbs.co.cc/cgi-bin/img/botbg.gif"; # Bottom Background image
$bgcol = "#FFFFFF"; # Background color
$text = "#000000"; # Text color
$link = "#cc0000"; # Link color
$vlink = "#800000"; # Visited link color
$alink = "#800000"; # Active link color
What did I do wrong? Thanks in advanced.