source: branches/rsr.v5.1.dev/web/punbb/config.php @ 1

Last change on this file since 1 was 1, checked in by dj3c1t, 12 years ago

import initial

File size: 596 bytes
Line 
1<?php
2
3  if(!isset($env))
4  { $site_path = "../";
5    require $site_path."pathes.php";
6    require $site_path.RSR_APP_PATH."env.php";
7    $env = new env($site_path.RSR_CONFIG_FILE, $site_path);
8  }
9
10  $db_type = $env->bdd["sgbd"];
11
12  $db_host = $env->bdd["host"];
13  $db_name = $env->bdd["base"];
14  $db_username = $env->bdd["user"];
15  $db_password = $env->bdd["password"];
16
17  $db_prefix = $env->bdd["prefix"].'pun_';
18  $p_connect = false;
19
20  $cookie_name = 'rsr_punbb_cookie';
21  $cookie_domain = '';
22  $cookie_path = '/';
23  $cookie_secure = 0;
24  $cookie_seed = '0e52ca5f';
25
26  define('PUN', 1);
27
28?>
Note: See TracBrowser for help on using the repository browser.