<?php
/**
* @author Andrew Cobby <hide@address.com>
* @copyright Andrew Cobby 2007
* @package Sneaky
* @version 1.1
* This file is part of Sneaky.
*
* Sneaky 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.
*
* Sneaky 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 this program. If not, see <http://www.gnu.org/licenses/>.
*
* All third party applications may have different licensing.
* See the license folder for more information.
*
*****************************************
** Project: Sneaky CMS/Framework
** Version: 1.1
** File: config.php
** Purpose: stores global data
*****************************************
*
*/
// set database information
$settings['server'] = 'localhost';
$settings['username'] = 'root';
$settings['password'] = 'dbpass';
$settings['db'] = 'sneaky';
$settings['tblpre'] = 'spf_';
// if you don't have url re-writing setup, comment this line out.
$settings['tidyurls'] = 'true';
/**
* @constant string
* tbl_prefix = table prefix
*/
if(!defined('tbl_prefix')){
define('tbl_prefix', $settings['tblpre']);
}
// website adminstrator
$settings['adminemail'] = 'hide@address.com';
?>