I need some help with my CGI site

flamzeron

New Member
Messages
3
Reaction score
0
Points
0
Did I code this right? Like, are the files linked correctly?

Code:
#!/usr/bin/perl -absolut



#### �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]				##
##      �Etalkbbs.cgi-----------------[777]			##
##      �Ejcode.pl--------------------[777]			##
##      �Etalkbbs.log(���O�ۑ��p)-----[777]			##
##	�Ecount.dat(�J�E���^�[���O)---[777]			##
##	�Eimg�t�H���_(gif�摜)--------[�ύX�s�v]		##
##								##
##--------------------------------------------------------------##


#============#
#    �ݒ�    #
#============#

require '/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 = "/public_html/cgi-bin/talkbbs/imgtitle.gif";	# Title image location goes here.
$ImgW = "376"; 			# Title image width
$ImgH = "83";  			# Title image height

$script   = "/public_html/skitstylebbs.co.cc/cgi-bin/talkbbs.cgi";	# Name of script.
$logfile  = "/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   = "/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 = "/public_html/skitstylebbs.co.cc/cgi-bin/img/bg1.gif";	# Background image
$lbg   = "/public_html/skitstylebbs.co.cc/cgi-bin/img/lefbg.gif";	# Left Background image
$rbg   = "/public_html/skitstylebbs.co.cc/cgi-bin/img/rigbg.gif";   # Right Background image
$tbg   = "/public_html/skitstylebbs.co.cc/cgi-bin/img/topbg.gif";   # Top Background image
$bbg   = "/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

Also, whenever I try to go to my website, it says that the file wasn't found. I don't understand what I did wrong. Can someone help me? Thanks in advanced.
 
Last edited:
Top