Merge pull request #14948 from civicrm/5.16
[civicrm-core.git] / templates / CRM / common / civicrm.settings.php.template
CommitLineData
eb049397
DL
1<?php
2/*
3 +--------------------------------------------------------------------+
fee14197 4 | CiviCRM version 5 |
eb049397 5 +--------------------------------------------------------------------+
8c9251b3 6 | Copyright CiviCRM LLC (c) 2004-2018 |
eb049397
DL
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 */
f553d1ea 31global $civicrm_root, $civicrm_setting, $civicrm_paths;
eb049397
DL
32
33/**
34 * Content Management System (CMS) Host:
35 *
36 * CiviCRM can be hosted in either Drupal 6 or 7, Joomla or WordPress.
37 *
83cac775 38 * Settings for Backdrop CMS:
92b1c24f 39 * define( 'CIVICRM_UF' , 'Backdrop');
83cac775 40 *
eb049397 41 * Settings for Drupal 7.x:
92b1c24f 42 * define( 'CIVICRM_UF' , 'Drupal');
eb049397
DL
43 *
44 * Settings for Drupal 6.x:
23b5a711 45 * define( 'CIVICRM_UF' , 'Drupal6');
eb049397
DL
46 *
47 * Settings for Joomla 1.7.x - 2.5.x:
23b5a711 48 * define( 'CIVICRM_UF' , 'Joomla');
eb049397
DL
49 *
50 * Settings for WordPress 3.3.x:
23b5a711 51 * define( 'CIVICRM_UF' , 'WordPress');
eb049397
DL
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 */
8d133ef2 57if (!defined('CIVICRM_UF')) {
0a4cd490
TO
58 if (getenv('CIVICRM_UF')) {
59 define('CIVICRM_UF', getenv('CIVICRM_UF'));
60 }
61 else {
62 define('CIVICRM_UF', '%%cms%%');
63 }
8d133ef2 64}
eb049397
DL
65
66/**
67 * Content Management System (CMS) Datasource:
68 *
9beff2cf
NM
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 *
eb049397 72 * Datasource (DSN) format:
a8219e90 73 * define( 'CIVICRM_UF_DSN', 'mysql://cms_db_username:cms_db_password@db_server/cms_database?new_link=true');
eb049397 74 */
844b94bd 75if (!defined('CIVICRM_UF_DSN') && CIVICRM_UF !== 'UnitTests') {
a8219e90 76 define( 'CIVICRM_UF_DSN' , 'mysql://%%CMSdbUser%%:%%CMSdbPass%%@%%CMSdbHost%%/%%CMSdbName%%?new_link=true');
8d133ef2 77}
eb049397 78
f553d1ea
KC
79// %%extraSettings%%
80
eb049397
DL
81/**
82 * CiviCRM Database Settings
83 *
84 * Database URL (CIVICRM_DSN) for CiviCRM Data:
85 * Database URL format:
a8219e90 86 * define( 'CIVICRM_DSN', 'mysql://crm_db_username:crm_db_password@db_server/crm_database?new_link=true');
eb049397
DL
87 *
88 * Drupal and CiviCRM can share the same database, or can be installed into separate databases.
92b1c24f 89 * Backdrop CMS and CiviCRM can also share the same database, or can be installed into separate databases.
eb049397 90 *
92b1c24f
JL
91 * EXAMPLE: Drupal/Backdrop and CiviCRM running in the same database...
92 * DB Name = cms, DB User = cms
a8219e90 93 * define( 'CIVICRM_DSN' , 'mysql://cms:YOUR_PASSWORD@localhost/cms?new_link=true');
eb049397 94 *
92b1c24f
JL
95 * EXAMPLE: Drupal/Backdrop and CiviCRM running in separate databases...
96 * CMS DB Name = cms, DB User = cms
eb049397 97 * CiviCRM DB Name = civicrm, CiviCRM DB User = civicrm
a8219e90 98 * define( 'CIVICRM_DSN' , 'mysql://civicrm:YOUR_PASSWORD@localhost/civicrm?new_link=true');
eb049397 99 *
9beff2cf
NM
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 *
eb049397 103 */
8d133ef2 104if (!defined('CIVICRM_DSN')) {
2b045ddd
TO
105 if (CIVICRM_UF === 'UnitTests' && isset($GLOBALS['_CV']['TEST_DB_DSN'])) {
106 define('CIVICRM_DSN', $GLOBALS['_CV']['TEST_DB_DSN']);
844b94bd
TO
107 }
108 else {
a8219e90 109 define('CIVICRM_DSN', 'mysql://%%dbUser%%:%%dbPass%%@%%dbHost%%/%%dbName%%?new_link=true');
844b94bd 110 }
8d133ef2 111}
eb049397 112
a8219e90
SL
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
eb049397
DL
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 */
8d133ef2
TO
127if (!defined('CIVICRM_LOGGING_DSN')) {
128 define('CIVICRM_LOGGING_DSN', CIVICRM_DSN);
129}
eb049397
DL
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:
23b5a711 151 * define( 'CIVICRM_TEMPLATE_COMPILEDIR', '/var/www/htdocs/drupal/sites/default/files/civicrm/templates_c/');
eb049397 152 *
92b1c24f
JL
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 *
eb049397
DL
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:
23b5a711 167 * define( 'CIVICRM_TEMPLATE_COMPILEDIR', '/var/www/htdocs/joomla/media/civicrm/templates_c/');
eb049397
DL
168 *
169 * EXAMPLE - WordPress Installations:
750752f2 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
eb049397
DL
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:
750752f2 175 * define( 'CIVICRM_TEMPLATE_COMPILEDIR', '/var/www/htdocs/wordpress/wp-content/uploads/civicrm/templates_c/');
eb049397
DL
176 *
177 */
178
179global $civicrm_root;
180
181$civicrm_root = '%%crmRoot%%';
8d133ef2 182if (!defined('CIVICRM_TEMPLATE_COMPILEDIR')) {
23b5a711 183 define( 'CIVICRM_TEMPLATE_COMPILEDIR', '%%templateCompileDir%%');
8d133ef2 184}
eb049397 185
d938f496
LS
186/**
187 * SMARTY Compile Check:
188 *
189 * This tells Smarty whether to check for recompiling or not. Recompiling
190 * does not need to happen unless a template or config file is changed.
191 * Typically you enable this during development, and disable for production.
192 *
193 * Related issue:
194 * https://lab.civicrm.org/dev/core/issues/1073
195 *
196 */
197//if (!defined('CIVICRM_TEMPLATE_COMPILE_CHECK')) {
198// define( 'CIVICRM_TEMPLATE_COMPILE_CHECK', FALSE);
199//}
200
eb049397
DL
201/**
202 * Site URLs:
203 *
92b1c24f 204 * This section defines absolute and relative URLs to access the host CMS (Backdrop, Drupal, or Joomla) resources.
eb049397
DL
205 *
206 * IMPORTANT: Trailing slashes should be used on all URL settings.
207 *
208 *
209 * EXAMPLE - Drupal Installations:
210 * If your site's home url is http://www.example.com/drupal/
211 * these variables would be set as below. Modify as needed for your install.
212 *
213 * CIVICRM_UF_BASEURL - home URL for your site:
23b5a711 214 * define( 'CIVICRM_UF_BASEURL' , 'http://www.example.com/drupal/');
eb049397 215 *
92b1c24f
JL
216 * EXAMPLE - Backdrop CMS Installations:
217 * If your site's home url is http://www.example.com/backdrop/
218 * these variables would be set as below. Modify as needed for your install.
219 *
220 * CIVICRM_UF_BASEURL - home URL for your site:
221 * define( 'CIVICRM_UF_BASEURL' , 'http://www.example.com/backdrop/');
222 *
eb049397
DL
223 * EXAMPLE - Joomla Installations:
224 * If your site's home url is http://www.example.com/joomla/
225 *
226 * CIVICRM_UF_BASEURL - home URL for your site:
227 * Administration site:
23b5a711 228 * define( 'CIVICRM_UF_BASEURL' , 'http://www.example.com/joomla/administrator/');
eb049397 229 * Front-end site:
23b5a711 230 * define( 'CIVICRM_UF_BASEURL' , 'http://www.example.com/joomla/');
eb049397
DL
231 *
232 */
8d133ef2 233if (!defined('CIVICRM_UF_BASEURL')) {
23b5a711 234 define( 'CIVICRM_UF_BASEURL' , '%%baseURL%%');
8d133ef2 235}
eb049397 236
32799d94
EM
237/**
238 * Define any CiviCRM Settings Overrides per http://wiki.civicrm.org/confluence/display/CRMDOC/Override+CiviCRM+Settings
239 *
240 * Uncomment and edit the below as appropriate.
241 */
32799d94
EM
242
243 // Override the Temporary Files directory.
f42b34c1 244 // $civicrm_setting['Directory Preferences']['uploadDir'] = '/path/to/upload-dir' ;
32799d94
EM
245
246 // Override the custom files upload directory.
f42b34c1 247 // $civicrm_setting['Directory Preferences']['customFileUploadDir'] = '/path/to/custom-dir';
32799d94
EM
248
249 // Override the images directory.
250 // $civicrm_setting['Directory Preferences']['imageUploadDir'] = '/path/to/image-upload-dir' ;
251
252 // Override the custom templates directory.
253 // $civicrm_setting['Directory Preferences']['customTemplateDir'] = '/path/to/template-dir';
254
255 // Override the Custom php path directory.
256 // $civicrm_setting['Directory Preferences']['customPHPPathDir'] = '/path/to/custom-php-dir';
257
258 // Override the extensions directory.
259 // $civicrm_setting['Directory Preferences']['extensionsDir'] = '/path/to/extensions-dir';
260
261 // Override the resource url
262 // $civicrm_setting['URL Preferences']['userFrameworkResourceURL'] = 'http://example.com/example-resource-url/';
263
264 // Override the Image Upload URL (System Settings > Resource URLs)
265 // $civicrm_setting['URL Preferences']['imageUploadURL'] = 'http://example.com/example-image-upload-url';
266
267 // Override the Custom CiviCRM CSS URL
268 // $civicrm_setting['URL Preferences']['customCSSURL'] = 'http://example.com/example-css-url' ;
269
270 // Override the extensions resource URL
271 // $civicrm_setting['URL Preferences']['extensionsURL'] = 'http://example.com/pathtoextensiondir'
272
273 // Disable display of Community Messages on home dashboard
274 // $civicrm_setting['CiviCRM Preferences']['communityMessagesUrl'] = false;
275
276 // Disable automatic download / installation of extensions
277 // $civicrm_setting['Extension Preferences']['ext_repo_url'] = false;
278
f76ec559
TO
279 // set triggers to be managed offline per CRM-18212
280 // $civicrm_setting['CiviCRM Preferences']['logging_no_trigger_permission'] = 1;
281
f7732cb7
KC
282 // Override the CMS root path defined by cmsRootPath.
283 // define('CIVICRM_CMSDIR', '/path/to/install/root/');
284
89732521
CW
285 // Opt-out of announcements by the CiviCRM core team for releases, paid services, events, etc. Separate each preferred optout category with a comma:
286 // "offers": paid service offers
287 // "asks": requests for donations or membership signup/renewal to CiviCRM
288 // "releases": major release announcements
289 // "events": announcements of local/national upcoming events
290 // $civicrm_setting['CiviCRM Preferences']['communityMessagesUrl'] = 'https://alert.civicrm.org/alert?prot=1&ver={ver}&uf={uf}&sid={sid}&lang={lang}&co={co}&optout=offers,asks';
291
f7732cb7 292
32799d94 293/**
eb049397
DL
294 * If you are using any CiviCRM script in the bin directory that
295 * requires authentication, then you also need to set this key.
296 * We recommend using a 16-32 bit alphanumeric/punctuation key.
297 * More info at http://wiki.civicrm.org/confluence/display/CRMDOC/Command-line+Script+Configuration
298 */
8d133ef2 299if (!defined('CIVICRM_SITE_KEY')) {
23b5a711 300 define( 'CIVICRM_SITE_KEY', '%%siteKey%%');
8d133ef2 301}
eb049397
DL
302
303/**
304 * Enable this constant, if you want to send your email through the smarty
305 * templating engine(allows you to do conditional and more complex logic)
306 *
307 */
8d133ef2
TO
308if (!defined('CIVICRM_MAIL_SMARTY')) {
309 define( 'CIVICRM_MAIL_SMARTY', 0 );
310}
eb049397
DL
311
312/**
313 * This setting logs all emails to a file. Useful for debugging any mail (or civimail) issues.
314 * Enabling this setting will not send any email, ensure this is commented out in production
315 * The CIVICRM_MAIL_LOG is a debug option which disables MTA (mail transport agent) interaction.
316 * You must disable CIVICRM_MAIL_LOG before CiviCRM will talk to your MTA.
317 */
8d133ef2 318// if (!defined('CIVICRM_MAIL_LOG')) {
23b5a711 319// define( 'CIVICRM_MAIL_LOG', '%%templateCompileDir%%/mail.log');
8d133ef2 320// }
eb049397 321
2ddaef97
MW
322/**
323 * This setting will only work if CIVICRM_MAIL_LOG is defined. Mail will be logged and then sent.
324 */
325//if (!defined('CIVICRM_MAIL_LOG_AND_SEND')) {
326// define( 'CIVICRM_MAIL_LOG_AND_SEND', 1);
327//}
328
8d133ef2
TO
329
330if (!defined('CIVICRM_DOMAIN_ID')) {
23b5a711 331 define( 'CIVICRM_DOMAIN_ID', 1);
8d133ef2 332}
eb049397 333
594efcac
TO
334/**
335 * Setting to define the environment in which this CiviCRM instance is running.
336 * Note the setting here must be value from the option group 'Environment',
337 * (see Administration > System Settings > Option Groups, Options beside Environment)
338 * which by default has three option values: 'Production', 'Staging', 'Development'.
8a078f99 339 * NB: defining a value for environment here prevents it from being set
594efcac
TO
340 * via the browser.
341 */
342// $civicrm_setting['domain']['environment'] = 'Production';
f008885c 343
eb049397 344/**
59e56021 345 * Settings to enable external caching using a cache server. This is an
eb049397
DL
346 * advanced feature, and you should read and understand the documentation
347 * before you turn it on. We cannot store these settings in the DB since the
348 * config could potentially also be cached and we need to avoid an infinite
349 * recursion scenario.
350 *
351 * @see http://civicrm.org/node/126
352 */
353
354/**
59e56021
H
355 * If you have a cache server configured and want CiviCRM to make use of it,
356 * set the following constant. You should only set this once you have your cache
eb049397
DL
357 * server up and working, because CiviCRM will not start up if your server is
358 * unavailable on the host and port that you specify. By default CiviCRM will use
359 * an in-memory array cache
360 *
361 * To use the php extension memcache use a value of 'Memcache'
362 * To use the php extension memcached use a value of 'Memcached'
363 * To use the php extension apc use a value of 'APCcache'
59e56021 364 * To use the php extension redis use a value of 'Redis'
eb049397
DL
365 * To not use any caching (not recommended), use a value of 'NoCache'
366 *
367 */
8d133ef2 368if (!defined('CIVICRM_DB_CACHE_CLASS')) {
23b5a711 369 define('CIVICRM_DB_CACHE_CLASS', 'ArrayCache');
8d133ef2 370}
eb049397
DL
371
372/**
373 * Change this to the IP address of your cache server if it is not on the
374 * same machine (Unix).
375 */
8d133ef2 376if (!defined('CIVICRM_DB_CACHE_HOST')) {
23b5a711 377 define('CIVICRM_DB_CACHE_HOST', 'localhost');
8d133ef2 378}
eb049397
DL
379
380/**
9d2f1acb 381 * Change this if you are not using the standard port for your cache server.
382 *
383 * The standard port for Memcache & APCCache is 11211. For Redis it is 6379.
eb049397 384 */
8d133ef2 385if (!defined('CIVICRM_DB_CACHE_PORT')) {
044e2410 386 if (CIVICRM_DB_CACHE_CLASS === 'Redis') {
387 define('CIVICRM_DB_CACHE_PORT', 6379 );
388 }
389 else {
390 define('CIVICRM_DB_CACHE_PORT', 11211);
391 }
8d133ef2 392}
eb049397 393
59e56021 394/**
9d2f1acb 395 * Change this if your cache server requires a password (currently only works
59e56021
H
396 * with Redis)
397 */
398if (!defined('CIVICRM_DB_CACHE_PASSWORD')) {
399 define('CIVICRM_DB_CACHE_PASSWORD', '' );
400}
401
eb049397
DL
402/**
403 * Items in cache will expire after the number of seconds specified here.
404 * Default value is 3600 (i.e., after an hour)
405 */
8d133ef2 406if (!defined('CIVICRM_DB_CACHE_TIMEOUT')) {
23b5a711 407 define('CIVICRM_DB_CACHE_TIMEOUT', 3600 );
8d133ef2 408}
eb049397
DL
409
410/**
59e56021 411 * If you are sharing the same cache instance with more than one CiviCRM
eb049397
DL
412 * database, you will need to set a different value for the following argument
413 * so that each copy of CiviCRM will not interfere with other copies. If you only
414 * have one copy of CiviCRM, you may leave this set to ''. A good value for
415 * this if you have two servers might be 'server1_' for the first server, and
416 * 'server2_' for the second server.
417 */
59e56021
H
418if (!defined('CIVICRM_DB_CACHE_PREFIX')) {
419 define('CIVICRM_DB_CACHE_PREFIX', '');
8d133ef2 420}
eb049397 421
cdee59f7
TO
422/**
423 * The cache system traditionally allowed a wide range of cache-keys, but some
424 * cache-keys are prohibited by PSR-16.
425 */
426if (!defined('CIVICRM_PSR16_STRICT')) {
427 define('CIVICRM_PSR16_STRICT', FALSE);
428}
429
eb049397
DL
430/**
431 * If you have multilingual site and you are using the "inherit CMS language"
432 * configuration option, but wish to, for example, use fr_CA instead of the
433 * default fr_FR (for French), set one or more of the constants below to an
434 * appropriate regional value.
435 */
436// define('CIVICRM_LANGUAGE_MAPPING_FR', 'fr_CA');
437// define('CIVICRM_LANGUAGE_MAPPING_EN', 'en_CA');
438// define('CIVICRM_LANGUAGE_MAPPING_ES', 'es_MX');
439// define('CIVICRM_LANGUAGE_MAPPING_PT', 'pt_BR');
440// define('CIVICRM_LANGUAGE_MAPPING_ZH', 'zh_TW');
441
de67bc86
ML
442/**
443 * Native gettext improves performance of localized CiviCRM installations
444 * significantly. However, your host must enable the locale (language).
445 * On most GNU/Linux, Unix or MacOSX systems, you may view them with
446 * the command line by typing: "locale -a".
447 *
448 * On Debian or Ubuntu, you may reconfigure locales with:
449 * # dpkg-reconfigure locales
450 *
451 * For more information:
452 * http://wiki.civicrm.org/confluence/x/YABFBQ
453 */
8d133ef2 454// if (!defined('CIVICRM_GETTEXT_NATIVE')) {
de67bc86 455// define('CIVICRM_GETTEXT_NATIVE', 1);
8d133ef2 456// }
de67bc86 457
0ba49657 458/**
459 * Define how many times to retry a transaction when the DB hits a deadlock
460 * (ie. the database is locked by another transaction). This is an
461 * advanced setting intended for high-traffic databases & experienced developers/ admins.
462 */
463define('CIVICRM_DEADLOCK_RETRIES', 3);
464
79ee443c 465/**
466 * Enable support for multiple locks.
467 *
468 * This is a transitional setting. When enabled sites with mysql 5.7.5+ or equivalent
469 * MariaDB can improve their DB conflict management.
470 *
471 * There is no known or expected downside or enabling this (and definite upside).
472 * The setting only exists to allow sites to manage change in their environment
473 * conservatively for the first 3 months.
474 *
475 * See https://github.com/civicrm/civicrm-core/pull/13854
476 */
477 // define('CIVICRM_SUPPORT_MULTIPLE_LOCKS', TRUE);
478
eb049397
DL
479/**
480 * Configure MySQL to throw more errors when encountering unusual SQL expressions.
481 *
482 * If undefined, the value is determined automatically. For CiviCRM tarballs, it defaults
483 * to FALSE; for SVN checkouts, it defaults to TRUE.
484 */
8d133ef2 485// if (!defined('CIVICRM_MYSQL_STRICT')) {
23b5a711 486// define('CIVICRM_MYSQL_STRICT', TRUE );
8d133ef2 487// }
eb049397 488
5a302bbc
TO
489/**
490 * Specify whether the CRM_Core_BAO_Cache should use the legacy
491 * direct-to-SQL-mode or the interim PSR-16 adapter.
492 */
493// define('CIVICRM_BAO_CACHE_ADAPTER', 'CRM_Core_BAO_Cache_Psr16');
494
3b2c20b7
TO
495if (CIVICRM_UF === 'UnitTests') {
496 if (!defined('CIVICRM_CONTAINER_CACHE')) define('CIVICRM_CONTAINER_CACHE', 'auto');
497 if (!defined('CIVICRM_MYSQL_STRICT')) define('CIVICRM_MYSQL_STRICT', true);
498}
499
eb049397
DL
500/**
501 *
502 * Do not change anything below this line. Keep as is
503 *
504 */
505
506$include_path = '.' . PATH_SEPARATOR .
507 $civicrm_root . PATH_SEPARATOR .
508 $civicrm_root . DIRECTORY_SEPARATOR . 'packages' . PATH_SEPARATOR .
509 get_include_path( );
510if ( set_include_path( $include_path ) === false ) {
511 echo "Could not set the include path<p>";
512 exit( );
513}
514
8d133ef2 515if (!defined('CIVICRM_CLEANURL')) {
23b5a711
EM
516 if ( function_exists('variable_get') && variable_get('clean_url', '0') != '0') {
517 define('CIVICRM_CLEANURL', 1 );
518 }
2aad87fa 519 elseif ( function_exists('config_get') && config_get('system.core', 'clean_url') != 0) {
48538a6f
HD
520 define('CIVICRM_CLEANURL', 1 );
521 }
23b5a711
EM
522 else {
523 define('CIVICRM_CLEANURL', 0);
8d133ef2 524 }
eb049397
DL
525}
526
527// force PHP to auto-detect Mac line endings
528ini_set('auto_detect_line_endings', '1');
529
530// make sure the memory_limit is at least 64 MB
531$memLimitString = trim(ini_get('memory_limit'));
532$memLimitUnit = strtolower(substr($memLimitString, -1));
533$memLimit = (int) $memLimitString;
534switch ($memLimitUnit) {
535 case 'g': $memLimit *= 1024;
536 case 'm': $memLimit *= 1024;
537 case 'k': $memLimit *= 1024;
538}
539if ($memLimit >= 0 and $memLimit < 134217728) {
540 ini_set('memory_limit', '128M');
541}
542
543require_once 'CRM/Core/ClassLoader.php';
544CRM_Core_ClassLoader::singleton()->register();