"; exit( ); } if ( function_exists( 'variable_get' ) && variable_get('clean_url', '0') != '0' ) { define( 'CIVICRM_CLEANURL', 1 ); } else { define( 'CIVICRM_CLEANURL', 0 ); } // force PHP to auto-detect Mac line endings ini_set('auto_detect_line_endings', '1'); // make sure the memory_limit is at least 64 MB $memLimitString = trim(ini_get('memory_limit')); $memLimitUnit = strtolower(substr($memLimitString, -1)); $memLimit = (int) $memLimitString; switch ($memLimitUnit) { case 'g': $memLimit *= 1024; case 'm': $memLimit *= 1024; case 'k': $memLimit *= 1024; } if ($memLimit >= 0 and $memLimit < 134217728) { ini_set('memory_limit', '128M'); } require_once 'CRM/Core/ClassLoader.php'; CRM_Core_ClassLoader::singleton()->register();