-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcs-config.php
More file actions
69 lines (39 loc) · 1.05 KB
/
Copy pathcs-config.php
File metadata and controls
69 lines (39 loc) · 1.05 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<?php
//error_reporting(E_ALL);
// CopyShop config file
// Use these values to connect, reflect, and erect.
//error_reporting(E_ALL);
ini_set('display_errors', '1');
// hard code your theme if you wish... if this option is set, there will be no theme selection tools in cs-tools.
$csSite = 'lowells';
$csTheme = '';
if ($csSite == '')
{$csSite = 'default';
$dbName = 'copyshop';
}
else
{
$csSitePath = 'cs-content/themes/'.$csSite;
$csSiteImages = $csSitePath.'/images';
// name of database, duh
//$dbName = 'copyshop_'.$csSite;
$dbName = 'db13939_copyshop';
//$dbName = $csSite;
}
if ($csTheme == '')
{$csTheme = 'default';}
else
{
$csThemePath = $csSitePath.'/themes/'.$csTheme;
$csThemeImages = $csThemePath.'/images';
}
//$dbName = 'copyshop2';
// address (ip or url or hostname) of database server, you probably won't have to change this
$dbServer = 'internal-db.s13939.gridserver.com';
// ummm, username.
$dbUser = 'db13939_copyshop';
// guess.
$dbPass = '.n3WsOm3p4zzw';
// the installation directory of copyshop
$csDir = '/';
?>