MySQL server has gone away
File: /var/www/kreatura/data/www/watchdeluxe.sk/www/libs/dibi/drivers/mysql.php Line: 162
Line 155: if ($this->buffered) {
Line 156: $this->resultSet = @mysql_query($sql, $this->connection); // intentionally @
Line 157: } else {
Line 158: $this->resultSet = @mysql_unbuffered_query($sql, $this->connection); // intentionally @
Line 159: }
Line 160:
Line 161: if (mysql_errno($this->connection)) {
Line 162: throw new DibiDriverException(mysql_error($this->connection), mysql_errno($this->connection), $sql);
Line 163: }
Line 164:
Line 165: return is_resource($this->resultSet) ? clone $this : NULL;
Line 166: }
Line 167:
Line 168:
Line 169:
libs/DibiConnection.php (319) source ► DibiMySqlDriver-> query (arguments ►)
$sql | string(67) "SELECT * FROM `db_structure` WHERE id_parent IS NULL AND lang='cz'"
|
---|
Line 312: );
Line 313: $event = $events[strtoupper($matches[1])];
Line 314: }
Line 315: $ticket = $this->profiler->before($this, $event, $sql);
Line 316: }
Line 317:
Line 318: dibi::$sql = $sql;
Line 319: if ($res = $this->driver->query($sql)) { // intentionally =
Line 320: $res = new DibiResult($res, $this->config);
Line 321: } else {
Line 322: $res = $this->driver->getAffectedRows();
Line 323: }
Line 324:
Line 325: if (isset($ticket)) {
Line 326: $this->profiler->after($ticket, $res);
libs/DibiConnection.php (237) source ► DibiConnection-> nativeQuery (arguments ►)
$sql | string(67) "SELECT * FROM `db_structure` WHERE id_parent IS NULL AND lang='cz'"
|
---|
Line 230: * @throws DibiException
Line 231: */
Line 232: final public function query($args)
Line 233: {
Line 234: $args = func_get_args();
Line 235: $this->connect();
Line 236: $translator = new DibiTranslator($this->driver);
Line 237: return $this->nativeQuery($translator->translate($args));
Line 238: }
Line 239:
Line 240:
Line 241:
Line 242: /**
Line 243: * Generates and returns SQL query.
Line 244: * @param array|mixed one or more arguments
libs/DibiFluent.php (271) source ► DibiConnection-> query (arguments ►)
$args | array(11) ► |
---|
Line 264: * Generates and executes SQL query.
Line 265: * @param mixed what to return?
Line 266: * @return DibiResult|int result set object (if any)
Line 267: * @throws DibiException
Line 268: */
Line 269: public function execute($return = NULL)
Line 270: {
Line 271: $res = $this->connection->query($this->_export());
Line 272: return $return === dibi::IDENTIFIER ? $this->connection->getInsertId() : $res;
Line 273: }
Line 274:
Line 275:
Line 276:
Line 277: /**
Line 278: * Generates, executes SQL query and fetches the single row.
models/StructureBaseNodeModel.php (324) source ► DibiFluent-> execute ()
Line 317: if(isset($cache['getRootNode'])){
Line 318: return $cache['getRootNode'];
Line 319: } else {
Line 320: //return $cache->save('getRootNode',(($row=$sql->execute()->fetch())?(new StructureBaseNodeModel($row)):(self::createRootNode($lang))));
Line 321: return $cache->save('getRootNode',(($row=$sql->execute()->fetch())?(new StructureBaseNodeModel($row)):(NULL)));
Line 322: };
Line 323: } else {
Line 324: return (($row=$sql->execute()->fetch())?(new StructureBaseNodeModel($row)):(NULL));
Line 325: };
Line 326: /*
Line 327: } else {
Line 328: throw new InvalidArgumentException('Expected id_node of type integer or NULL.');
Line 329: };
Line 330: */
Line 331: }
presenters/BasePresenter.php (50) source ► StructureBaseNodeModel:: getRootNode (arguments ►)
$lang | string(2) "cz"
|
---|
Line 43: };
Line 44: $loggedAdminUser = Environment::getUser()->setNamespace('Admin');
Line 45: $this->template->loggedAdminUser=(($loggedAdminUser->isAuthenticated())?($loggedAdminUser):(NULL));
Line 46:
Line 47: $this->webConfig=Environment::getConfig('web')->{$this->lang};
Line 48: setlocale(LC_ALL, $this->webConfig->locale);
Line 49:
Line 50: $this->template->rootNode=StructureBaseNodeModel::getRootNode($this->lang);
Line 51: $this->template->rootNode->loadChildNodes();
Line 52: $this->template->meta=(object)array('description'=>$this->template->rootNode->meta_description,'keywords'=>$this->template->rootNode->meta_keywords);
Line 53:
Line 54: // $this->template->boxes=BannerModel::getByNode($this->template->rootNode->id_node, array('data'=>true));
Line 55: }
Line 56:
Line 57: protected function beforeRender(){
Application/Presenter.php (172) source ► BasePresenter-> 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 (145) source ► Presenter-> run (arguments ►)
$request | object(PresenterRequest) (7) ► |
---|
Line 138: } catch (InvalidPresenterException $e) {
Line 139: throw new BadRequestException($e->getMessage(), 404, $e);
Line 140: }
Line 141: $request->freeze();
Line 142:
Line 143: // Execute presenter
Line 144: $this->presenter = new $class;
Line 145: $response = $this->presenter->run($request);
Line 146:
Line 147: // Send response
Line 148: if ($response instanceof ForwardingResponse) {
Line 149: $request = $response->getRequest();
Line 150: continue;
Line 151:
Line 152: } elseif ($response instanceof IPresenterResponse) {
app/bootstrap.php (134) source ► Application-> run ()
Line 127: if (preg_match('/bot|crawl|slurp|spider|wget|nagios/i', (string) filter_input(INPUT_SERVER, 'HTTP_USER_AGENT')) === 1) {
Line 128: register_shutdown_function(function () {
Line 129: if (session_status() === PHP_SESSION_ACTIVE) { session_destroy(); }
Line 130: });
Line 131: }
Line 132:
Line 133: // Step 5: Run the application!
Line 134: $application->run();
Line 135:
www/index.php (14) source ► require (arguments ►)
#0 | string(63) "/var/www/kreatura/data/www/watchdeluxe.sk/www/app/bootstrap.php"
|
---|
Line 7:
Line 8: // absolute filesystem path to the libraries
Line 9: define('LIBS_DIR',WWW_DIR.'/libs');
Line 10:
Line 11: require WWW_DIR . '/vendor/autoload.php';
Line 12:
Line 13: // load bootstrap file
Line 14: require(APP_DIR.'/bootstrap.php');
Line 15:
Line 16: ?>
array(1) ▼ {
0 => object(PresenterRequest) (7) ► {
"method" private => string(4) "HEAD"
"flags" private => array(1) ▼ {
"secured" => bool(FALSE)
}
"name" private => string(12) "HomepageNode"
"params" private => array(2) ▼ {
"action" => string(7) "default"
"lang" => string(2) "cz"
}
"post" private => array(0)
"files" private => array(0)
"frozen" private => bool(TRUE)
}
}
object(HomepageNodePresenter) (34) ► {
"backlink" => NULL
"lang" => string(2) "cz"
"translator" => object(GettextTranslator) (5) ▼ {
"locale" => NULL
"endian" private => bool(FALSE)
"file" protected => resource of type(stream)
"dictionary" protected => array(48) ► {
"Byli jste přhlášeni do newsletteru." => object(Word) (2) {
...
}
"Další hodinky" => object(Word) (2) {
...
}
"Další novinky" => object(Word) (2) {
...
}
"Další prodejna" => object(Word) (2) {
...
}
"Detail" => object(Word) (2) {
...
}
"DÁMSKÉ" => object(Word) (2) {
...
}
"E-mail" => object(Word) (2) {
...
}
"E-mail *" => object(Word) (2) {
...
}
"E-mailová adresa musí být správná." => object(Word) (2) {
...
}
"HLEDAT" => object(Word) (2) {
...
}
"Hledat" => object(Word) (2) {
...
}
"Jméno" => object(Word) (2) {
...
}
"Jméno *" => object(Word) (2) {
...
}
"Kontaktní formulář" => object(Word) (2) {
...
}
"MENU" => object(Word) (2) {
...
}
"Mapa" => object(Word) (2) {
...
}
"Menu" => object(Word) (2) {
...
}
"Máte dotaz?" => object(Word) (2) {
...
}
"NABÍZENÉ ZNAČKY PRODUKTŮ" => object(Word) (2) {
...
}
"NOVINKY ZE SVĚTA WATCH DE LUXE" => object(Word) (2) {
...
}
"Na prodejně zakoupíte značky" => object(Word) (2) {
...
}
"Naše prodejny" => object(Word) (2) {
...
}
"Odeslat" => object(Word) (2) {
...
}
"Odeslat >" => object(Word) (2) {
...
}
"Pole označená * jsou povinná" => object(Word) (2) {
...
}
"PÁNSKÉ" => object(Word) (2) {
...
}
"Předchozí hodinky" => object(Word) (2) {
...
}
"Předchozí prodejna" => object(Word) (2) {
...
}
"Přihlaste se k odběru newsletteru" => object(Word) (2) {
...
}
"Souhlasím se zasíláním newsletteru" => object(Word) (2) {
...
}
"Telefon" => object(Word) (2) {
...
}
"Text zprávy *" => object(Word) (2) {
...
}
"Vyberte prodejnu podle značky" => object(Word) (2) {
...
}
"Vyhledávání" => object(Word) (2) {
...
}
"Váše dotaz byl úspěšně odeslán." => object(Word) (2) {
...
}
"VŠE" => object(Word) (2) {
...
}
"Všechny značky" => object(Word) (2) {
...
}
"ZNAČKU MŮŽETE KOUPIT V TĚCHTO PRODEJNÁCH:" => object(Word) (2) {
...
}
"Zadejte vaše jméno." => object(Word) (2) {
...
}
"Zadejte vaši zprávu." => object(Word) (2) {
...
}
"Zadejte váš e-mail." => object(Word) (2) {
...
}
"Zobrazit kolekce" => object(Word) (2) {
...
}
"Zobrazit více" => object(Word) (2) {
...
}
"Zobrazit všechny" => object(Word) (2) {
...
}
"Zpráva" => object(Word) (2) {
...
}
"Zpět na kolekci" => object(Word) (2) {
...
}
"více" => object(Word) (2) {
...
}
"Úvod" => object(Word) (2) {
...
}
}
"meta" protected => array(19) ► {
"Project-Id-Version" => string(8) "beArtCom"
"Report-Msgid-Bugs-To" => string(0) ""
"POT-Creation-Date" => string(21) "2014-09-24 18:11+0100"
"PO-Revision-Date" => string(21) "2016-05-02 10:11+0100"
"Last-Translator" => string(12) "Martin Lojda"
"Language-Team" => string(8) "Kreatura"
"Language" => string(5) "cs_CZ"
"MIME-Version" => string(3) "1.0"
"Content-Type" => string(25) "text/plain; charset=UTF-8"
"Content-Transfer-Encoding" => string(4) "8bit"
"X-Poedit-KeywordsList" => string(22) "_;gettext;gettext_noop"
"X-Poedit-Basepath" => string(1) "."
"X-Poedit-SourceCharset" => string(5) "UTF-8"
"Plural-Forms" => string(55) "nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4 ? 1 : 2);"
"X-Generator" => string(12) "Poedit 1.5.5"
"X-Poedit-SearchPath-0" => string(12) "../templates"
"X-Poedit-SearchPath-1" => string(13) "../presenters"
"X-Poedit-SearchPath-2" => string(9) "../models"
"X-Poedit-SearchPath-3" => string(13) "../components"
}
}
"loggedUser" protected => NULL
"oldLayoutMode" => bool(FALSE)
"oldModuleMode" => bool(FALSE)
"webConfig" protected => object(Config) (4) ▼ {
"locale" => string(11) "cs_CZ.UTF-8"
"aktualityNode" => string(1) "3"
"prodejnyNode" => string(2) "14"
"smallmenu" => object(Config) (2) ▼ {
"0" => string(2) "13"
"1" => string(2) "14"
}
}
"onShutdown" => NULL
"request" private => object(PresenterRequest) (7) ► {
"method" private => string(4) "HEAD"
"flags" private => array(1) ▼ {
"secured" => bool(FALSE)
}
"name" private => string(12) "HomepageNode"
"params" private => array(2) ▼ {
"action" => string(7) "default"
"lang" => string(2) "cz"
}
"post" private => array(0)
"files" private => array(0)
"frozen" private => bool(TRUE)
}
"response" private => NULL
"phase" private => int(1)
"autoCanonicalize" => bool(TRUE)
"absoluteUrls" => bool(FALSE)
"globalParams" private => array(0)
"globalState" private => NULL
"globalStateSinces" private => NULL
"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 => NULL
"lastCreatedRequestFlag" private => NULL
"template" private => object(Template) (7) ► {
"file" private => NULL
"warnOnUndefined" => bool(TRUE)
"onPrepareFilters" => array(1) ▼ {
0 => array(2) {
...
}
}
"params" private => array(10) ► {
"component" => object(HomepageNodePresenter) (34) {
*RECURSION*
}
"control" => object(HomepageNodePresenter) (34) {
*RECURSION*
}
"presenter" => object(HomepageNodePresenter) (34) {
*RECURSION*
}
"baseUri" => string(1) "/"
"basePath" => string(0) ""
"flashes" => array(0)
"langs" => array(1) {
...
}
"lang" => string(2) "cz"
"isHP" => bool(FALSE)
"loggedAdminUser" => NULL
}
"filters" private => array(0)
"helpers" private => array(11) ► {
"escape" => object(Callback) (1) {
...
}
"escapeurl" => object(Callback) (1) {
...
}
"striptags" => object(Callback) (1) {
...
}
"nl2br" => object(Callback) (1) {
...
}
"substr" => object(Callback) (1) {
...
}
"repeat" => object(Callback) (1) {
...
}
"implode" => object(Callback) (1) {
...
}
"number" => object(Callback) (1) {
...
}
"wysiwyg" => object(Callback) (1) {
...
}
"image" => object(Callback) (1) {
...
}
"url2link" => object(Callback) (1) {
...
}
}
"helperLoaders" private => array(1) ▼ {
0 => object(Callback) (1) {
...
}
}
}
"invalidSnippets" private => array(0)
"params" protected => array(2) ▼ {
"action" => string(7) "default"
"lang" => string(2) "cz"
}
"components" private => array(0)
"cloning" private => NULL
"parent" private => NULL
"name" private => string(12) "HomepageNode"
"monitors" private => array(1) ▼ {
"Presenter" => array(4) ▼ {
0 => NULL
1 => NULL
2 => NULL
3 => bool(TRUE)
}
}
}
WWW_DIR | string(45) "/var/www/kreatura/data/www/watchdeluxe.sk/www"
|
---|---|
APP_DIR | string(49) "/var/www/kreatura/data/www/watchdeluxe.sk/www/app"
|
LIBS_DIR | string(50) "/var/www/kreatura/data/www/watchdeluxe.sk/www/libs"
|
/var/www/kreatura/data/www/watchdeluxe.sk/www/index.php |
/var/www/kreatura/data/www/watchdeluxe.sk/www/vendor/autoload.php |
/var/www/kreatura/data/www/watchdeluxe.sk/www/vendor/composer/autoload_real.php |
/var/www/kreatura/data/www/watchdeluxe.sk/www/vendor/composer/ClassLoader.php |
/var/www/kreatura/data/www/watchdeluxe.sk/www/vendor/composer/autoload_static.php |
/var/www/kreatura/data/www/watchdeluxe.sk/www/vendor/guzzlehttp/psr7/src/functions_include.php |
/var/www/kreatura/data/www/watchdeluxe.sk/www/vendor/guzzlehttp/psr7/src/functions.php |
/var/www/kreatura/data/www/watchdeluxe.sk/www/vendor/guzzlehttp/promises/src/functions_include.php |
/var/www/kreatura/data/www/watchdeluxe.sk/www/vendor/guzzlehttp/promises/src/functions.php |
/var/www/kreatura/data/www/watchdeluxe.sk/www/vendor/guzzlehttp/guzzle/src/functions_include.php |
/var/www/kreatura/data/www/watchdeluxe.sk/www/vendor/guzzlehttp/guzzle/src/functions.php |
/var/www/kreatura/data/www/watchdeluxe.sk/www/app/bootstrap.php |
/var/www/kreatura/data/www/watchdeluxe.sk/www/libs/Nette/loader.php |
/var/www/kreatura/data/www/watchdeluxe.sk/www/libs/Nette/exceptions.php |
/var/www/kreatura/data/www/watchdeluxe.sk/www/libs/Nette/Framework.php |
/var/www/kreatura/data/www/watchdeluxe.sk/www/libs/Nette/Object.php |
/var/www/kreatura/data/www/watchdeluxe.sk/www/libs/Nette/ObjectMixin.php |
/var/www/kreatura/data/www/watchdeluxe.sk/www/libs/Nette/Callback.php |
/var/www/kreatura/data/www/watchdeluxe.sk/www/libs/Nette/Loaders/LimitedScope.php |
/var/www/kreatura/data/www/watchdeluxe.sk/www/libs/Nette/Loaders/AutoLoader.php |
/var/www/kreatura/data/www/watchdeluxe.sk/www/libs/Nette/Loaders/NetteLoader.php |
/var/www/kreatura/data/www/watchdeluxe.sk/www/libs/Nette/Debug.php |
/var/www/kreatura/data/www/watchdeluxe.sk/www/libs/Nette/Environment.php |
/var/www/kreatura/data/www/watchdeluxe.sk/www/libs/Nette/Configurator.php |
/var/www/kreatura/data/www/watchdeluxe.sk/www/libs/Nette/Config/Config.php |
/var/www/kreatura/data/www/watchdeluxe.sk/www/libs/Nette/Collections/Hashtable.php |
/var/www/kreatura/data/www/watchdeluxe.sk/www/libs/Nette/Collections/Collection.php |
/var/www/kreatura/data/www/watchdeluxe.sk/www/libs/Nette/Collections/ICollection.php |
/var/www/kreatura/data/www/watchdeluxe.sk/www/libs/Nette/Collections/IMap.php |
/var/www/kreatura/data/www/watchdeluxe.sk/www/libs/Nette/Config/ConfigAdapterIni.php |
/var/www/kreatura/data/www/watchdeluxe.sk/www/libs/Nette/Config/IConfigAdapter.php |
/var/www/kreatura/data/www/watchdeluxe.sk/www/libs/Nette/Tools.php |
/var/www/kreatura/data/www/watchdeluxe.sk/www/libs/Nette/ArrayTools.php |
/var/www/kreatura/data/www/watchdeluxe.sk/www/libs/Nette/ServiceLocator.php |
/var/www/kreatura/data/www/watchdeluxe.sk/www/libs/Nette/IServiceLocator.php |
/var/www/kreatura/data/www/watchdeluxe.sk/www/libs/Nette/Loaders/RobotLoader.php |
/var/www/kreatura/data/www/watchdeluxe.sk/www/libs/Nette/Caching/Cache.php |
/var/www/kreatura/data/www/watchdeluxe.sk/www/libs/Nette/Caching/FileStorage.php |
/var/www/kreatura/data/www/watchdeluxe.sk/www/libs/Nette/Caching/ICacheStorage.php |
/var/www/kreatura/data/www/watchdeluxe.sk/www/libs/Nette/Reflection/ClassReflection.php |
/var/www/kreatura/data/www/watchdeluxe.sk/www/libs/Nette/Reflection/AnnotationsParser.php |
/var/www/kreatura/data/www/watchdeluxe.sk/www/libs/Nette/Web/Session.php |
/var/www/kreatura/data/www/watchdeluxe.sk/www/libs/Nette/Application/Application.php |
/var/www/kreatura/data/www/watchdeluxe.sk/www/libs/dibi/dibi.php |
/var/www/kreatura/data/www/watchdeluxe.sk/www/libs/dibi/Nette/IDebugPanel.php |
/var/www/kreatura/data/www/watchdeluxe.sk/www/libs/dibi/Nette/DateTime53.php |
/var/www/kreatura/data/www/watchdeluxe.sk/www/libs/dibi/libs/interfaces.php |
/var/www/kreatura/data/www/watchdeluxe.sk/www/libs/dibi/libs/DibiObject.php |
/var/www/kreatura/data/www/watchdeluxe.sk/www/libs/dibi/libs/DibiException.php |
/var/www/kreatura/data/www/watchdeluxe.sk/www/libs/dibi/libs/DibiConnection.php |
/var/www/kreatura/data/www/watchdeluxe.sk/www/libs/dibi/libs/DibiResult.php |
/var/www/kreatura/data/www/watchdeluxe.sk/www/libs/dibi/libs/DibiResultIterator.php |
/var/www/kreatura/data/www/watchdeluxe.sk/www/libs/dibi/libs/DibiRow.php |
/var/www/kreatura/data/www/watchdeluxe.sk/www/libs/dibi/libs/DibiTranslator.php |
/var/www/kreatura/data/www/watchdeluxe.sk/www/libs/dibi/libs/DibiDataSource.php |
/var/www/kreatura/data/www/watchdeluxe.sk/www/libs/dibi/libs/DibiFluent.php |
/var/www/kreatura/data/www/watchdeluxe.sk/www/libs/dibi/libs/DibiDatabaseInfo.php |
/var/www/kreatura/data/www/watchdeluxe.sk/www/libs/dibi/libs/DibiProfiler.php |
/var/www/kreatura/data/www/watchdeluxe.sk/www/libs/dibi/drivers/mysql.php |
/var/www/kreatura/data/www/watchdeluxe.sk/www/libs/Nette/Application/Routers/MultiRouter.php |
/var/www/kreatura/data/www/watchdeluxe.sk/www/libs/Nette/Collections/ArrayList.php |
/var/www/kreatura/data/www/watchdeluxe.sk/www/libs/Nette/Collections/IList.php |
/var/www/kreatura/data/www/watchdeluxe.sk/www/libs/Nette/Application/IRouter.php |
/var/www/kreatura/data/www/watchdeluxe.sk/www/libs/Nette/Application/Routers/Route.php |
/var/www/kreatura/data/www/watchdeluxe.sk/www/libs/mlCMS/models/StructureNodesRoute.php |
/var/www/kreatura/data/www/watchdeluxe.sk/www/libs/Nette/Web/HttpRequest.php |
/var/www/kreatura/data/www/watchdeluxe.sk/www/libs/Nette/Web/IHttpRequest.php |
/var/www/kreatura/data/www/watchdeluxe.sk/www/libs/Nette/Web/HttpResponse.php |
/var/www/kreatura/data/www/watchdeluxe.sk/www/libs/Nette/Web/IHttpResponse.php |
/var/www/kreatura/data/www/watchdeluxe.sk/www/libs/Nette/Web/UriScript.php |
/var/www/kreatura/data/www/watchdeluxe.sk/www/libs/Nette/Web/Uri.php |
/var/www/kreatura/data/www/watchdeluxe.sk/www/libs/Nette/FreezableObject.php |
/var/www/kreatura/data/www/watchdeluxe.sk/www/libs/Nette/String.php |
/var/www/kreatura/data/www/watchdeluxe.sk/www/libs/Nette/Reflection/PropertyReflection.php |
/var/www/kreatura/data/www/watchdeluxe.sk/www/libs/Nette/Application/PresenterRequest.php |
/var/www/kreatura/data/www/watchdeluxe.sk/www/libs/Nette/Application/PresenterLoader.php |
/var/www/kreatura/data/www/watchdeluxe.sk/www/libs/Nette/Application/IPresenterLoader.php |
/var/www/kreatura/data/www/watchdeluxe.sk/www/app/presenters/HomepageNodePresenter.php |
/var/www/kreatura/data/www/watchdeluxe.sk/www/app/presenters/BasePresenter.php |
/var/www/kreatura/data/www/watchdeluxe.sk/www/libs/Nette/Application/Presenter.php |
/var/www/kreatura/data/www/watchdeluxe.sk/www/libs/Nette/Application/Control.php |
/var/www/kreatura/data/www/watchdeluxe.sk/www/libs/Nette/Application/PresenterComponent.php |
/var/www/kreatura/data/www/watchdeluxe.sk/www/libs/Nette/ComponentContainer.php |
/var/www/kreatura/data/www/watchdeluxe.sk/www/libs/Nette/Component.php |
/var/www/kreatura/data/www/watchdeluxe.sk/www/libs/Nette/IComponent.php |
/var/www/kreatura/data/www/watchdeluxe.sk/www/libs/Nette/IComponentContainer.php |
/var/www/kreatura/data/www/watchdeluxe.sk/www/libs/Nette/Application/ISignalReceiver.php |
/var/www/kreatura/data/www/watchdeluxe.sk/www/libs/Nette/Application/IStatePersistent.php |
/var/www/kreatura/data/www/watchdeluxe.sk/www/libs/Nette/Application/IRenderable.php |
/var/www/kreatura/data/www/watchdeluxe.sk/www/libs/Nette/Application/IPresenter.php |
/var/www/kreatura/data/www/watchdeluxe.sk/www/libs/Nette/Application/PresenterComponentReflection.php |
/var/www/kreatura/data/www/watchdeluxe.sk/www/libs/Nette/Templates/Template.php |
/var/www/kreatura/data/www/watchdeluxe.sk/www/libs/Nette/Templates/BaseTemplate.php |
/var/www/kreatura/data/www/watchdeluxe.sk/www/libs/Nette/Templates/ITemplate.php |
/var/www/kreatura/data/www/watchdeluxe.sk/www/libs/Nette/Templates/IFileTemplate.php |
/var/www/kreatura/data/www/watchdeluxe.sk/www/libs/GettextTranslator/GettextTranslator.php |
/var/www/kreatura/data/www/watchdeluxe.sk/www/libs/Nette/ITranslator.php |
/var/www/kreatura/data/www/watchdeluxe.sk/www/libs/Nette/Web/User.php |
/var/www/kreatura/data/www/watchdeluxe.sk/www/libs/Nette/Web/IUser.php |
/var/www/kreatura/data/www/watchdeluxe.sk/www/libs/Nette/Web/SessionNamespace.php |
/var/www/kreatura/data/www/watchdeluxe.sk/www/libs/mlCMS/models/StructureBaseNodeModel.php |
/var/www/kreatura/data/www/watchdeluxe.sk/www/libs/ml/models/MLDatabaseContainerObject.php |
/var/www/kreatura/data/www/watchdeluxe.sk/www/libs/ml/models/MLContainerObject.php |
/var/www/kreatura/data/www/watchdeluxe.sk/www/libs/Nette/Debug.templates/bluescreen.phtml |
PATH | string(49) "/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin"
|
---|---|
SCRIPT_NAME | string(10) "/index.php"
|
REQUEST_URI | string(1) "/"
|
QUERY_STRING | string(0) ""
|
REQUEST_METHOD | string(4) "HEAD"
|
SERVER_PROTOCOL | string(8) "HTTP/1.1"
|
GATEWAY_INTERFACE | string(7) "CGI/1.1"
|
REDIRECT_URL | string(1) "/"
|
REMOTE_PORT | string(5) "39954"
|
SCRIPT_FILENAME | string(55) "/var/www/kreatura/data/www/watchdeluxe.sk/www/index.php"
|
SERVER_ADMIN | string(24) "webmaster@watchdeluxe.sk"
|
CONTEXT_DOCUMENT_ROOT | string(45) "/var/www/kreatura/data/www/watchdeluxe.sk/www"
|
CONTEXT_PREFIX | string(0) ""
|
REQUEST_SCHEME | string(4) "http"
|
DOCUMENT_ROOT | string(45) "/var/www/kreatura/data/www/watchdeluxe.sk/www"
|
REMOTE_ADDR | string(14) "69.162.124.231"
|
SERVER_PORT | string(2) "80"
|
SERVER_ADDR | string(12) "77.93.193.13"
|
SERVER_NAME | string(18) "www.watchdeluxe.sk"
|
SERVER_SOFTWARE | string(68) "Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips mod_fcgid/2.3.9 PHP/5.6.40"
|
SERVER_SIGNATURE | string(0) ""
|
CONTENT_LENGTH | string(1) "0"
|
HTTP_ACCEPT_ENCODING | string(13) "gzip, deflate"
|
HTTP_HOST | string(18) "www.watchdeluxe.sk"
|
HTTP_REFERER | string(26) "http://www.watchdeluxe.sk/"
|
HTTP_CACHE_CONTROL | string(8) "no-cache"
|
HTTP_CONNECTION | string(5) "close"
|
HTTP_ACCEPT_CHARSET | string(30) "ISO-8859-1,UTF-8;q=0.7,*;q=0.7"
|
HTTP_ACCEPT_LANGUAGE | string(14) "en-US,en;q=0.8"
|
HTTP_ACCEPT | string(63) "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8"
|
HTTP_USER_AGENT | string(70) "Mozilla/5.0+(compatible; UptimeRobot/2.0; http://www.uptimerobot.com/)"
|
PERL5LIB | string(49) "/usr/share/awstats/lib:/usr/share/awstats/plugins"
|
UNIQUE_ID | string(27) "XukbHe7dNix1MGN2n1flswAAAFY"
|
REDIRECT_STATUS | string(3) "200"
|
REDIRECT_PERL5LIB | string(49) "/usr/share/awstats/lib:/usr/share/awstats/plugins"
|
REDIRECT_UNIQUE_ID | string(27) "XukbHe7dNix1MGN2n1flswAAAFY"
|
FCGI_ROLE | string(9) "RESPONDER"
|
PHP_SELF | string(10) "/index.php"
|
REQUEST_TIME_FLOAT | float(1592335133,3899)
|
REQUEST_TIME | int(1592335133)
|
Content-Length | 0 |
---|---|
Accept-Encoding | gzip, deflate |
Host | www.watchdeluxe.sk |
Referer | http://www.watchdeluxe.sk/ |
Cache-Control | no-cache |
Connection | close |
Accept-Charset | ISO-8859-1,UTF-8;q=0.7,*;q=0.7 |
Accept-Language | en-US,en;q=0.8 |
Accept | text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 |
User-Agent | Mozilla/5.0+(compatible; UptimeRobot/2.0; http://www.uptimerobot.com/) |
empty
empty
empty
X-Powered-By: Nette Framework
Set-Cookie: mlCMS-wdl=nmp8run45in42s01fcck0dmju6; 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: mlCMS-wdl=nmp8run45in42s01fcck0dmju6; path=/; httponly
Set-Cookie: nette-browser=0.65770318615118; path=/; httponly