-
Notifications
You must be signed in to change notification settings - Fork 1
/
temp.gsconfig.php
76 lines (54 loc) · 1.97 KB
/
temp.gsconfig.php
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
70
71
72
73
74
75
76
<?php
/**
* GSConfig
*
* The base configurations for GetSimple
*
* @package GetSimple
*/
/** Prevent direct access */
if (basename($_SERVER['PHP_SELF']) == 'gsconfig.php') {
die('You cannot load this page directly.');
};
/*****************************************************************************/
/** Below are constants that you can use to customize how GetSimple operates */
# Extra salt to secure your password with. Default is empty for backwards compatibility.
#define('GSLOGINSALT', 'your_unique_phrase');
# Turn off auto-generation of SALT and use a custom value. Used for cookies & upload security.
#define('GSUSECUSTOMSALT', 'your_new_salt_value_here');
# Default thumbnail width of uploaded image
define('GSIMAGEWIDTH', '200');
# Change the administrative panel folder name
#define('GSADMIN', 'admin');
# Turn on debug mode
#define('GSDEBUG', TRUE);
# Ping search engines upon sitemap generation?
define('GSDONOTPING', 1);
# Turn off CSRF protection. Uncomment this if you keep receiving the error message "CSRF error detected..."
#define('GSNOCSRF', TRUE);
# Set override CHMOD mode
#define('GSCHMOD', 0755);
# Enable Canonical Redirects?
#define('GSCANONICAL', 1);
# Use Uploadify to upload files?
#define('GSNOUPLOADIFY', 1);
# WYSIWYG editor height (default 500)
#define('GSEDITORHEIGHT', '400');
# WYSIWYG toolbars (advanced, basic or [custom config])
#define('GSEDITORTOOL', 'advanced');
# WYSIWYG editor language (default en)
#define('GSEDITORLANG', 'en');
# WYSIWYG Editor Options
#define('GSEDITOROPTIONS', '');
# Set email from address
#define('GSFROMEMAIL', '[email protected]');
# Autosave within edit.php. Value is the autosave interval in seconds
#define('GSAUTOSAVE', 900);
# Enable the External API to be shown on settings page
#define('GSEXTAPI', 1);
# Set PHP locale
# http://php.net/manual/en/function.setlocale.php
#setlocale(LC_ALL, 'en_US');
# Disable loading of external CDN versions of scripts (jQuery/jQueryUI)
#define("GSNOCDN",true);
?>