No route for Front:Page:Default:default(pageid=0, lang=2)
File: /var/www/clients/client1/web3/web/libs/Nette/Application/Presenter.php Line: 1021
Line 1014: if ($mode === 'forward') return;
Line 1015:
Line 1016: // CONSTRUCT URL
Line 1017: $uri = $router->constructUrl($this->lastCreatedRequest, $httpRequest);
Line 1018: if ($uri === NULL) {
Line 1019: unset($args[self::ACTION_KEY]);
Line 1020: $params = urldecode(http_build_query($args, NULL, ', '));
Line 1021: throw new NInvalidLinkException("No route for $presenter:$action($params)");
Line 1022: }
Line 1023:
Line 1024: // make URL relative if possible
Line 1025: if ($mode === 'link' && $scheme === FALSE && !$this->absoluteUrls) {
Line 1026: $hostUri = $httpRequest->getUri()->getHostUri();
Line 1027: if (strncmp($uri, $hostUri, strlen($hostUri)) === 0) {
Line 1028: $uri = substr($uri, strlen($hostUri));
presenters/FrontPresenter.php (199) source ► NPresenter-> createRequest (arguments ►)
$component | object(Front_Page_DefaultPresenter) (38) ► |
---|---|
$destination | string(7) "default"
|
$args | array(1) ▼ |
$mode | string(8) "redirect"
|
Line 192: } else {
Line 193: if(!array_key_exists(self::PAGE_IDENTIFIER, $args)) {
Line 194: $args = array(self::PAGE_IDENTIFIER => $this->pageid)+$args;
Line 195: }
Line 196: }
Line 197:
Line 198: $presenter = $this->getPresenter();
Line 199: $presenter->redirectUri($presenter->createRequest($this, $destination, $args, 'redirect'), $code);
Line 200: }
Line 201:
Line 202: /**
Line 203: * Gets page info
Line 204: * @return array
Line 205: */
Line 206: public function getPageInfo() {
presenters/FrontPresenter.php (70) source ► FrontPresenter-> redirect (arguments ►)
$code | string(7) "default"
|
---|
Line 63: $this->redirect("default", array('lang' => Language::getInstance()->getDefaultId()));
Line 64: }
Line 65: $this->redirect("default");
Line 66: }
Line 67:
Line 68: //check page visibility
Line 69: if(!$this->checkVisibility($this->pageid)) {
Line 70: $this->redirect("default");
Line 71: }
Line 72:
Line 73: $this->getPageInfo(); //@todo: it's already initialize in checkVis., maybe delete
Line 74: $this->pageBehavior();
Line 75: $this->rightPageId = $this->pageInfo['id'];
Line 76:
Line 77: //set up template :)
Application/Presenter.php (172) source ► FrontPresenter-> startup ()
Line 165: // PHASE 1: STARTUP
Line 166: $this->phase = self::PHASE_STARTUP;
Line 167: $this->request = $request;
Line 168: $this->payload = (object) NULL;
Line 169: $this->setParent($this->getParent(), $request->getPresenterName());
Line 170:
Line 171: $this->initGlobalParams();
Line 172: $this->startup();
Line 173: if (!$this->startupCheck) {
Line 174: $class = $this->reflection->getMethod('startup')->getDeclaringClass()->getName();
Line 175: trigger_error("Method $class::startup() or its descendant doesn't call parent::startup().", E_USER_WARNING);
Line 176: }
Line 177: // calls $this->action<Action>()
Line 178: $this->tryCall($this->formatActionMethod($this->getAction()), $this->params);
Line 179:
Application/Application.php (139) source ► NPresenter-> run (arguments ►)
$request | object(NPresenterRequest) (7) ► |
---|
Line 132: } catch (NInvalidPresenterException $e) {
Line 133: throw new NBadRequestException($e->getMessage(), 404, $e);
Line 134: }
Line 135: $request->freeze();
Line 136:
Line 137: // Execute presenter
Line 138: $this->presenter = new $class;
Line 139: $response = $this->presenter->run($request);
Line 140:
Line 141: // Send response
Line 142: if ($response instanceof NForwardingResponse) {
Line 143: $request = $response->getRequest();
Line 144: continue;
Line 145:
Line 146: } elseif ($response instanceof IPresenterResponse) {
app/bootstrap.php (121) source ► NApplication-> run ()
Line 114: // MFU.
Line 115: //CmsMultipleFileUpload::register();
Line 116:
Line 117: // Checkbox list.
Line 118: NForm::extensionMethod('NForm::addCheckboxList', array('CheckboxList', 'addCheckboxList'));
Line 119:
Line 120: // Step 5: Run the application!
Line 121: $application->run();
Line 122:
web/index.php (26) source ► require (arguments ►)
#0 | string(51) "/var/www/clients/client1/web3/web/app/bootstrap.php"
|
---|
Line 19: // absolute filesystem path to the application root
Line 20: define('APP_DIR', WWW_DIR . '/app');
Line 21:
Line 22: // absolute filesystem path to the libraries
Line 23: define('LIBS_DIR', WWW_DIR . '/libs');
Line 24:
Line 25: // load bootstrap file
Line 26: require APP_DIR . '/bootstrap.php';
Line 27:
array(1) ▼ {
0 => object(NPresenterRequest) (7) ► {
"method" private => string(3) "GET"
"flags" private => array(1) ▼ {
"secured" => bool(TRUE)
}
"name" private => string(18) "Front:Page:Default"
"params" private => array(4) ▼ {
"pageid" => bool(FALSE)
"lang" => string(1) "2"
"action" => string(7) "default"
"id" => NULL
}
"post" private => array(0)
"files" private => array(0)
"frozen" private => bool(TRUE)
}
}
object(Front_Page_DefaultPresenter) (38) ► {
"lang" => string(1) "2"
"page" => array(0)
"pageid" => bool(FALSE)
"rightPageId" => NULL
"pageInfo" => bool(FALSE)
"autoCanonicalize" => bool(FALSE)
"primaryColumn" => NULL
"translator" => object(Translator) (6) ▼ {
"lang" => string(1) "2"
"table" protected => string(12) "translations"
"connection" protected => object(DibiConnection) (5) ▼ {
"config" private => array(8) {
...
}
"driver" private => object(DibiMySqlDriver) (3) {
...
}
"profiler" private => NULL
"connected" private => bool(TRUE)
"inTxn" private => bool(FALSE)
}
"primaryColumn" => string(2) "id"
"onStartup" => NULL
"onShutdown" => NULL
}
"oldLayoutMode" => bool(FALSE)
"module" protected => string(4) "Page"
"submodule" protected => string(5) "Front"
"onShutdown" => NULL
"oldModuleMode" => bool(TRUE)
"request" private => object(NPresenterRequest) (7) ► {
"method" private => string(3) "GET"
"flags" private => array(1) ▼ {
"secured" => bool(TRUE)
}
"name" private => string(18) "Front:Page:Default"
"params" private => array(4) ▼ {
"pageid" => bool(FALSE)
"lang" => string(1) "2"
"action" => string(7) "default"
"id" => NULL
}
"post" private => array(0)
"files" private => array(0)
"frozen" private => bool(TRUE)
}
"response" private => NULL
"phase" private => int(1)
"absoluteUrls" => bool(FALSE)
"globalParams" private => array(0)
"globalState" private => NULL
"globalStateSinces" private => array(1) ▼ {
"lang" => string(14) "FrontPresenter"
}
"action" private => string(7) "default"
"view" private => string(7) "default"
"layout" private => NULL
"payload" private => object(stdClass) (0) {}
"signalReceiver" private => string(0) ""
"signal" private => NULL
"ajaxMode" private => bool(FALSE)
"startupCheck" private => bool(TRUE)
"lastCreatedRequest" private => object(NPresenterRequest) (7) ► {
"method" private => string(7) "FORWARD"
"flags" private => array(0)
"name" private => string(18) "Front:Page:Default"
"params" private => array(3) ▼ {
"pageid" => bool(FALSE)
"lang" => string(1) "2"
"action" => string(7) "default"
}
"post" private => array(0)
"files" private => array(0)
"frozen" private => bool(FALSE)
}
"lastCreatedRequestFlag" private => array(1) ▼ {
"current" => bool(TRUE)
}
"template" private => object(NTemplate) (7) ► {
"file" private => NULL
"warnOnUndefined" => bool(TRUE)
"onPrepareFilters" => array(1) ▼ {
0 => array(2) {
...
}
}
"params" private => array(6) ▼ {
"component" => object(Front_Page_DefaultPresenter) (38) {
*RECURSION*
}
"control" => object(Front_Page_DefaultPresenter) (38) {
*RECURSION*
}
"presenter" => object(Front_Page_DefaultPresenter) (38) {
*RECURSION*
}
"baseUri" => string(1) "/"
"basePath" => string(0) ""
"flashes" => array(0)
}
"filters" private => array(0)
"helpers" private => array(9) ► {
"escape" => object(NCallback) (1) {
...
}
"escapeurl" => object(NCallback) (1) {
...
}
"striptags" => object(NCallback) (1) {
...
}
"nl2br" => object(NCallback) (1) {
...
}
"substr" => object(NCallback) (1) {
...
}
"repeat" => object(NCallback) (1) {
...
}
"implode" => object(NCallback) (1) {
...
}
"number" => object(NCallback) (1) {
...
}
"translate" => object(NCallback) (1) {
...
}
}
"helperLoaders" private => array(1) ▼ {
0 => object(NCallback) (1) {
...
}
}
}
"invalidSnippets" private => array(0)
"params" protected => array(4) ▼ {
"pageid" => bool(FALSE)
"lang" => string(1) "2"
"action" => string(7) "default"
"id" => NULL
}
"components" private => array(0)
"cloning" private => NULL
"parent" private => NULL
"name" private => string(18) "Front:Page:Default"
"monitors" private => array(1) ▼ {
"NPresenter" => array(4) ▼ {
0 => NULL
1 => NULL
2 => NULL
3 => bool(TRUE)
}
}
}
WWW_DIR | string(33) "/var/www/clients/client1/web3/web"
|
---|---|
APP_DIR | string(37) "/var/www/clients/client1/web3/web/app"
|
LIBS_DIR | string(38) "/var/www/clients/client1/web3/web/libs"
|
/var/www/clients/client1/web3/web/index.php |
/var/www/clients/client1/web3/web/app/bootstrap.php |
/var/www/clients/client1/web3/web/libs/Nette/loader.php |
/var/www/clients/client1/web3/web/libs/Nette/exceptions.php |
/var/www/clients/client1/web3/web/libs/Nette/Framework.php |
/var/www/clients/client1/web3/web/libs/Nette/Object.php |
/var/www/clients/client1/web3/web/libs/Nette/ObjectMixin.php |
/var/www/clients/client1/web3/web/libs/Nette/Callback.php |
/var/www/clients/client1/web3/web/libs/Nette/Loaders/LimitedScope.php |
/var/www/clients/client1/web3/web/libs/Nette/Loaders/AutoLoader.php |
/var/www/clients/client1/web3/web/libs/Nette/Loaders/NetteLoader.php |
/var/www/clients/client1/web3/web/libs/Nette/Environment.php |
/var/www/clients/client1/web3/web/libs/Nette/Debug.php |
/var/www/clients/client1/web3/web/libs/Nette/Configurator.php |
/var/www/clients/client1/web3/web/libs/Nette/Config/Config.php |
/var/www/clients/client1/web3/web/libs/Nette/Collections/Hashtable.php |
/var/www/clients/client1/web3/web/libs/Nette/Collections/Collection.php |
/var/www/clients/client1/web3/web/libs/Nette/Collections/ICollection.php |
/var/www/clients/client1/web3/web/libs/Nette/Collections/IMap.php |
/var/www/clients/client1/web3/web/libs/Nette/Config/ConfigAdapterIni.php |
/var/www/clients/client1/web3/web/libs/Nette/Config/IConfigAdapter.php |
/var/www/clients/client1/web3/web/libs/Nette/Tools.php |
/var/www/clients/client1/web3/web/libs/Nette/ArrayTools.php |
/var/www/clients/client1/web3/web/libs/Nette/ServiceLocator.php |
/var/www/clients/client1/web3/web/libs/Nette/IServiceLocator.php |
/var/www/clients/client1/web3/web/libs/Nette/Application/Application.php |
/var/www/clients/client1/web3/web/libs/Nette/Loaders/RobotLoader.php |
/var/www/clients/client1/web3/web/libs/Nette/Caching/Cache.php |
/var/www/clients/client1/web3/web/libs/Nette/Caching/FileStorage.php |
/var/www/clients/client1/web3/web/libs/Nette/Caching/ICacheStorage.php |
/var/www/clients/client1/web3/web/libs/Nette/Web/Session.php |
/var/www/clients/client1/web3/web/libs/Nette/Web/HttpRequest.php |
/var/www/clients/client1/web3/web/libs/Nette/Web/IHttpRequest.php |
/var/www/clients/client1/web3/web/libs/Nette/Web/UriScript.php |
/var/www/clients/client1/web3/web/libs/Nette/Web/Uri.php |
/var/www/clients/client1/web3/web/libs/Nette/FreezableObject.php |
/var/www/clients/client1/web3/web/libs/Nette/String.php |
/var/www/clients/client1/web3/web/libs/Nette/Web/HttpResponse.php |
/var/www/clients/client1/web3/web/libs/Nette/Web/IHttpResponse.php |
/var/www/clients/client1/web3/web/app/core/BaseModel.php |
/var/www/clients/client1/web3/web/app/core/IModel.php |
/var/www/clients/client1/web3/web/app/core/plugins/Installable/Installable.php |
/var/www/clients/client1/web3/web/libs/dibi/dibi.php |
/var/www/clients/client1/web3/web/libs/dibi/Nette/IDebuggable.php |
/var/www/clients/client1/web3/web/libs/dibi/libs/interfaces.php |
/var/www/clients/client1/web3/web/libs/dibi/libs/DibiObject.php |
/var/www/clients/client1/web3/web/libs/dibi/libs/DibiException.php |
/var/www/clients/client1/web3/web/libs/dibi/libs/DibiConnection.php |
/var/www/clients/client1/web3/web/libs/dibi/libs/DibiResult.php |
/var/www/clients/client1/web3/web/libs/dibi/libs/DibiResultIterator.php |
/var/www/clients/client1/web3/web/libs/dibi/libs/DibiRow.php |
/var/www/clients/client1/web3/web/libs/dibi/libs/DibiTranslator.php |
/var/www/clients/client1/web3/web/libs/dibi/libs/DibiVariable.php |
/var/www/clients/client1/web3/web/libs/dibi/libs/DibiDataSource.php |
/var/www/clients/client1/web3/web/libs/dibi/libs/DibiFluent.php |
/var/www/clients/client1/web3/web/libs/dibi/libs/DibiDatabaseInfo.php |
/var/www/clients/client1/web3/web/libs/dibi/libs/DibiProfiler.php |
/var/www/clients/client1/web3/web/libs/dibi/drivers/mysql.php |
/var/www/clients/client1/web3/web/app/core/AdminConfig.php |
/var/www/clients/client1/web3/web/libs/Nette/Application/Presenter.php |
/var/www/clients/client1/web3/web/libs/Nette/Application/Control.php |
/var/www/clients/client1/web3/web/libs/Nette/Application/PresenterComponent.php |
/var/www/clients/client1/web3/web/libs/Nette/ComponentContainer.php |
/var/www/clients/client1/web3/web/libs/Nette/Component.php |
/var/www/clients/client1/web3/web/libs/Nette/IComponent.php |
/var/www/clients/client1/web3/web/libs/Nette/IComponentContainer.php |
/var/www/clients/client1/web3/web/libs/Nette/Application/ISignalReceiver.php |
/var/www/clients/client1/web3/web/libs/Nette/Application/IStatePersistent.php |
/var/www/clients/client1/web3/web/libs/Nette/Application/IRenderable.php |
/var/www/clients/client1/web3/web/libs/Nette/Application/IPresenter.php |
/var/www/clients/client1/web3/web/libs/Nette/Application/Routers/MultiRouter.php |
/var/www/clients/client1/web3/web/libs/Nette/Collections/ArrayList.php |
/var/www/clients/client1/web3/web/libs/Nette/Collections/IList.php |
/var/www/clients/client1/web3/web/libs/Nette/Application/IRouter.php |
/var/www/clients/client1/web3/web/app/core/plugins/SeoRouter/SimpleModulRoute.php |
/var/www/clients/client1/web3/web/app/core/plugins/SeoRouter/FrontModulRoute.php |
/var/www/clients/client1/web3/web/app/project/Language/models/Language.php |
/var/www/clients/client1/web3/web/libs/Nette/Reflection/ClassReflection.php |
/var/www/clients/client1/web3/web/libs/Nette/Reflection/PropertyReflection.php |
/var/www/clients/client1/web3/web/app/project/Page/models/Page.php |
/var/www/clients/client1/web3/web/app/core/plugins/Tree/AbstractTree.php |
/var/www/clients/client1/web3/web/app/core/LocalizedModel.php |
/var/www/clients/client1/web3/web/app/core/plugins/Tree/ITree.php |
/var/www/clients/client1/web3/web/libs/Nette/Forms/Form.php |
/var/www/clients/client1/web3/web/libs/Nette/Forms/FormContainer.php |
/var/www/clients/client1/web3/web/libs/Nette/Forms/INamingContainer.php |
/var/www/clients/client1/web3/web/app/project/Template/models/Template.php |
/var/www/clients/client1/web3/web/app/project/Modules/models/Modules.php |
/var/www/clients/client1/web3/web/libs/Nette/Application/PresenterRequest.php |
/var/www/clients/client1/web3/web/app/core/CmsPresenterLoader.php |
/var/www/clients/client1/web3/web/libs/Nette/Application/IPresenterLoader.php |
/var/www/clients/client1/web3/web/app/project/Page/Front/presenters/DefaultPresenter.php |
/var/www/clients/client1/web3/web/app/core/presenters/FrontPresenter.php |
/var/www/clients/client1/web3/web/app/core/presenters/BasePresenter.php |
/var/www/clients/client1/web3/web/libs/Nette/Application/PresenterComponentReflection.php |
/var/www/clients/client1/web3/web/libs/Nette/Reflection/AnnotationsParser.php |
/var/www/clients/client1/web3/web/app/project/Translator/models/Translator.php |
/var/www/clients/client1/web3/web/libs/Nette/ITranslator.php |
/var/www/clients/client1/web3/web/libs/Nette/Templates/Template.php |
/var/www/clients/client1/web3/web/libs/Nette/Templates/BaseTemplate.php |
/var/www/clients/client1/web3/web/libs/Nette/Templates/ITemplate.php |
/var/www/clients/client1/web3/web/libs/Nette/Templates/IFileTemplate.php |
/var/www/clients/client1/web3/web/libs/Nette/Reflection/MethodReflection.php |
/var/www/clients/client1/web3/web/libs/Nette/InstanceFilterIterator.php |
/var/www/clients/client1/web3/web/libs/Nette/Application/Exceptions/InvalidLinkException.php |
/var/www/clients/client1/web3/web/libs/Nette/Debug.templates/bluescreen.phtml |
PATH | string(60) "/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
|
---|---|
TEMP | string(33) "/var/www/clients/client1/web3/tmp"
|
TMPDIR | string(33) "/var/www/clients/client1/web3/tmp"
|
TMP | string(33) "/var/www/clients/client1/web3/tmp"
|
HOSTNAME | string(0) ""
|
USER | string(4) "web3"
|
HOME | string(29) "/var/www/clients/client1/web3"
|
FCGI_ROLE | string(9) "RESPONDER"
|
QUERY_STRING | string(0) ""
|
REQUEST_METHOD | string(3) "GET"
|
CONTENT_TYPE | string(0) ""
|
CONTENT_LENGTH | string(0) ""
|
SCRIPT_NAME | string(10) "/index.php"
|
REQUEST_URI | string(12) "/sitemap.xml"
|
DOCUMENT_URI | string(10) "/index.php"
|
DOCUMENT_ROOT | string(30) "/var/www/petrklicvsetin.cz/web"
|
SERVER_PROTOCOL | string(8) "HTTP/2.0"
|
REQUEST_SCHEME | string(5) "https"
|
HTTPS | string(2) "on"
|
GATEWAY_INTERFACE | string(7) "CGI/1.1"
|
SERVER_SOFTWARE | string(12) "nginx/1.14.2"
|
REMOTE_ADDR | string(11) "3.21.126.72"
|
REMOTE_PORT | string(5) "56178"
|
SERVER_ADDR | string(14) "89.221.215.203"
|
SERVER_PORT | string(3) "443"
|
SERVER_NAME | string(17) "petrklicvsetin.cz"
|
REDIRECT_STATUS | string(3) "200"
|
SCRIPT_FILENAME | string(40) "/var/www/petrklicvsetin.cz/web/index.php"
|
HTTP_HOST | string(17) "petrklicvsetin.cz"
|
HTTP_ACCEPT | string(3) "*/*"
|
HTTP_USER_AGENT | string(103) "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)"
|
HTTP_ACCEPT_ENCODING | string(23) "gzip, br, zstd, deflate"
|
PHP_SELF | string(10) "/index.php"
|
REQUEST_TIME_FLOAT | float(1746151658.4218)
|
REQUEST_TIME | int(1746151658)
|
empty
empty
empty
Set-Cookie: PHPSESSID=r5ilnfhi78m4khb744els5f9h6; path=/; HttpOnly
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma: no-cache
Set-Cookie: PHPSESSID=r5ilnfhi78m4khb744els5f9h6; path=/; httponly
Set-Cookie: nette-browser=0.069717631712911; path=/; httponly
X-Powered-By: Nette Framework
Content-type: text/html; charset=UTF-8