Drupal 7 Class 'RulesEventHandlerEntityBundle' not found in

Если выскакивает такая ошибка:

Class 'RulesEventHandlerEntityBundle' not found in...

Нужно запустить update.php и обновить всё, что укажет Drupal.

Если при запуске скрипта update.php Drupal выдаёт ошибку:

Access denied. You are not authorized to access this page. Log in using either an account with the administer software updates permission or the site maintenance account (the account you created during installation). If you cannot log in, you will have to edit settings.php to bypass this access check.

То необходимо в файле /sites/default/settings.php включить доступ неавторизованным пользователям запускать скрипт автообновления update.php. Для этого нужно установить значение переменной $update_free_access значение true.

$update_free_access = true;

Внимание! Не забудьте после обновления вернуть значение $update_free_access = false в целях безопасности сайта.