SYSPATH/classes\kohana\request.php [ 635 ]
630 }
631
632 // No matching route for this URI
633 $this->status = 404;
634
635 throw new Kohana_Request_Exception('Unable to find a route to match the URI: :uri',
636 array(':uri' => $uri));
637 }
638
639 /**
640 * Returns the response as the string representation of a request.
-
SYSPATH/classes\kohana\request.php [ 272 ] » Kohana_Request->__construct(arguments)
uri
string(26) "loznice-postele/61/ror.xml"
267 268 // Remove all dot-paths from the URI, they are not valid 269 $uri = preg_replace('#\.[\s./]*/#', '', $uri); 270 271 // Create the instance singleton 272 Request::$instance = Request::$current = new Request($uri); 273 274 // Add the default Content-Type header 275 Request::$instance->headers['Content-Type'] = 'text/html; charset='.Kohana::$charset; 276 } 277
-
APPPATH/bootstrap.php [ 222 ] » Kohana_Request::instance()
217 * Execute the main request. A source of the URI can be passed, eg: $_SERVER['PATH_INFO']. 218 * If no source is specified, the URI will be automatically detected. 219 */ 220 try { 221 // Attempt to execute the response 222 $request = Request::instance()->execute(); 223 224 // Display the request response. 225 echo $request->send_headers()->response; 226 } catch (Exception $e) { 227 if (!IN_PRODUCTION) {
-
DOCROOT/index.php [ 103 ] » require(arguments)
0
string(45) "C:\xa54\htdocs\kasl\application\bootstrap.php"
98 // Load empty core extension 99 require SYSPATH.'classes/kohana'.EXT; 100 } 101 102 // Bootstrap the application 103 require APPPATH.'bootstrap'.EXT;