Support Incident Tracker GIT4.x
config.inc-dist.php
Go to the documentation of this file.
00001 <?php
00002 // config.inc.php - This file contains global customisations and settings and menu definitions
00003 //
00004 // SiT (Support Incident Tracker) - Support call tracking system
00005 // Copyright (C) 2010-2011 The Support Incident Tracker Project
00006 // Copyright (C) 2000-2009 Salford Software Ltd. and Contributors
00007 //
00008 // This software may be used and distributed according to the terms
00009 // of the GNU General Public License, incorporated herein by reference.
00010 
00011 
00012 //      This file is distributed as config.inc-dist.php to prevent your customised version being
00013 //      overwritten during upgrades.
00014 //
00015 //      Rename this file to config.inc.php before use
00016 
00017 
00018 // To configure Support Incident Tracker you MUST at the very least set your mysql database
00019 // connection parameters
00020 
00021 $CONFIG['db_hostname'] = 'localhost';
00022 $CONFIG['db_username'] = '';
00023 $CONFIG['db_password'] = '';
00024 $CONFIG['db_database'] = '';
00025 
00026 
00027 // For more config variables see the file defaults.inc.php for examples and make your changes
00028 // in this file
00029 
00030 
00031 ?>