Fatal error: Call to a member function on a non-object in /home/ayanray/cakephp/cake/libs/session.php on line 365

Warning: Unknown(): Cannot send session cookie - headers already sent by (output started at /home/ayanray/cakephp/cake/libs/session.php:365) in Unknown on line 0

Warning: Unknown(): Cannot send session cache limiter - headers already sent (output started at /home/ayanray/cakephp/cake/libs/session.php:365) in Unknown on line 0

Warning: Cannot modify header information - headers already sent by (output started at /home/ayanray/cakephp/cake/libs/session.php:365) in Unknown on line 0
AYAN RAY | Missing Method in Controller
 

Missing Method in BlogController

You are seeing this error because the action tags is not defined in controller BlogController

If you want to customize this error message, create ar/views/errors/missing_action.thtml.

Fatal: Confirm you have created the BlogController::tags() in file : ar/controllers/blog_controller.php

<?php
class BlogController extends AppController {
   function tags() {
   }

}
?>