<?php
/*
This file is part of Hotseat Corner.
Hotseat Corner is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
Hotseat Corner is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with Hotseat Corner. If not, see http://www.gnu.org/licences/.
*/
$unsafewords_file = __ROOT__.'etc/unsafe_words.etc.txt';
$safewords_file = __ROOT__.'etc/safe_words.etc.txt';
$hotseatdomain = ''; //Make sure you set this, otherwise your e-mails won't work.
$hotseataddress = ''; //Make sure this is set, because otherwise reset e-mails will have no URL.
$cookie_domain = ''; //Make sure you put the domain here
$db_host = '127.0.0.1';
$cookie_path = '/';
$db_user = ''; //Set DB user here
$db_pass = ''; //Set DB password here
$db_name = ''; //Set the database name here
$tpl_path = __ROOT__.'web/tpl/set1/';
?>