|
4 | 4 | /* |
5 | 5 | * CKFinder Configuration File |
6 | 6 | * |
7 | | - * For the official documentation visit http://docs.cksource.com/ckfinder3-php/ |
| 7 | + * For the official documentation visit https://docs.cksource.com/ckfinder3-php/ |
8 | 8 | */ |
9 | 9 |
|
10 | 10 |
|
11 | 11 | /*============================ PHP Error Reporting ====================================*/ |
12 | | -// http://docs.cksource.com/ckfinder3-php/debugging.html |
| 12 | +// https://docs.cksource.com/ckfinder3-php/debugging.html |
13 | 13 |
|
14 | 14 | // Production |
15 | 15 | //error_reporting(E_ALL & ~E_DEPRECATED & ~E_STRICT); |
|
20 | 20 | // ini_set('display_errors', 1); |
21 | 21 |
|
22 | 22 | /*============================ General Settings =======================================*/ |
23 | | -// http://docs.cksource.com/ckfinder3-php/configuration.html |
| 23 | +// https://docs.cksource.com/ckfinder3-php/configuration.html |
24 | 24 |
|
25 | 25 | $config = array(); |
26 | 26 |
|
27 | 27 | /*============================ License Key ============================================*/ |
28 | | -// http://docs.cksource.com/ckfinder3-php/configuration.html#configuration_options_licenseKey |
| 28 | +// https://docs.cksource.com/ckfinder3-php/configuration.html#configuration_options_licenseKey |
29 | 29 |
|
30 | 30 | $config['licenseName'] = ''; |
31 | 31 | $config['licenseKey'] = ''; |
32 | 32 |
|
33 | 33 | /*============================ CKFinder Internal Directory ============================*/ |
34 | | -// http://docs.cksource.com/ckfinder3-php/configuration.html#configuration_options_privateDir |
| 34 | +// https://docs.cksource.com/ckfinder3-php/configuration.html#configuration_options_privateDir |
35 | 35 |
|
36 | 36 | $config['privateDir'] = array( |
37 | 37 | 'backend' => 'symfony_cache', |
|
45 | 45 | ); |
46 | 46 |
|
47 | 47 | /*============================ Images and Thumbnails ==================================*/ |
48 | | -// http://docs.cksource.com/ckfinder3-php/configuration.html#configuration_options_images |
| 48 | +// https://docs.cksource.com/ckfinder3-php/configuration.html#configuration_options_images |
49 | 49 |
|
50 | 50 | $config['images'] = array( |
51 | 51 | 'maxWidth' => 1600, |
|
59 | 59 | ); |
60 | 60 |
|
61 | 61 | /*=================================== Backends ========================================*/ |
62 | | -// http://docs.cksource.com/ckfinder3-php/configuration.html#configuration_options_backends |
| 62 | +// https://docs.cksource.com/ckfinder3-php/configuration.html#configuration_options_backends |
63 | 63 |
|
64 | 64 | $config['backends']['symfony_cache'] = array( |
65 | 65 | 'name' => 'symfony_cache', |
|
84 | 84 | ); |
85 | 85 |
|
86 | 86 | /*================================ Resource Types =====================================*/ |
87 | | -// http://docs.cksource.com/ckfinder3-php/configuration.html#configuration_options_resourceTypes |
| 87 | +// https://docs.cksource.com/ckfinder3-php/configuration.html#configuration_options_resourceTypes |
88 | 88 |
|
89 | 89 | $config['defaultResourceTypes'] = ''; |
90 | 90 |
|
|
107 | 107 | ); |
108 | 108 |
|
109 | 109 | /*================================ Access Control =====================================*/ |
110 | | -// http://docs.cksource.com/ckfinder3-php/configuration.html#configuration_options_roleSessionVar |
| 110 | +// https://docs.cksource.com/ckfinder3-php/configuration.html#configuration_options_roleSessionVar |
111 | 111 |
|
112 | 112 | $config['roleSessionVar'] = 'CKFinder_UserRole'; |
113 | 113 |
|
114 | | -// http://docs.cksource.com/ckfinder3-php/configuration.html#configuration_options_accessControl |
| 114 | +// https://docs.cksource.com/ckfinder3-php/configuration.html#configuration_options_accessControl |
115 | 115 | $config['accessControl'][] = array( |
116 | 116 | 'role' => '*', |
117 | 117 | 'resourceType' => '*', |
|
133 | 133 |
|
134 | 134 |
|
135 | 135 | /*================================ Other Settings =====================================*/ |
136 | | -// http://docs.cksource.com/ckfinder3-php/configuration.html |
| 136 | +// https://docs.cksource.com/ckfinder3-php/configuration.html |
137 | 137 |
|
138 | 138 | $config['overwriteOnUpload'] = false; |
139 | 139 | $config['checkDoubleExtension'] = true; |
|
146 | 146 | $config['forceAscii'] = false; |
147 | 147 | $config['xSendfile'] = false; |
148 | 148 |
|
149 | | -// http://docs.cksource.com/ckfinder3-php/configuration.html#configuration_options_debug |
| 149 | +// https://docs.cksource.com/ckfinder3-php/configuration.html#configuration_options_debug |
150 | 150 | $config['debug'] = false; |
151 | 151 |
|
152 | 152 | /*==================================== Plugins ========================================*/ |
153 | | -// http://docs.cksource.com/ckfinder3-php/configuration.html#configuration_options_plugins |
| 153 | +// https://docs.cksource.com/ckfinder3-php/configuration.html#configuration_options_plugins |
154 | 154 |
|
155 | 155 | $config['plugins'] = array(); |
156 | 156 |
|
157 | 157 | /*================================ Cache settings =====================================*/ |
158 | | -// http://docs.cksource.com/ckfinder3-php/configuration.html#configuration_options_cache |
| 158 | +// https://docs.cksource.com/ckfinder3-php/configuration.html#configuration_options_cache |
159 | 159 |
|
160 | 160 | $config['cache'] = array( |
161 | 161 | 'imagePreview' => 24 * 3600, |
162 | 162 | 'thumbnails' => 24 * 3600 * 365 |
163 | 163 | ); |
164 | 164 |
|
165 | 165 | /*============================ Temp Directory settings ================================*/ |
166 | | -// http://docs.cksource.com/ckfinder3-php/configuration.html#configuration_options_tempDirectory |
| 166 | +// https://docs.cksource.com/ckfinder3-php/configuration.html#configuration_options_tempDirectory |
167 | 167 |
|
168 | 168 | $config['tempDirectory'] = sys_get_temp_dir(); |
169 | 169 |
|
170 | 170 | /*============================ Session Cause Performance Issues =======================*/ |
171 | | -// http://docs.cksource.com/ckfinder3-php/configuration.html#configuration_options_sessionWriteClose |
| 171 | +// https://docs.cksource.com/ckfinder3-php/configuration.html#configuration_options_sessionWriteClose |
172 | 172 |
|
173 | 173 | $config['sessionWriteClose'] = true; |
174 | 174 |
|
175 | 175 | /*================================= CSRF protection ===================================*/ |
176 | | -// http://docs.cksource.com/ckfinder3-php/configuration.html#configuration_options_csrfProtection |
| 176 | +// https://docs.cksource.com/ckfinder3-php/configuration.html#configuration_options_csrfProtection |
177 | 177 |
|
178 | 178 | $config['csrfProtection'] = true; |
179 | 179 |
|
|
0 commit comments