Kohana_HTTP_Exception [ 404 ]: The requested URL article/56 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 				[':uri' => $this->request->uri()]
80 			)->request($this->request);
81 		}
82 
83 		// Execute the action itself
84 		$this->{$action}();
  1. {PHP internal call} » Kohana_Controller->execute()

  2. SYSPATH/classes/Kohana/Request/Client/Internal.php [ 94 ] » ReflectionMethod->invoke()

  3. SYSPATH/classes/Kohana/Request/Client.php [ 114 ] » Kohana_Request_Client_Internal->execute_request()

  4. SYSPATH/classes/Kohana/Request.php [ 1000 ] » Kohana_Request_Client->execute()

  5. DOCROOT/public_html/index.php [ 118 ] » Kohana_Request->execute()

Environment