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.

18 lines
347 B

  1. <?php
  2. //uForum config
  3. //don't modifiy this file!
  4. if ( !defined('IN_uF') )
  5. {
  6. die('Hacking attempt');
  7. }
  8. @ini_set('display_errors', '1');
  9. define('DB_HOST','localhost');
  10. define('DB_USER','root');
  11. define('DB_PASS','');
  12. define('DB_NAME','uf');
  13. define('DB_PREFIX','uf_');
  14. define('VERSION','9.4.29');
  15. define('DSF_INSTALLED',true);
  16. ?>