<?php
/* This file is part of Madcollector.
* Madcollector created by Thomas Andrieu,
* Madcollector 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.
* Madcollector 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.
*/
//Edit according to your database settings
$cfg_host = "localhost";
$cfg_user = "";
$cfg_password = "";
$cfg_database = "";
$cfg_table_prefix = "mc_";
$cfg_database_driver = "mysql";
//Your site main title
$cfg_site_title = "Madcollector V2";
//Admin email
$cfg_site_email="admin@site.com";
//Mail author
$cfg_site_author="Madcollector team";
//Site for version check
$cfg_check_version_site = "http://madcollector.sf.net/version.txt";
//Max number for log entries
$cfg_max_log_entries = 25;
?>