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

<?php
//uForum config
//don't modifiy this file!
if ( !defined('IN_uF') )
{
die('Hacking attempt');
}
ini_set('display_errors', '1');
define('DB_HOST','localhost');
define('DB_USER','root');
define('DB_PASS','');
define('DB_NAME','uf');
define('DB_PREFIX','uf_');
define('VERSION','1.0.4');
define('UF_INSTALLED',true);
?>