A lightweight forum engine written in PHP. Repository is now obsolete and read-only. http://www.pioder.pl/uforum.html
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
522 B

  1. <?php
  2. /**
  3. * @package Dynamic Script Forum
  4. * @file config.php
  5. * @version 1.0.x, 26-01-2007, 17:48
  6. * @copyright 2008(c) PioDer <pioder@wp.pl>
  7. * @link http://pioder.gim2przemysl.int.pl/dsf.html
  8. * @license GNU GPL v3
  9. **/
  10. if ( !defined('IN_uF') )
  11. {
  12. die('Hacking attempt');
  13. }
  14. @ini_set('display_errors', '1');
  15. define('DB_HOST','localhost');
  16. define('DB_USER','root');
  17. define('DB_PASS','');
  18. define('DB_NAME','uf');
  19. define('DB_PREFIX','uf_');
  20. define('VERSION','9.4.29');
  21. define('DSF_INSTALLED',true);
  22. ?>