blob: d2cf12a3491265d19186706764fd477c29f04e8b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
<?php
# Base directory
$basedir = '/var/www/localhost/htdocs/scire/';
# Base URL
$baseurl = '/scire/';
# Database
$db_name = 'scire';
$db_host = 'localhost';
$db_username = 'hobbit';
$db_password = 'moria';
$db_sessions_table = 'sessions';
# ADOdb path
$ADOdb_path = '/usr/share/php5/adodb/';
$db_type = 'mysql';
# Smarty directory
$smarty_dir = '/usr/share/php/smarty/';
# Permissions filter
$scire_ui_section = "scire_ui";
?>
|