- <?php
- /**
- * @package uForum
- * @file config.php
- * @version $Id$
- * @copyright 2007-2010 (c) PioDer <pioder@wp.pl>
- * @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);
- ?>
|