config_new.php
上传用户:gzy2002
上传日期:2010-02-11
资源大小:1785k
文件大小:3k
- <?php
- // +-------------------------------------------------------------+
- // | DeskPRO v [2.0.1 Production]
- // | Copyright (C) 2001 - 2004 Headstart Solutions Limited
- // | Supplied by WTN-WDYL
- // | Nullified by WTN-WDYL
- // | Distribution via WebForum, ForumRU and associated file dumps
- // +-------------------------------------------------------------+
- // | DESKPRO IS NOT FREE SOFTWARE
- // +-------------------------------------------------------------+
- // | License ID : Full Enterprise License =) ...
- // | License Owner : WTN-WDYL Team
- // +-------------------------------------------------------------+
- // | $RCSfile: config_new.php,v $
- // | $Date: 2004/02/11 20:32:13 $
- // | $Revision: 1.5 $
- // +-------------------------------------------------------------+
- // | File Details:
- // | - DeskPRO basic configuration.
- // +-------------------------------------------------------------+
- // ========================================================================
- // These settings are vital to DeskPRO's configuration. These must be set
- // correctly before DeskPRO can run. Your systems administrator or service
- // provider can provide these details to you if you don't already know what
- // they are.
- // ========================================================================
- // === RENAME THIS FILE! ===
- // Rename or copy this file to config.php when you have updated it.
- // =========================
- // The database type. DeskPRO currently only supports type "mysql".
- define('DATABASE_TYPE', 'mysql');
- // The hostname (fully qualified) or IP address of the database server.
- define('DATABASE_HOST', 'localhost');
- // The username of the database account to use.
- define('DATABASE_USER', 'username');
- // The password of the database account to use.
- define('DATABASE_PASSWORD', 'password');
- // The database to use.
- define('DATABASE_NAME', 'database');
- // If a database problem occurs and DeskPRO can't access its settings in
- // the database, mail will be sent to this address.
- define('DATABASE_ERROR_MAIL', 'admin@domain');
- // ========================================================================
- // These settings are debugging settings. Turning them on can significantly
- // slow down your DeskPRO installation if left on for long periods of time.
- // ========================================================================
- // Load templates from files (in admin/templates/) instead of the database. If
- // a template file is missing, it will be loaded from the database instead.
- // define('TEMPLATEFILES', '1');
- // Display all queries executed by DeskPRO during a page load (in all areas).
- // define('DISPLAYQUERIES', '1');
- // Log all queries executed by DeskPRO to the database.
- // define('LOGQUERIES', '1');
- // Show additional functions in the Administration Interface normally only of
- // use to DeskPRO's developers.
- // define('DEVELOPERMODE', '1');
- // Put email sending into debug mode
- // define('DEBUG_EMAIL', '1');
- ?>