CIVICRM-1881 CiviCRM Manage Events page, Find Events criteria is hidden by default...
[civicrm-core.git] / templates / CRM / common / civicrm.settings.php.template
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 5 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2020 |
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
9 | |
10 | CiviCRM is free software; you can copy, modify, and distribute it |
11 | under the terms of the GNU Affero General Public License |
12 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
13 | |
14 | CiviCRM is distributed in the hope that it will be useful, but |
15 | WITHOUT ANY WARRANTY; without even the implied warranty of |
16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
17 | See the GNU Affero General Public License for more details. |
18 | |
19 | You should have received a copy of the GNU Affero General Public |
20 | License and the CiviCRM Licensing Exception along |
21 | with this program; if not, contact CiviCRM LLC |
22 | at info[AT]civicrm[DOT]org. If you have questions about the |
23 | GNU Affero General Public License or the licensing of CiviCRM, |
24 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
25 +--------------------------------------------------------------------+
26 */
27
28 /**
29 * CiviCRM Configuration File.
30 */
31 global $civicrm_root, $civicrm_setting, $civicrm_paths;
32
33 /**
34 * Content Management System (CMS) Host:
35 *
36 * CiviCRM can be hosted in either Drupal 6 or 7, Joomla or WordPress.
37 *
38 * Settings for Backdrop CMS:
39 * define( 'CIVICRM_UF' , 'Backdrop');
40 *
41 * Settings for Drupal 7.x:
42 * define( 'CIVICRM_UF' , 'Drupal');
43 *
44 * Settings for Drupal 6.x:
45 * define( 'CIVICRM_UF' , 'Drupal6');
46 *
47 * Settings for Joomla 1.7.x - 2.5.x:
48 * define( 'CIVICRM_UF' , 'Joomla');
49 *
50 * Settings for WordPress 3.3.x:
51 * define( 'CIVICRM_UF' , 'WordPress');
52 *
53 * You may have issues with images in CiviCRM. If this is the case, be sure
54 * to update the CiviCRM Resource URL field to your CiviCRM root directory
55 * (Administer::System Settings::Resource URLs).
56 */
57 if (!defined('CIVICRM_UF')) {
58 if (getenv('CIVICRM_UF')) {
59 define('CIVICRM_UF', getenv('CIVICRM_UF'));
60 }
61 else {
62 define('CIVICRM_UF', '%%cms%%');
63 }
64 }
65
66 /**
67 * Content Management System (CMS) Datasource:
68 *
69 * Update this setting with your CMS (Drupal, Backdrop CMS, or Joomla) database username, password, server and DB name.
70 * If any of these contain a single quote or backslash, escape those characters with a backslash: \' and \\, respectively.
71 *
72 * Datasource (DSN) format:
73 * define( 'CIVICRM_UF_DSN', 'mysql://cms_db_username:cms_db_password@db_server/cms_database?new_link=true');
74 */
75 if (!defined('CIVICRM_UF_DSN') && CIVICRM_UF !== 'UnitTests') {
76 define( 'CIVICRM_UF_DSN' , 'mysql://%%CMSdbUser%%:%%CMSdbPass%%@%%CMSdbHost%%/%%CMSdbName%%?new_link=true%%CMSdbSSL%%');
77 }
78
79 // %%extraSettings%%
80
81 /**
82 * CiviCRM Database Settings
83 *
84 * Database URL (CIVICRM_DSN) for CiviCRM Data:
85 * Database URL format:
86 * define( 'CIVICRM_DSN', 'mysql://crm_db_username:crm_db_password@db_server/crm_database?new_link=true');
87 *
88 * Drupal and CiviCRM can share the same database, or can be installed into separate databases.
89 * Backdrop CMS and CiviCRM can also share the same database, or can be installed into separate databases.
90 *
91 * EXAMPLE: Drupal/Backdrop and CiviCRM running in the same database...
92 * DB Name = cms, DB User = cms
93 * define( 'CIVICRM_DSN' , 'mysql://cms:YOUR_PASSWORD@localhost/cms?new_link=true');
94 *
95 * EXAMPLE: Drupal/Backdrop and CiviCRM running in separate databases...
96 * CMS DB Name = cms, DB User = cms
97 * CiviCRM DB Name = civicrm, CiviCRM DB User = civicrm
98 * define( 'CIVICRM_DSN' , 'mysql://civicrm:YOUR_PASSWORD@localhost/civicrm?new_link=true');
99 *
100 * If your username, password, server or DB name contain a single quote or backslash, escape those characters
101 * with a backslash: \' and \\, respectively.
102 *
103 */
104 if (!defined('CIVICRM_DSN')) {
105 if (CIVICRM_UF === 'UnitTests' && isset($GLOBALS['_CV']['TEST_DB_DSN'])) {
106 define('CIVICRM_DSN', $GLOBALS['_CV']['TEST_DB_DSN']);
107 }
108 else {
109 define('CIVICRM_DSN', 'mysql://%%dbUser%%:%%dbPass%%@%%dbHost%%/%%dbName%%?new_link=true%%dbSSL%%');
110 }
111 }
112
113 /**
114 * CiviCRM DSN Mode
115 * Used to determine if you want CiviCRM to automatically change the dsn to mysqli if its avaliable.
116 * Uncomment and edit below as necessary
117 */
118 // define ('DB_DSN_MODE', 'auto');
119
120
121 /**
122 * CiviCRM Logging Database
123 *
124 * Used to point to a different database to use for logging (if desired). If unset defaults to equal CIVICRM_DSN.
125 * The CIVICRM_DSN user needs to have the rights to modify the below database schema and be able to write to it.
126 */
127 if (!defined('CIVICRM_LOGGING_DSN')) {
128 define('CIVICRM_LOGGING_DSN', CIVICRM_DSN);
129 }
130
131 /**
132 * File System Paths:
133 *
134 * $civicrm_root is the file system path on your server where the civicrm
135 * code is installed. Use an ABSOLUTE path (not a RELATIVE path) for this setting.
136 *
137 * CIVICRM_TEMPLATE_COMPILEDIR is the file system path where compiled templates are stored.
138 * These sub-directories and files are temporary caches and will be recreated automatically
139 * if deleted.
140 *
141 * IMPORTANT: The COMPILEDIR directory must exist,
142 * and your web server must have read/write access to these directories.
143 *
144 *
145 * EXAMPLE - Drupal:
146 * If the path to the Drupal home directory is /var/www/htdocs/drupal
147 * the $civicrm_root setting would be:
148 * $civicrm_root = '/var/www/htdocs/drupal/sites/all/modules/civicrm/';
149 *
150 * the CIVICRM_TEMPLATE_COMPILEDIR would be:
151 * define( 'CIVICRM_TEMPLATE_COMPILEDIR', '/var/www/htdocs/drupal/sites/default/files/civicrm/templates_c/');
152 *
153 * EXAMPLE - Backdrop CMS:
154 * If the path to the Backdrop home directory is /var/www/htdocs/backdrop
155 * the $civicrm_root setting would be:
156 * $civicrm_root = '/var/www/htdocs/backdrop/modules/civicrm/';
157 *
158 * the CIVICRM_TEMPLATE_COMPILEDIR would be:
159 * define( 'CIVICRM_TEMPLATE_COMPILEDIR', '/var/www/htdocs/backdrop/files/civicrm/templates_c/');
160 *
161 * EXAMPLE - Joomla Installations:
162 * If the path to the Joomla home directory is /var/www/htdocs/joomla
163 * the $civicrm_root setting would be:
164 * $civicrm_root = '/var/www/htdocs/joomla/administrator/components/com_civicrm/civicrm/';
165 *
166 * the CIVICRM_TEMPLATE_COMPILEDIR would be:
167 * define( 'CIVICRM_TEMPLATE_COMPILEDIR', '/var/www/htdocs/joomla/media/civicrm/templates_c/');
168 *
169 * EXAMPLE - WordPress Installations:
170 * If the path to the WordPress home directory is /var/www/htdocs/wordpress and the path to the plugin directory is /var/www/htdocs/wordpress/wp-content/plugins
171 * the $civicrm_root setting would be:
172 * $civicrm_root = '/var/www/htdocs/wordpress/wp-content/plugins/civicrm/civicrm/';
173 *
174 * the CIVICRM_TEMPLATE_COMPILEDIR would be:
175 * define( 'CIVICRM_TEMPLATE_COMPILEDIR', '/var/www/htdocs/wordpress/wp-content/uploads/civicrm/templates_c/');
176 *
177 */
178
179 $civicrm_root = '%%crmRoot%%';
180 if (!defined('CIVICRM_TEMPLATE_COMPILEDIR')) {
181 define( 'CIVICRM_TEMPLATE_COMPILEDIR', '%%templateCompileDir%%');
182 }
183
184 /**
185 * SMARTY Compile Check:
186 *
187 * This tells Smarty whether to check for recompiling or not. Recompiling
188 * does not need to happen unless a template or config file is changed.
189 * Typically you enable this during development, and disable for production.
190 *
191 * Related issue:
192 * https://lab.civicrm.org/dev/core/issues/1073
193 *
194 */
195 //if (!defined('CIVICRM_TEMPLATE_COMPILE_CHECK')) {
196 // define( 'CIVICRM_TEMPLATE_COMPILE_CHECK', FALSE);
197 //}
198
199 /**
200 * Site URLs:
201 *
202 * This section defines absolute and relative URLs to access the host CMS (Backdrop, Drupal, or Joomla) resources.
203 *
204 * IMPORTANT: Trailing slashes should be used on all URL settings.
205 *
206 *
207 * EXAMPLE - Drupal Installations:
208 * If your site's home url is http://www.example.com/drupal/
209 * these variables would be set as below. Modify as needed for your install.
210 *
211 * CIVICRM_UF_BASEURL - home URL for your site:
212 * define( 'CIVICRM_UF_BASEURL' , 'http://www.example.com/drupal/');
213 *
214 * EXAMPLE - Backdrop CMS Installations:
215 * If your site's home url is http://www.example.com/backdrop/
216 * these variables would be set as below. Modify as needed for your install.
217 *
218 * CIVICRM_UF_BASEURL - home URL for your site:
219 * define( 'CIVICRM_UF_BASEURL' , 'http://www.example.com/backdrop/');
220 *
221 * EXAMPLE - Joomla Installations:
222 * If your site's home url is http://www.example.com/joomla/
223 *
224 * CIVICRM_UF_BASEURL - home URL for your site:
225 * Administration site:
226 * define( 'CIVICRM_UF_BASEURL' , 'http://www.example.com/joomla/administrator/');
227 * Front-end site:
228 * define( 'CIVICRM_UF_BASEURL' , 'http://www.example.com/joomla/');
229 *
230 */
231 if (!defined('CIVICRM_UF_BASEURL')) {
232 define( 'CIVICRM_UF_BASEURL' , '%%baseURL%%');
233 }
234
235 /**
236 * Define any CiviCRM Settings Overrides per https://docs.civicrm.org/sysadmin/en/latest/customize/settings/
237 *
238 * Uncomment and edit the below as appropriate.
239 */
240
241 // Override the Temporary Files directory.
242 // $civicrm_setting['domain']['uploadDir'] = '/path/to/upload-dir' ;
243
244 // Override the custom files upload directory.
245 // $civicrm_setting['domain']['customFileUploadDir'] = '/path/to/custom-dir';
246
247 // Override the images directory.
248 // $civicrm_setting['domain']['imageUploadDir'] = '/path/to/image-upload-dir' ;
249
250 // Override the custom templates directory.
251 // $civicrm_setting['domain']['customTemplateDir'] = '/path/to/template-dir';
252
253 // Override the Custom php path directory.
254 // $civicrm_setting['domain']['customPHPPathDir'] = '/path/to/custom-php-dir';
255
256 // Override the extensions directory.
257 // $civicrm_setting['domain']['extensionsDir'] = '/path/to/extensions-dir';
258
259 // Override the resource url
260 // $civicrm_setting['domain']['userFrameworkResourceURL'] = 'http://example.com/example-resource-url/';
261
262 // Override the Image Upload URL (System Settings > Resource URLs)
263 // $civicrm_setting['domain']['imageUploadURL'] = 'http://example.com/example-image-upload-url';
264
265 // Override the Custom CiviCRM CSS URL
266 // $civicrm_setting['domain']['customCSSURL'] = 'http://example.com/example-css-url' ;
267
268 // Override the extensions resource URL
269 // $civicrm_setting['domain']['extensionsURL'] = 'http://example.com/pathtoextensiondir'
270
271 // Disable display of Community Messages on home dashboard
272 // $civicrm_setting['domain']['communityMessagesUrl'] = false;
273
274 // Disable automatic download / installation of extensions
275 // $civicrm_setting['domain']['ext_repo_url'] = false;
276
277 // set triggers to be managed offline per CRM-18212
278 // $civicrm_setting['domain']['logging_no_trigger_permission'] = 1;
279
280 // Override the CMS root path defined by cmsRootPath.
281 // define('CIVICRM_CMSDIR', '/path/to/install/root/');
282
283 // Opt-out of announcements by the CiviCRM core team for releases, paid services, events, etc. Separate each preferred optout category with a comma:
284 // "offers": paid service offers
285 // "asks": requests for donations or membership signup/renewal to CiviCRM
286 // "releases": major release announcements
287 // "events": announcements of local/national upcoming events
288 // $civicrm_setting['domain']['communityMessagesUrl'] = 'https://alert.civicrm.org/alert?prot=1&ver={ver}&uf={uf}&sid={sid}&lang={lang}&co={co}&optout=offers,asks';
289
290
291 /**
292 * If you are using any CiviCRM script in the bin directory that
293 * requires authentication, then you also need to set this key.
294 * We recommend using a 16-32 bit alphanumeric/punctuation key.
295 * More info at https://docs.civicrm.org/sysadmin/en/latest/setup/site-key/
296 */
297 if (!defined('CIVICRM_SITE_KEY')) {
298 define( 'CIVICRM_SITE_KEY', '%%siteKey%%');
299 }
300
301 /**
302 * If credentials are stored in the database, the CIVICRM_CRED_KEYS will be
303 * used to encrypt+decrypt them. This is a space-delimited list of keys (ordered by
304 * priority). Put the preferred key first. Any old/deprecated keys may be
305 * listed after.
306 *
307 * Each key is in format "<cipher-suite>:<key-encoding>:<key-content>", as in:
308 *
309 * Ex: define('CIVICRM_CRED_KEYS', 'aes-cbc:hkdf-sha256:RANDOM_1')
310 * Ex: define('CIVICRM_CRED_KEYS', 'aes-ctr-hs:b64:RANDOM_2 aes-ctr-hs:b64:RANDOM_3')
311 * Ex: define('CIVICRM_CRED_KEYS', '::MY_NEW_KEY ::MY_OLD_KEY')
312 *
313 * If cipher-suite or key-encoding is blank, they will use defaults ("aes-cbc"
314 * and "hkdf-sha256", respectively).
315 *
316 * More info at https://docs.civicrm.org/sysadmin/en/latest/setup/cred-key/
317 */
318 if (!defined('CIVICRM_CRED_KEYS') ) {
319 define( '_CIVICRM_CRED_KEYS', '%%credKeys%%');
320 define( 'CIVICRM_CRED_KEYS', _CIVICRM_CRED_KEYS === '%%' . 'credKeys' . '%%' ? '' : _CIVICRM_CRED_KEYS );
321 // Some old installers may not set a decent value, and this extra complexity is a failsafe.
322 // Feel free to simplify post-install.
323 }
324
325 /**
326 * The signing key is used to generate and verify shareable tokens.
327 *
328 * This is a space-delimited list of keys (ordered by priority). Put the preferred
329 * key first. Any old/deprecated keys may be listed after.
330 *
331 * Each key is in format "<cipher-suite>:<key-encoding>:<key-content>", as in:
332 *
333 * Ex: define('CIVICRM_SIGN_KEYS', 'jwt-hs256:hkdf-sha256:RANDOM_1')
334 * Ex: define('CIVICRM_SIGN_KEYS', 'jwt-hs256::RANDOM_2 jwt-hs256::RANDOM_3')
335 * Ex: define('CIVICRM_SIGN_KEYS', 'jwt-hs256:b64:RANDOM_4 jwt-hs256:b64:RANDOM_5')
336 *
337 * If key-encoding is blank, it will default to "hkdf-sha256".
338 */
339 if (!defined('CIVICRM_SIGN_KEYS') ) {
340 define( '_CIVICRM_SIGN_KEYS', '%%signKeys%%');
341 define( 'CIVICRM_SIGN_KEYS', _CIVICRM_SIGN_KEYS === '%%' . 'signKeys' . '%%' ? '' : _CIVICRM_SIGN_KEYS );
342 // Some old installers may not set a decent value, and this extra complexity is a failsafe.
343 // Feel free to simplify post-install.
344 }
345
346 /**
347 * Enable this constant, if you want to send your email through the smarty
348 * templating engine(allows you to do conditional and more complex logic)
349 *
350 */
351 if (!defined('CIVICRM_MAIL_SMARTY')) {
352 define( 'CIVICRM_MAIL_SMARTY', 0 );
353 }
354
355 /**
356 * This setting logs all emails to a file. Useful for debugging any mail (or civimail) issues.
357 * Enabling this setting will not send any email, ensure this is commented out in production
358 * The CIVICRM_MAIL_LOG is a debug option which disables MTA (mail transport agent) interaction.
359 * You must disable CIVICRM_MAIL_LOG before CiviCRM will talk to your MTA.
360 */
361 // if (!defined('CIVICRM_MAIL_LOG')) {
362 // define( 'CIVICRM_MAIL_LOG', '%%templateCompileDir%%/mail.log');
363 // }
364
365 /**
366 * This setting will only work if CIVICRM_MAIL_LOG is defined. Mail will be logged and then sent.
367 */
368 //if (!defined('CIVICRM_MAIL_LOG_AND_SEND')) {
369 // define( 'CIVICRM_MAIL_LOG_AND_SEND', 1);
370 //}
371
372
373 if (!defined('CIVICRM_DOMAIN_ID')) {
374 define( 'CIVICRM_DOMAIN_ID', 1);
375 }
376
377 /**
378 * Setting to define the environment in which this CiviCRM instance is running.
379 * Note the setting here must be value from the option group 'Environment',
380 * (see Administration > System Settings > Option Groups, Options beside Environment)
381 * which by default has three option values: 'Production', 'Staging', 'Development'.
382 * NB: defining a value for environment here prevents it from being set
383 * via the browser.
384 */
385 // $civicrm_setting['domain']['environment'] = 'Production';
386
387 /**
388 * Settings to enable external caching using a cache server. This is an
389 * advanced feature, and you should read and understand the documentation
390 * before you turn it on. We cannot store these settings in the DB since the
391 * config could potentially also be cached and we need to avoid an infinite
392 * recursion scenario.
393 *
394 * @see http://civicrm.org/node/126
395 */
396
397 /**
398 * If you have a cache server configured and want CiviCRM to make use of it,
399 * set the following constant. You should only set this once you have your cache
400 * server up and working, because CiviCRM will not start up if your server is
401 * unavailable on the host and port that you specify. By default CiviCRM will use
402 * an in-memory array cache
403 *
404 * To use the php extension memcache use a value of 'Memcache'
405 * To use the php extension memcached use a value of 'Memcached'
406 * To use the php extension apc use a value of 'APCcache'
407 * To use the php extension redis use a value of 'Redis'
408 * To not use any caching (not recommended), use a value of 'NoCache'
409 *
410 */
411 if (!defined('CIVICRM_DB_CACHE_CLASS')) {
412 define('CIVICRM_DB_CACHE_CLASS', 'ArrayCache');
413 }
414
415 /**
416 * Change this to the IP address of your cache server if it is not on the
417 * same machine (Unix).
418 */
419 if (!defined('CIVICRM_DB_CACHE_HOST')) {
420 define('CIVICRM_DB_CACHE_HOST', 'localhost');
421 }
422
423 /**
424 * Change this if you are not using the standard port for your cache server.
425 *
426 * The standard port for Memcache & APCCache is 11211. For Redis it is 6379.
427 */
428 if (!defined('CIVICRM_DB_CACHE_PORT')) {
429 if (CIVICRM_DB_CACHE_CLASS === 'Redis') {
430 define('CIVICRM_DB_CACHE_PORT', 6379 );
431 }
432 else {
433 define('CIVICRM_DB_CACHE_PORT', 11211);
434 }
435 }
436
437 /**
438 * Change this if your cache server requires a password (currently only works
439 * with Redis)
440 */
441 if (!defined('CIVICRM_DB_CACHE_PASSWORD')) {
442 define('CIVICRM_DB_CACHE_PASSWORD', '' );
443 }
444
445 /**
446 * Items in cache will expire after the number of seconds specified here.
447 * Default value is 3600 (i.e., after an hour)
448 */
449 if (!defined('CIVICRM_DB_CACHE_TIMEOUT')) {
450 define('CIVICRM_DB_CACHE_TIMEOUT', 3600 );
451 }
452
453 /**
454 * If you are sharing the same cache instance with more than one CiviCRM
455 * database, you will need to set a different value for the following argument
456 * so that each copy of CiviCRM will not interfere with other copies. If you only
457 * have one copy of CiviCRM, you may leave this set to ''. A good value for
458 * this if you have two servers might be 'server1_' for the first server, and
459 * 'server2_' for the second server.
460 */
461 if (!defined('CIVICRM_DB_CACHE_PREFIX')) {
462 define('CIVICRM_DB_CACHE_PREFIX', '');
463 }
464
465 /**
466 * The cache system traditionally allowed a wide range of cache-keys, but some
467 * cache-keys are prohibited by PSR-16.
468 */
469 if (!defined('CIVICRM_PSR16_STRICT')) {
470 define('CIVICRM_PSR16_STRICT', FALSE);
471 }
472
473 /**
474 * If you have multilingual site and you are using the "inherit CMS language"
475 * configuration option, but wish to, for example, use fr_CA instead of the
476 * default fr_FR (for French), set one or more of the constants below to an
477 * appropriate regional value.
478 *
479 * Note that since 5.26.0 specifically https://github.com/civicrm/civicrm-core/pull/16700
480 * This generally doesn't get used by WordPress especially if using the Polylang plugin.
481 * The reason is that the WordPress implementation has been changed to get the full locale
482 * from the WordPress plugin rather than just the 2 string language code.
483 */
484 // define('CIVICRM_LANGUAGE_MAPPING_FR', 'fr_CA');
485 // define('CIVICRM_LANGUAGE_MAPPING_EN', 'en_CA');
486 // define('CIVICRM_LANGUAGE_MAPPING_ES', 'es_MX');
487 // define('CIVICRM_LANGUAGE_MAPPING_PT', 'pt_BR');
488 // define('CIVICRM_LANGUAGE_MAPPING_ZH', 'zh_TW');
489 // define('CIVICRM_LANGUAGE_MAPPING_NL', 'nl_BE');
490
491 /**
492 * Native gettext improves performance of localized CiviCRM installations
493 * significantly. However, your host must enable the locale (language).
494 * On most GNU/Linux, Unix or MacOSX systems, you may view them with
495 * the command line by typing: "locale -a".
496 *
497 * On Debian or Ubuntu, you may reconfigure locales with:
498 * # dpkg-reconfigure locales
499 *
500 * For more information:
501 * https://lab.civicrm.org/dev/translation/-/wikis/Administrator-Guide#native-gettext
502 */
503 // if (!defined('CIVICRM_GETTEXT_NATIVE')) {
504 // define('CIVICRM_GETTEXT_NATIVE', 1);
505 // }
506
507 /**
508 * Define how many times to retry a transaction when the DB hits a deadlock
509 * (ie. the database is locked by another transaction). This is an
510 * advanced setting intended for high-traffic databases & experienced developers/ admins.
511 */
512 define('CIVICRM_DEADLOCK_RETRIES', 3);
513
514 if (CIVICRM_UF === 'UnitTests') {
515 if (!defined('CIVICRM_CONTAINER_CACHE')) define('CIVICRM_CONTAINER_CACHE', 'auto');
516 }
517
518 /**
519 * Whether to include the hash in config log filenames. Defaults to TRUE.
520 * Disable only if you have configured the logfiles to be outside the docroot
521 * using the civicrm.log path setting.
522 *
523 */
524 // if (!defined('CIVICRM_LOG_HASH')) {
525 // define('CIVICRM_LOG_HASH', FALSE );
526 // }
527
528 /**
529 * The maximum size a log file may be before it's rotated, in bytes.
530 * Set to 0 to disable rotation (only recommended if you have an
531 * external logrotate configuration).
532 */
533 // if (!defined('CIVICRM_LOG_ROTATESIZE')) {
534 // define('CIVICRM_LOG_ROTATESIZE', 0 );
535 // }
536
537 /**
538 * Which directories should we exclude when scanning the codebase for things
539 * like extension .info files, or .html partials or .xml files etc. This needs
540 * to be a valid preg_match() pattern.
541 *
542 * If you do not define it, a pattern that excludes dirs starting with a dot is
543 * used, e.g. to exclude .git/). Adding suitable patterns here can vastly speed
544 * up your container rebuilds and cache flushes. The pattern is matched against
545 * the absolute path. Remember to use your system's DIRECTORY_SEPARATOR the
546 * examples below assume /
547 *
548 * The default excludes node_modules (can be huge), various CiviCRM dirs that
549 * are unlikely to have anything we need to scan inside, and (what could be
550 * your) Drupal's private file storage area. It does not exclude
551 * vendor but you are likely to see an improvement by adding it.
552 *
553 * See https://docs.civicrm.org/sysadmin/en/latest/setup/optimizations/#exclude-dirs-that-do-not-need-to-be-scanned
554 * and also discussion on including vendor (excluded) in https://lab.civicrm.org/dev/core/-/issues/2031
555 */
556 if (strtoupper(substr(PHP_OS, 0, 3)) !== 'WIN' && !defined('CIVICRM_EXCLUDE_DIRS_PATTERN')) {
557 define('CIVICRM_EXCLUDE_DIRS_PATTERN', '@/(\.|node_modules|js/|css/|bower_components|packages/|sites/default/files/private)@');
558 }
559
560 /**
561 *
562 * Do not change anything below this line. Keep as is
563 *
564 */
565
566 $include_path = '.' . PATH_SEPARATOR .
567 $civicrm_root . PATH_SEPARATOR .
568 $civicrm_root . DIRECTORY_SEPARATOR . 'packages' . PATH_SEPARATOR .
569 get_include_path( );
570 if ( set_include_path( $include_path ) === false ) {
571 echo "Could not set the include path<p>";
572 exit( );
573 }
574
575 if (!defined('CIVICRM_CLEANURL')) {
576 if (function_exists('variable_get') && variable_get('clean_url', '0') != '0') {
577 define('CIVICRM_CLEANURL', 1 );
578 }
579 elseif ( function_exists('config_get') && config_get('system.core', 'clean_url') != 0) {
580 define('CIVICRM_CLEANURL', 1 );
581 }
582 elseif( function_exists('get_option') && get_option('permalink_structure') != '' ) {
583 define('CIVICRM_CLEANURL', 1 );
584 }
585 else {
586 define('CIVICRM_CLEANURL', 0);
587 }
588 }
589
590 // force PHP to auto-detect Mac line endings
591 ini_set('auto_detect_line_endings', '1');
592
593 // make sure the memory_limit is at least 64 MB
594 $memLimitString = trim(ini_get('memory_limit'));
595 $memLimitUnit = strtolower(substr($memLimitString, -1));
596 $memLimit = (int) $memLimitString;
597 switch ($memLimitUnit) {
598 case 'g': $memLimit *= 1024;
599 case 'm': $memLimit *= 1024;
600 case 'k': $memLimit *= 1024;
601 }
602 if ($memLimit >= 0 and $memLimit < 134217728) {
603 ini_set('memory_limit', '128M');
604 }
605
606 require_once 'CRM/Core/ClassLoader.php';
607 CRM_Core_ClassLoader::singleton()->register();