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