SYSPATH/classes/kohana/request.php [ 574 ]
569 }
570
571 // No matching route for this URI
572 $this->status = 404;
573
574 throw new Kohana_Request_Exception('Unable to find a route to match the URI: :uri',
575 array(':uri' => $uri));
576 }
577
578 /**
579 * Returns the response as the string representation of a request.
-
SYSPATH/classes/kohana/request.php [ 255 ] » Kohana_Request->__construct(arguments)
uristring(24) "/_inc/js/jquery.cycle.js"250 251 // Remove all dot-paths from the URI, they are not valid 252 $uri = preg_replace('#\.[\s./]*/#', '', $uri); 253 254 // Create the instance singleton 255 $instance = new Request($uri); 256 257 // Add the Content-Type header 258 $instance->headers['Content-Type'] = 'text/html; charset='.Kohana::$charset; 259 } 260 -
APPPATH/bootstrap.php [ 216 ] » Kohana_Request::instance()
211 212 /** 213 * Execute the main request using PATH_INFO. If no URI source is specified, 214 * the URI will be automatically detected. 215 */ 216 $kohana_request = Request::instance(); 217 218 try { 219 // Attempt to execute the response 220 $kohana_request->execute(); 221 } catch (Exception $e) { -
APPPATH/public/index.php [ 113 ] » require(arguments)
0string(41) "/var/www/ve/www/application/bootstrap.php"108 require SYSPATH.'classes/kohana'.EXT; 109 } 110 111 112 // Bootstrap the application 113 require APPPATH.'bootstrap'.EXT; 114