SYSPATH/classes/kohana/request.php [ 674 ]
669 }
670
671 // No matching route for this URI
672 $this->status = 404;
673
674 throw new Kohana_Request_Exception('Unable to find a route to match the URI: :uri',
675 array(':uri' => $uri));
676 }
677
678 /**
679 * Returns the response as the string representation of a request.
-
SYSPATH/classes/kohana/request.php [ 230 ] » Kohana_Request->__construct(arguments)
0
string(26) "kategorie/vykup-palet.aspx"
225 226 // Remove all dot-paths from the URI, they are not valid 227 $uri = preg_replace('#\.[\s./]*/#', '', $uri); 228 229 // Create the instance singleton 230 Request::$instance = Request::$current = new Request($uri); 231 232 // Add the default Content-Type header 233 Request::$instance->headers['Content-Type'] = 'text/html; charset='.Kohana::$charset; 234 } 235
-
APPPATH/bootstrap.php [ 187 ] » Kohana_Request::instance()
182 183 // Create a 404 response 184 // $uri=""; 185 // $request=Request::instance($uri); 186 187 Request::instance()->status = 404; 188 $request->response = "Stránka nebyla nalezena 404"; 189 190 191 // $request->response = View::factory('base_template') 192 // ->set('title', '404');
-
DOCROOT/index.php [ 108 ] » require(arguments)
0
string(70) "/storage/var/www/herus-palety.cz/domains/www/application/bootstrap.php"
103 // Load empty core extension 104 require SYSPATH.'classes/kohana'.EXT; 105 } 106 107 // Bootstrap the application 108 require APPPATH.'bootstrap'.EXT;