Kohana_HTTP_Exception [ 404 ]: The requested URL report/b6ef4bbe72 was not found on this server.

SYSPATH/classes/Kohana/Controller.php [ 79 ]

74 		// If the action doesn't exist, it's a 404
75 		if ( ! method_exists($this, $action))
76 		{
77 			throw HTTP_Exception::factory(404,
78 				'The requested URL :uri was not found on this server.',
79 				array(':uri' => $this->request->uri())
80 			)->request($this->request);
81 		}
82 
83 		// Execute the action itself
84 		$this->{$action}();
  1. {PHP internal call}

  2. SYSPATH/classes/Kohana/Request/Client/Internal.php [ 97 ]

  3. SYSPATH/classes/Kohana/Request/Client.php [ 114 ]

  4. APPPATH/classes/Request.php [ 130 ]

  5. DOCROOT/index.php [ 347 ]