config-dist.php 931 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. <?php
  2. //
  3. // phpMyORM configuration file
  4. //
  5. // To be manually edited (or generated by the configuration wizard)
  6. //
  7. // The file is used in MetaModel::LoadConfig() which does all the necessary initialization job
  8. //
  9. $MySettings = array(
  10. 'db_host' => 'localhost',
  11. 'db_user' => 'itop',
  12. 'db_pwd' => '1T0p',
  13. 'db_name' => 'itopv06',
  14. 'db_subname' => '', // use it to differentiate two applications instances running on the same DB
  15. );
  16. // Modules: file names should be specified as a absolute paths
  17. $MyModules = array(
  18. 'application' => array (
  19. '../application/menunode.class.inc.php',
  20. '../application/audit.rule.class.inc.php',
  21. // to be continued...
  22. ),
  23. 'business' => array (
  24. '../business/itop.business.class.inc.php'
  25. // to be continued...
  26. ),
  27. 'addons' => array (
  28. 'user rights' => '../addons/userrights/userrightsmatrix.class.inc.php',
  29. // other modules to come later
  30. )
  31. );
  32. ?>