layout = 'dev_error'; $this->assign('title', 'Missing Controller'); $this->assign('templateName', 'missing_controller.php'); ?> start('subheading');?> Error Your routing resulted in = h($originalClass) ?> as a controller name. = h($pluginDot . $class) ?>Controller could not be found. end() ?> start('file'); ?>
The controller name = h($originalClass) ?> has not been properly inflected, and could not be resolved to a controller that exists in your application.
Ensure that your URL = h($this->request->getUri()->getPath()) ?> is
using the same inflection style as your routes do. By default applications use DashedRoute
and URLs should use - to separate multi-word controller names.
In the case you tried to access a plugin controller make sure you added it to your composer file or you use the autoload option for the plugin.
Suggestion Create the class = h($class) ?>Controller below in file: = h($path) ?>
end(); ?>