Missing controller
You are seeing this error because controller ForumController could not be found.
Notice:
If you want to customize this error message, create app/views/errors/missing_controller.ctp
Fatal:
Create the class below in file: app/controllers/forum_controller.php
<?php
class ForumController extends AppController {
var $name = 'Forum';
}
?>