[go: up one dir, main page]

Menu

[r32]: / cfg / param.php  Maximize  Restore  History

Download this file

36 lines (29 with data), 1.1 kB

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<?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;
?>