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
|
<?php
// config.inc.php - This file contains global customisations and settings and menu definitions
//
// SiT (Support Incident Tracker) - Support call tracking system
// Copyright (C) 2010-2014 The Support Incident Tracker Project
// Copyright (C) 2000-2009 Salford Software Ltd. and Contributors
//
// This software may be used and distributed according to the terms
// of the GNU General Public License, incorporated herein by reference.
// This file is distributed as config.inc-dist.php to prevent your customised version being
// overwritten during upgrades.
//
// Rename this file to config.inc.php before use
// To configure Support Incident Tracker you MUST at the very least set your mysql database
// connection parameters
$CONFIG['db_hostname'] = 'localhost';
$CONFIG['db_username'] = '';
$CONFIG['db_password'] = '';
$CONFIG['db_database'] = '';
// For more config variables see the file defaults.inc.php for examples and make your changes
// in this file
?>
|