A similar question has been asked before but solution to that didn't help me. I created a file "dave.php" in application/classes/Controller/ folder and I renamed the controller as well. Here's the code in dave.php file:
<?php defined('SYSPATH') OR die('No Direct Script Access');
Class Controller_Dave extends Controller
{
public function action_index()
{
echo 'hello, world!';
}
}
kohana/index.php/dave - but I am still geting that error. Any ideas why?