X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=templates%2FCRM%2Fcommon%2Fcivicrm.settings.php.template;h=d4018fcc0ef743dab2153ff1e0307bb5b8e413f4;hb=8c72611daaa9ed5a0ddbc6944fb32e788bebcd19;hp=49ef5c02dc5ed1aee1f06c5bb285bbd5bf3b44a7;hpb=63a2160418c843e58bdd6a6df8705c92f3f6ec58;p=civicrm-core.git diff --git a/templates/CRM/common/civicrm.settings.php.template b/templates/CRM/common/civicrm.settings.php.template index 49ef5c02dc..d4018fcc0e 100644 --- a/templates/CRM/common/civicrm.settings.php.template +++ b/templates/CRM/common/civicrm.settings.php.template @@ -73,7 +73,7 @@ if (!defined('CIVICRM_UF')) { * define( 'CIVICRM_UF_DSN', 'mysql://cms_db_username:cms_db_password@db_server/cms_database?new_link=true'); */ if (!defined('CIVICRM_UF_DSN') && CIVICRM_UF !== 'UnitTests') { - define( 'CIVICRM_UF_DSN' , 'mysql://%%CMSdbUser%%:%%CMSdbPass%%@%%CMSdbHost%%/%%CMSdbName%%?new_link=true'); + define( 'CIVICRM_UF_DSN' , 'mysql://%%CMSdbUser%%:%%CMSdbPass%%@%%CMSdbHost%%/%%CMSdbName%%?new_link=true%%CMSdbSSL%%'); } // %%extraSettings%% @@ -106,7 +106,7 @@ if (!defined('CIVICRM_DSN')) { define('CIVICRM_DSN', $GLOBALS['_CV']['TEST_DB_DSN']); } else { - define('CIVICRM_DSN', 'mysql://%%dbUser%%:%%dbPass%%@%%dbHost%%/%%dbName%%?new_link=true'); + define('CIVICRM_DSN', 'mysql://%%dbUser%%:%%dbPass%%@%%dbHost%%/%%dbName%%?new_link=true%%dbSSL%%'); } } @@ -432,12 +432,18 @@ if (!defined('CIVICRM_PSR16_STRICT')) { * configuration option, but wish to, for example, use fr_CA instead of the * default fr_FR (for French), set one or more of the constants below to an * appropriate regional value. + * + * Note that since 5.26.0 specifically https://github.com/civicrm/civicrm-core/pull/16700 + * This generally doesn't get used by WordPress especially if using the Polylang plugin. + * The reason is that the WordPress implementation has been changed to get the full locale + * from the WordPress plugin rather than just the 2 string language code. */ // define('CIVICRM_LANGUAGE_MAPPING_FR', 'fr_CA'); // define('CIVICRM_LANGUAGE_MAPPING_EN', 'en_CA'); // define('CIVICRM_LANGUAGE_MAPPING_ES', 'es_MX'); // define('CIVICRM_LANGUAGE_MAPPING_PT', 'pt_BR'); // define('CIVICRM_LANGUAGE_MAPPING_ZH', 'zh_TW'); +// define('CIVICRM_LANGUAGE_MAPPING_NL', 'nl_BE'); /** * Native gettext improves performance of localized CiviCRM installations @@ -472,12 +478,6 @@ define('CIVICRM_DEADLOCK_RETRIES', 3); // define('CIVICRM_MYSQL_STRICT', TRUE ); // } -/** - * Specify whether the CRM_Core_BAO_Cache should use the legacy - * direct-to-SQL-mode or the interim PSR-16 adapter. - */ -// define('CIVICRM_BAO_CACHE_ADAPTER', 'CRM_Core_BAO_Cache_Psr16'); - if (CIVICRM_UF === 'UnitTests') { if (!defined('CIVICRM_CONTAINER_CACHE')) define('CIVICRM_CONTAINER_CACHE', 'auto'); if (!defined('CIVICRM_MYSQL_STRICT')) define('CIVICRM_MYSQL_STRICT', true);