HTTP_Exception_404 [ 404 ]: The requested URL ctripcms/newtravel was not found on this server.
SYSPATH\classes\kohana\request\client\internal.php [ 87 ]
82
83 try
84 {
85 if ( ! class_exists($prefix.$controller))
86 {
87 throw new HTTP_Exception_404('The requested URL :uri was not found on this server.',
88 array(':uri' => $request->uri()));
89 }
90
91 // Load the controller using reflection
92 $class = new ReflectionClass($prefix.$controller);
59 public function execute(Request $request)
60 {
61 if ($this->_cache instanceof HTTP_Cache)
62 return $this->_cache->execute($this, $request);
63
64 return $this->execute_request($request);
65 }
66
67 /**
68 * Processes the request passed to it and returns the response from
69 * the URI resource identified.
1153 throw new Request_Exception('Unable to execute :uri without a Kohana_Request_Client', array(
1154 ':uri' => $this->_uri,
1155 ));
1156 }
1157
1158 return $this->_client->execute($this);
1159 }
1160
1161 /**
1162 * Returns whether this request is the initial request Kohana received.
1163 * Can be used to test for sub requests.