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
505 B

  1. <?php
  2. /**
  3. * @package uForum
  4. * @file config.php
  5. * @version $Id$
  6. * @copyright 2007-2010 (c) PioDer <pioder@wp.pl>
  7. * @link http://www.pioder.pl/
  8. * @license see LICENSE.txt
  9. **/
  10. if ( !defined('IN_uF') )
  11. {
  12. die('Hacking attempt');
  13. }
  14. @ini_set('display_errors', '1');
  15. define('DB_HOST','%host%');
  16. define('DB_USER','%user%');
  17. define('DB_PASS','%pass%');
  18. define('DB_NAME','%dbname%');
  19. define('DB_PREFIX','%dbprefix%');
  20. define('VERSION','1.0.B3');
  21. define('UF_INSTALLED',false);
  22. ?>