config.php
上传用户:gzy2002
上传日期:2010-02-11
资源大小:1785k
文件大小:3k
源码类别:

电子政务应用

开发平台:

Java

  1. <?php
  2. // +-------------------------------------------------------------+
  3. // | DeskPRO v [2.0.1 Production]
  4. // | Copyright (C) 2001 - 2004 Headstart Solutions Limited
  5. // | Supplied by WTN-WDYL
  6. // | Nullified by WTN-WDYL
  7. // | Distribution via WebForum, ForumRU and associated file dumps
  8. // +-------------------------------------------------------------+
  9. // | DESKPRO IS NOT FREE SOFTWARE
  10. // +-------------------------------------------------------------+
  11. // | License ID : Full Enterprise License =) ...
  12. // | License Owner : WTN-WDYL Team
  13. // +-------------------------------------------------------------+
  14. // | $RCSfile: config_new.php,v $
  15. // | $Date: 2004/02/11 20:32:13 $
  16. // | $Revision: 1.5 $
  17. // +-------------------------------------------------------------+
  18. // | File Details:
  19. // | - DeskPRO basic configuration.
  20. // +-------------------------------------------------------------+
  21. // ========================================================================
  22. // These settings are vital to DeskPRO's configuration. These must be set
  23. // correctly before DeskPRO can run. Your systems administrator or service
  24. // provider can provide these details to you if you don't already know what
  25. // they are.
  26. // ========================================================================
  27. // === RENAME THIS FILE! ===
  28. // Rename or copy this file to config.php when you have updated it.
  29. // =========================
  30. // The database type. DeskPRO currently only supports type "mysql".
  31. define('DATABASE_TYPE', 'mysql');
  32. // The hostname (fully qualified) or IP address of the database server.
  33. define('DATABASE_HOST', 'localhost');
  34. // The username of the database account to use.
  35. define('DATABASE_USER', 'username');
  36. // The password of the database account to use.
  37. define('DATABASE_PASSWORD', 'password');
  38. // The database to use.
  39. define('DATABASE_NAME', 'database');
  40. // If a database problem occurs and DeskPRO can't access its settings in
  41. // the database, mail will be sent to this address.
  42. define('DATABASE_ERROR_MAIL', 'admin@domain');
  43. // ========================================================================
  44. // These settings are debugging settings. Turning them on can significantly
  45. // slow down your DeskPRO installation if left on for long periods of time.
  46. // ========================================================================
  47. // Load templates from files (in admin/templates/) instead of the database. If
  48. // a template file is missing, it will be loaded from the database instead.
  49. // define('TEMPLATEFILES', '1');
  50. // Display all queries executed by DeskPRO during a page load (in all areas).
  51. // define('DISPLAYQUERIES', '1');
  52. // Log all queries executed by DeskPRO to the database.
  53. // define('LOGQUERIES', '1');
  54. // Show additional functions in the Administration Interface normally only of
  55. // use to DeskPRO's developers.
  56. // define('DEVELOPERMODE', '1');
  57. // Put email sending into debug mode
  58. // define('DEBUG_EMAIL', '1');
  59. ?>