- 🇦🇴Angola sebastiaodomingos Belgium
I had the same issue, my drupal version is still old, just in case runs into it as well, here is my solution:
+++ b/sites/all/modules/rules/rules.module Mon Dec 30 20:01:54 2024 +0000 @@ -9,7 +9,10 @@ if (!drupal_autoload_class('RulesEventHandlerEntityBundle')) { require_once dirname(__FILE__) . '/includes/rules.event.inc'; } - +// The class autoloader may fail for classes added in 7.x-2.4 (Issue 2090511). +if (!drupal_autoload_class('RulesUIController')) { + require_once dirname(__FILE__) . '/ui/ui.controller.inc'; +}