Details
-
Type: Bug
-
Status: Done/Fixed
-
Priority: Blocker
-
Resolution: Cannot Reproduce
-
Affects Version/s: 4.3.3
-
Fix Version/s: None
-
Component/s: None
-
Labels:None
Description
I get the following Notice along with the "(Currently using CiviCRM settings does not exist CiviCRM settings file does not exist. It should be created by CiviCRM install)"
Notice: Undefined index: description in drupal_check_module() (line 1219 of /home/mysite/public_html/includes/install.inc).
The resulting code: (Which is exact to the code in other installations of CiviCRM 4.33)
/**
- Checks a module's requirements.
* - @param $module
- Machine name of module to check.
* - @return
- TRUE or FALSE, depending on whether the requirements are met.
*/
function drupal_check_module($module) {
module_load_install($module);
if (module_hook($module, 'requirements')) {
// Check requirements
$requirements = module_invoke($module, 'requirements', 'install');
if (is_array($requirements) && drupal_requirements_severity($requirements) == REQUIREMENT_ERROR) {
// Print any error messages
foreach ($requirements as $requirement) {
if (isset($requirement['severity']) && $requirement['severity'] == REQUIREMENT_ERROR)Unknown macro: { $message = $requirement['description']; if (isset($requirement['value']) && $requirement['value']) { $message .= ' (' . t('Currently using !item !version', array('!item' => $requirement['title'], '!version' => $requirement['value'])) . ')'; } drupal_set_message($message, 'error'); }}
return FALSE;
}
}
return TRUE;
}
I keep getting the following Blocking Messages:
Warning: require_once(CRM/Utils/System.php) [function.require-once]: failed to open stream: No such file or directory in /home/mysite/public_html/sites/all/modules/civicrm/CRM/Core/ClassLoader.php on line 126
Fatal error: require_once() [function.require]: Failed opening required 'CRM/Utils/System.php' (include_path='.:/usr/lib/php:/usr/local/lib/php:/home/mysite/php') in /home/mysite/public_html/sites/all/modules/civicrm/CRM/Core/ClassLoader.php on line 126
This one is quite the anomaly.