#!/usr/bin/perl #<<< ####################################### # --- TetraBB PRO --- # By: tetrabb.com # Version: 0.20.x # Last modified: 2009-xx-xx # Copyright (c) 2008-2009 # Website: http://tetrabb.com # For more details see license.txt # # Entry script: webbbs_config.pl # Author: Rainer Libowski # ####################################### # # Copyright (C) 2006-2008 tetrabb.com. All Rights Reserved. # # You may use this software, with or without modifications, as long # as all copyright notices, disclaimers, headers and credit links # remain intact. Creditlinks must stay readable on all pages. # Redistribution of the software without prior written consent is # expressly forbidden. Creating derivative works based on the software # or any part thereof is expressly forbidden. # Obtain permission before redistributing this program over the # Internet or in any other medium. In all cases copyright, header # and credit link on all pages must remain intact and stay visible. # # The software is provided "as is," without warranty of any kind, # either expressed or implied. In no event shall the copyright # holders be liable for any damages, losses, and/or causes of action # arising out of the use of or inability to use the software. # #>>> #BEGIN { # $libbasepath = $ENV{SCRIPT_FILENAME}; # $libbasepath =~ s/(.+)\/.+/$1/; #} #use lib "$libbasepath/pro_lib"; #use lib "$libbasepath/lib"; ################################################ ## Define your forum's configuration settings ## ################################################ use CGI::Carp qw(fatalsToBrowser); #print "Content-type: text/html \n\n"; # load startup script $startup = $ENV{'DOCUMENT_ROOT'} . '/startups/startup_public.pl'; require "$startup"; $boardid = 20; # define $archive_URL if there is an archive set up for this script #$archive_URL = 'http://yourdomain.com/path/to/archive_config.pl'; # Do NOT remove this line: &get_ready; ## (3) Variables from webbbs_settings.pl you want changed for this board: $highlight_navlink = 'nb_forum'; require 'section3_public_forums.pl'; $text{'0500'} = "Spam Fighters Forum"; ################################## ## Do NOT change anything below ## ################################## &TBB::launch_public_go_core; sub get_ready { require 'tbb.pl'; &TBB::launch_public_get_ready; } ## End ##