Report abuse

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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<?php

if ( ! defined('EXT')){
exit('Invalid file request');
}

$conf['app_version'] = "167";
$conf['license_number'] = "license_number";
$conf['debug'] = "1";
$conf['install_lock'] = "1";
$conf['db_hostname'] = "localhost";
$conf['db_username'] = "root";
$conf['db_password'] = "root";
$conf['db_name'] = "mysql_db_name";
$conf['db_type'] = "mysql";
$conf['db_prefix'] = "exp";
$conf['db_conntype'] = "0";
$conf['doc_url'] = "http://expressionengine.com/docs/";
$conf['cookie_prefix'] = "";
$conf['is_system_on'] = "y";
$conf['allow_extensions'] = "y";
$conf['multiple_sites_enabled'] = "n";

$conf['system_folder'] = "rename_system_folder";
$conf['hidden_template_indicator'] = '_'; 

$conf['site_url'] = "http://${_SERVER['HTTP_HOST']}/";
$conf['cp_url']   = "http://${_SERVER['HTTP_HOST']}/${conf['system_folder']}/";

$conf['tmpl_file_basepath'] = "${_SERVER['DOCUMENT_ROOT']}/${conf['system_folder']}/templates";
$conf['theme_folder_path']  = "${_SERVER['DOCUMENT_ROOT']}/themes";
$conf['theme_folder_url']   = "http://${_SERVER['HTTP_HOST']}/themes";

$conf['captcha_path'] = "${_SERVER['DOCUMENT_ROOT']}/images/captchas";
$conf['captcha_url']  = "http://${_SERVER['HTTP_HOST']}/images/captchas";

$conf['avatar_path']  = "${_SERVER['DOCUMENT_ROOT']}/images/members/avatars";
$conf['avatar_url']   = "http://${_SERVER['HTTP_HOST']}/images/members/avatars";

$conf['photo_path']   = "${_SERVER['DOCUMENT_ROOT']}/images/members/photos";
$conf['photo_url']    = "http://${_SERVER['HTTP_HOST']}/images/members/photos";
?>