Project

General

Profile

1
<?php
2

    
3
error_reporting(E_ALL);
4

    
5
define('DB_TYPE', 'mysql');
6
define('DB_HOST', 'localhost');
7
define('DB_USERNAME', 'root');
8
define('DB_PASSWORD', '');
9
define('DB_NAME', 'wb');
10
define('TABLE_PREFIX', 'test');
11

    
12
define('WB_PATH', dirname(__FILE__));
13
define('WB_URL', 'http://localhost/wbsvn/wb');
14
define('ADMIN_PATH', WB_PATH.'/admin');
15
define('ADMIN_URL', 'http://localhost/wbsvn/wb/admin');
16

    
17
require_once(WB_PATH.'/framework/initialize.php');
18

    
19
?>
(1-1/2)