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

<?php
/**
* @package uForum
* @file config.php
* @version $Id$
* @copyright 2007-2010 (c) PioDer <[email protected]>
* @link http://www.pioder.pl/
* @license see LICENSE.txt
**/
if ( !defined('IN_uF') )
{
die('Hacking attempt');
}
@ini_set('display_errors', '1');
define('DB_HOST','%host%');
define('DB_USER','%user%');
define('DB_PASS','%pass%');
define('DB_NAME','%dbname%');
define('DB_PREFIX','%dbprefix%');
define('VERSION','1.0.B3');
define('UF_INSTALLED',false);
?>