. # -------------------------------------------------------- # $Id: config_inc.php.sample,v 1.19.2.2 2007-10-25 17:13:42 giallu Exp $ # -------------------------------------------------------- # This sample file contains the essential files that you MUST # configure to your specific settings. You may override settings # from config_defaults_inc.php by assigning new values in this file # Rename this file to config_inc.php after configuration. ########################################################################### # CONFIGURATION VARIABLES ########################################################################### # In general the value OFF means the feature is disabled and ON means the # feature is enabled. Any other cases will have an explanation. # Look in http://www.mantisbt.org/manual or config_defaults_inc.php for more # detailed comments. # --- database variables --------- # set these values to match your setup $g_hostname = "Driver={SQL Server};SERVER=C114USS;DATABASE=test1;UID=mantis;PWD=mantis;"; $g_db_username = "mantis"; $g_db_password = "mantis"; $g_database_name = "test1"; $g_db_type = "odbc_mssql"; # --- email variables ------------- $g_administrator_email = 'administrator@example.com'; $g_webmaster_email = 'webmaster@example.com'; # the "From: " field in emails $g_from_email = 'noreply@example.com'; # the return address for bounced mail $g_return_path_email = 'admin@example.com'; # --- file upload settings -------- # This is the master setting to disable *all* file uploading functionality # # The default value is ON but you must make sure file uploading is enabled # in PHP as well. You may need to add "file_uploads = TRUE" to your php.ini. $g_allow_file_upload = ON; ?>