/config/empty.config.php

https://github.com/fb83/Project-Pier · PHP · 23 lines · 10 code · 3 blank · 10 comment · 0 complexity · 65534e1961ee7719a454124b02b2e86f MD5 · raw file

  1. <?php
  2. /**
  3. * Empty config.php is sample configuration file. Use it when you need to manualy set up
  4. * your ProjectPier installation (installer doesn't work properly, or any other reason).
  5. *
  6. * When you set the values in this file delete original 'config.php' (it should just have
  7. * return false; command) and rename this one to 'config.php'
  8. *
  9. * @http://www.projectpier.org/
  10. * @modified for ProjectPier
  11. */
  12. define('DB_ADAPTER', 'mysql');
  13. define('DB_HOST', 'localhost');
  14. define('DB_USER', '');
  15. define('DB_PASS', '');
  16. define('DB_NAME', '');
  17. define('DB_PERSIST', false);
  18. define('DB_CHARSET', 'utf8');
  19. define('TABLE_PREFIX', 'pp_');
  20. ?>