Disclaimer: By using this website, you agree to the Terms and Conditions of Use (last updated 31.10.2015).
×SQLSTATE[08S01]: Communication link failure: 1053 Server shutdown in progress search►
SELECT DISTINCT `cores` FROM `dnb_catalogue_item` WHERE (`locale` = ?)
File: /var/www/clients/client373/web726/web/libs/Nette/Database/Statement.php Line: 99
89: static $types = array('boolean' => PDO::PARAM_BOOL, 'integer' => PDO::PARAM_INT, 90: 'resource' => PDO::PARAM_LOB, 'NULL' => PDO::PARAM_NULL); 91: 92: foreach ($params as $key => $value) { 93: $type = gettype($value); 94: $this->bindValue(is_int($key) ? $key + 1 : $key, $value, isset($types[$type]) ? $types[$type] : PDO::PARAM_STR); 95: } 96: 97: $time = microtime(TRUE); 98: try { 99: parent::execute(); 100: } catch (\PDOException $e) { 101: $e->queryString = $this->queryString; 102: throw $e; 103: }
/var/www/clients/client373/web726/web/libs/Nette/Database/Statement.php:99 source ► PDOStatement-> execute ()
89: static $types = array('boolean' => PDO::PARAM_BOOL, 'integer' => PDO::PARAM_INT, 90: 'resource' => PDO::PARAM_LOB, 'NULL' => PDO::PARAM_NULL); 91: 92: foreach ($params as $key => $value) { 93: $type = gettype($value); 94: $this->bindValue(is_int($key) ? $key + 1 : $key, $value, isset($types[$type]) ? $types[$type] : PDO::PARAM_STR); 95: } 96: 97: $time = microtime(TRUE); 98: try { 99: parent::execute(); 100: } catch (\PDOException $e) { 101: $e->queryString = $this->queryString; 102: throw $e; 103: }
/var/www/clients/client373/web726/web/libs/Nette/Database/Connection.php:155 source ► Nette\Database\Statement-> execute (arguments ►)
| $params | array(1) ▼ |
|---|
145: { 146: foreach ($params as $value) { 147: if (is_array($value) || is_object($value)) { 148: $need = TRUE; break; 149: } 150: } 151: if (isset($need) && $this->preprocessor !== NULL) { 152: list($statement, $params) = $this->preprocessor->process($statement, $params); 153: } 154: 155: return $this->prepare($statement)->execute($params); 156: } 157: 158: 159: /********************* shortcuts ****************d*g**/
/var/www/clients/client373/web726/web/libs/Nette/Database/Table/Selection.php:513 source ► Nette\Database\Connection-> queryArgs (arguments ►)
| $statement | "SELECT DISTINCT `cores` FROM `dnb_catalogue_item` WHERE (`locale` = ?)" (70)
|
|---|---|
| $params | array(1) ▼ |
503: 504: 505: protected function createGroupedSelectionInstance($table, $column) 506: { 507: return new GroupedSelection($this, $table, $column); 508: } 509: 510: 511: protected function query($query) 512: { 513: return $this->connection->queryArgs($query, $this->sqlBuilder->getParameters()); 514: } 515: 516: 517: protected function emptyResultSet()
/var/www/clients/client373/web726/web/libs/Nette/Database/Table/Selection.php:462 source ► Nette\Database\Table\Selection-> query (arguments ►)
| $query | "SELECT DISTINCT `cores` FROM `dnb_catalogue_item` WHERE (`locale` = ?)" (70)
|
|---|
452: 453: protected function execute() 454: { 455: if ($this->rows !== NULL) { 456: return; 457: } 458: 459: $this->observeCache = $this; 460: 461: try { 462: $result = $this->query($this->getSql()); 463: 464: } catch (\PDOException $exception) { 465: if (!$this->sqlBuilder->getSelect() && $this->previousAccessedColumns) { 466: $this->previousAccessedColumns = FALSE;
/var/www/clients/client373/web726/web/libs/Nette/Database/Table/Selection.php:754 source ► Nette\Database\Table\Selection-> execute ()
744: $clone->setActive($active); 745: return $clone; 746: } 747: 748: 749: /********************* interface Iterator ****************d*g**/ 750: 751: 752: public function rewind() 753: { 754: $this->execute(); 755: $this->keys = array_keys($this->data); 756: reset($this->keys); 757: } 758:
/var/www/clients/client373/web726/web/app/model/CatalogueCommon.php:171 source ► Nette\Database\Table\Selection-> rewind ()
161: } 162: 163: // get selection 164: $locale = strtoupper($locale); 165: $selection = $this->connection->table(CatalogueRepository::TABLE_ITEM) 166: ->select("DISTINCT $name") 167: ->where(array('locale' => $locale)); 168: 169: // fetch column into array 170: $values = array(); 171: foreach ($selection as $row) { 172: $values[] = $row->$name; 173: } 174: 175: // use natural sorting on the result
/var/www/clients/client373/web726/web/app/model/CatalogueCommon.php:128 source ► Danubian\CatalogueCommon-> getPossibleFieldValues (arguments ►)
| $name | "cores" (5)
|
|---|---|
| $locale | "de" (2)
|
118: { 119: $results = array(); 120: 121: foreach ($this->fields as $key => $def) { 122: 123: // determine the localised label 124: $label = $this->getFieldLabel($key, $locale); 125: 126: // for searchable fields, generate a control 127: if ($def['designation'] == 'searchable') { 128: $values = $this->getPossibleFieldValues($key, $locale); 129: $translateValues = array_key_exists('translateValues', $def) ? $def['translateValues'] : NULL; 130: $results[$key] = compact('label', 'values', 'translateValues'); 131: } 132:
/var/www/clients/client373/web726/web/app/FrontModule/presenters/SearchPresenter.php:67 source ► Danubian\CatalogueCommon-> getSearchableFields (arguments ►)
| $locale | "de" (2)
|
|---|
57: */ 58: public $details; 59: 60: /** 61: * Create the form to submit search queries. 62: */ 63: protected function createComponentParameterForm($name) 64: { 65: // find all searchable fields and their possible values 66: $common = $this->getService('catalogueCommon'); 67: $searchableFields = $common->getSearchableFields($this->locale); 68: 69: // construct the form 70: $form = new Form($this, $name); 71: $form->setTranslator($this->translator);
/var/www/clients/client373/web726/web/libs/Nette/ComponentModel/Container.php:175 source ► Danubian\FrontModule\SearchPresenter-> createComponentParameterForm (arguments ►)
| $name | "parameterForm" (13)
|
|---|
165: /** 166: * Component factory. Delegates the creation of components to a createComponent<Name> method. 167: * @param string component name 168: * @return IComponent the created component (optionally) 169: */ 170: protected function createComponent($name) 171: { 172: $ucname = ucfirst($name); 173: $method = 'createComponent' . $ucname; 174: if ($ucname !== $name && method_exists($this, $method) && $this->getReflection()->getMethod($method)->getName() === $method) { 175: $component = $this->$method($name); 176: if (!$component instanceof IComponent && !isset($this->components[$name])) { 177: $class = get_class($this); 178: throw new Nette\UnexpectedValueException("Method $class::$method() did not return or create the desired component."); 179: }
/var/www/clients/client373/web726/web/libs/Nette/ComponentModel/Container.php:142 source ► Nette\ComponentModel\Container-> createComponent (arguments ►)
| $name | "parameterForm" (13)
|
|---|
132: $ext = (string) substr($name, $a + 1); 133: $name = substr($name, 0, $a); 134: } 135: 136: if ($name === '') { 137: throw new Nette\InvalidArgumentException("Component or subcomponent name must not be empty string."); 138: } 139: } 140: 141: if (!isset($this->components[$name])) { 142: $component = $this->createComponent($name); 143: if ($component instanceof IComponent && $component->getParent() === NULL) { 144: $this->addComponent($component, $name); 145: } 146: }
/var/www/clients/client373/web726/web/libs/Nette/Application/UI/PresenterComponent.php:376 source ► Nette\ComponentModel\Container-> getComponent (arguments ►)
| $name | "parameterForm" (13)
|
|---|---|
| $need | TRUE
|
366: 367: 368: /** 369: * Returns component specified by name. Throws exception if component doesn't exist. 370: * @param string component name 371: * @return Nette\ComponentModel\IComponent 372: * @throws Nette\InvalidArgumentException 373: */ 374: final public function offsetGet($name) 375: { 376: return $this->getComponent($name, TRUE); 377: } 378: 379: 380: /**
/var/www/clients/client373/web726/web/temp/cache/_Nette.FileTemplate/_templates.Search.default.latte-6a359de774037390404e9d95e6663988.php:32 source ► Nette\Application\UI\PresenterComponent-> offsetGet (arguments ►)
| $name | "parameterForm" (13)
|
|---|
22: }} 23: 24: // 25: // block content 26: // 27: if (!function_exists($_l->blocks['content'][] = '_lb3846922322_content')) { function _lb3846922322_content($_l, $_args) { extract($_args) 28: ?><div class="row"> 29: <div class="span3" id="col-query"> 30: <h1><?php echo Nette\Templating\Helpers::escapeHtml($template->translate('Search by parameters'), ENT_NOQUOTES) ?></h1> 31: <hr /> 32: <?php Nette\Latte\Macros\FormMacros::renderFormBegin($form = $_form = (is_object("parameterForm") ? "parameterForm" : $_control["parameterForm"]), array()) ?> 33: <p><?php echo Nette\Templating\Helpers::escapeHtml($template->translate('You can specify any of the following parameters.'), ENT_NOQUOTES) ?></p> 34: <p class="text-info"><strong><?php echo Nette\Templating\Helpers::escapeHtml($template->translate('Hold CTRL to select multiple options or de-select options in a filter.'), ENT_NOQUOTES) ?></strong></p> 35: <br /> 36: <?php $iterations = 0; foreach ($form['parameters']->controls as $control): ?>
/var/www/clients/client373/web726/web/libs/Nette/Latte/Macros/UIMacros.php:445 source ► _lb3846922322_content (arguments ►)
| $_l | stdClass(3) ▼ |
|---|---|
| $_args | array(34) ► |
435: /** 436: * Calls block. 437: * @return void 438: */ 439: public static function callBlock(\stdClass $context, $name, array $params) 440: { 441: if (empty($context->blocks[$name])) { 442: throw new Nette\InvalidStateException("Cannot include undefined block '$name'."); 443: } 444: $block = reset($context->blocks[$name]); 445: $block($context, $params); 446: } 447: 448: 449: /**
/var/www/clients/client373/web726/web/temp/cache/_Nette.FileTemplate/_templates._layout.latte-2a0242f35acccbf0bbd076d4163c2185.php:274 source ► Nette\Latte\Macros\UIMacros:: callBlock (arguments ►)
| $context | stdClass(3) ▼ |
|---|---|
| $name | "content" (7)
|
| $params | array(34) ► |
264: 265: <div id="container"> 266: <div id="wrapper"> 267: <div class="container"> 268: <?php call_user_func(reset($_l->blocks['h1']), $_l, get_defined_vars()) ; if ($flashes): $iterations = 0; foreach ($flashes as $flash): ?> 269: <div class="alert<?php if ($flash->type != ''): ?> alert-<?php echo htmlSpecialChars($flash->type) ;endif ?>"> 270: <button type="button" class="close" data-dismiss="alert">×</button> 271: <?php echo Nette\Templating\Helpers::escapeHtml($flash->message, ENT_NOQUOTES) ?> 272: 273: </div> 274: <?php $iterations++; endforeach ;endif ;Nette\Latte\Macros\UIMacros::callBlock($_l, 'content', $template->getParameters()) ?> 275: </div> 276: </div><!-- /wrapper --> 277: </div><!-- /container --> 278: <footer id="page-footer">
/var/www/clients/client373/web726/web/libs/Nette/Utils/LimitedScope.php:70 source ► include (arguments ►)
| #0 | "/var/www/clients/client373/web726/web/temp/cache/_Nette.FileTemplate/_templates._layout.latte-2a0242f35acccbf0bbd076d4163c2185.php" (130)
|
|---|
60: */ 61: public static function load(/*$file, array $vars = NULL*/) 62: { 63: if (func_num_args() > 1) { 64: self::$vars = func_get_arg(1); 65: if (self::$vars === TRUE) { 66: return include_once func_get_arg(0); 67: } 68: extract(self::$vars); 69: } 70: return include func_get_arg(0); 71: } 72: 73: } 74:
/var/www/clients/client373/web726/web/libs/Nette/Templating/FileTemplate.php:112 source ► Nette\Utils\LimitedScope:: load (arguments ►)
| #0 | "/var/www/clients/client373/web726/web/temp/cache/_Nette.FileTemplate/_templates._layout.latte-2a0242f35acccbf0bbd076d4163c2185.php" (130)
|
|---|---|
| #1 | array(35) ► |
102: } 103: 104: $cache->save($this->file, $compiled, array( 105: Caching\Cache::FILES => $this->file, 106: Caching\Cache::CONSTS => 'Nette\Framework::REVISION', 107: )); 108: $cached = $cache->load($this->file); 109: } 110: 111: if ($cached !== NULL && $storage instanceof Caching\Storages\PhpFileStorage) { 112: Nette\Utils\LimitedScope::load($cached['file'], $this->getParameters()); 113: } else { 114: Nette\Utils\LimitedScope::evaluate($compiled, $this->getParameters()); 115: } 116: }
/var/www/clients/client373/web726/web/temp/cache/_Nette.FileTemplate/_templates.Search.default.latte-6a359de774037390404e9d95e6663988.php:167 source ► Nette\Templating\FileTemplate-> render ()
157: if ($_l->extends) { 158: ob_start(); 159: 160: } elseif (!empty($_control->snippetMode)) { 161: return Nette\Latte\Macros\UIMacros::renderSnippets($_control, $_l, get_defined_vars()); 162: } 163: 164: // 165: // main template 166: // 167: if ($_l->extends) { ob_end_clean(); return Nette\Latte\Macros\CoreMacros::includeTemplate($_l->extends, get_defined_vars(), $template)->render(); } 168: call_user_func(reset($_l->blocks['title']), $_l, get_defined_vars()) ?> 169: 170: 171: <?php call_user_func(reset($_l->blocks['h1']), $_l, get_defined_vars()) ?>
/var/www/clients/client373/web726/web/libs/Nette/Utils/LimitedScope.php:70 source ► include (arguments ►)
| #0 | "/var/www/clients/client373/web726/web/temp/cache/_Nette.FileTemplate/_templates.Search.default.latte-6a359de774037390404e9d95e6663988.php" (137)
|
|---|
60: */ 61: public static function load(/*$file, array $vars = NULL*/) 62: { 63: if (func_num_args() > 1) { 64: self::$vars = func_get_arg(1); 65: if (self::$vars === TRUE) { 66: return include_once func_get_arg(0); 67: } 68: extract(self::$vars); 69: } 70: return include func_get_arg(0); 71: } 72: 73: } 74:
/var/www/clients/client373/web726/web/libs/Nette/Templating/FileTemplate.php:112 source ► Nette\Utils\LimitedScope:: load (arguments ►)
| #0 | "/var/www/clients/client373/web726/web/temp/cache/_Nette.FileTemplate/_templates.Search.default.latte-6a359de774037390404e9d95e6663988.php" (137)
|
|---|---|
| #1 | array(32) ► |
102: } 103: 104: $cache->save($this->file, $compiled, array( 105: Caching\Cache::FILES => $this->file, 106: Caching\Cache::CONSTS => 'Nette\Framework::REVISION', 107: )); 108: $cached = $cache->load($this->file); 109: } 110: 111: if ($cached !== NULL && $storage instanceof Caching\Storages\PhpFileStorage) { 112: Nette\Utils\LimitedScope::load($cached['file'], $this->getParameters()); 113: } else { 114: Nette\Utils\LimitedScope::evaluate($compiled, $this->getParameters()); 115: } 116: }
/var/www/clients/client373/web726/web/libs/Nette/Application/Responses/TextResponse.php:55 source ► Nette\Templating\FileTemplate-> render ()
45: } 46: 47: 48: /** 49: * Sends response to output. 50: * @return void 51: */ 52: public function send(Nette\Http\IRequest $httpRequest, Nette\Http\IResponse $httpResponse) 53: { 54: if ($this->source instanceof Nette\Templating\ITemplate) { 55: $this->source->render(); 56: 57: } else { 58: echo $this->source; 59: }
/var/www/clients/client373/web726/web/libs/Nette/Application/Application.php:139 source ► Nette\Application\Responses\TextResponse-> send (arguments ►)
| $httpRequest | Nette\Http\Request(9) ► |
|---|---|
| $httpResponse | Nette\Http\Response(5) ▼ |
129: if ($response) { 130: $this->onResponse($this, $response); 131: } 132: 133: // Send response 134: if ($response instanceof Responses\ForwardResponse) { 135: $request = $response->getRequest(); 136: continue; 137: 138: } elseif ($response instanceof IResponse) { 139: $response->send($this->httpRequest, $this->httpResponse); 140: } 141: break; 142: 143: } catch (\Exception $e) {
/var/www/clients/client373/web726/web/index.php:10 source ► Nette\Application\Application-> run ()
1: <?php 2: 3: // Uncomment this line if you must temporarily take down your site for maintenance. 4: // require '.maintenance.php'; 5: 6: // Let bootstrap create Dependency Injection container. 7: $container = require __DIR__ . '/app/bootstrap.php'; 8: 9: // Run application. 10: $container->application->run(); 11:
array(1) ▼ [
0 => Nette\Application\Request(7) ► {
method private => "GET" (3)
flags private => array(1) ▼ {
secured => TRUE
}
name private => "Front:Search" (12)
params private => array(5) ▼ {
locale => "de" (2)
action => "default" (7)
id => NULL
alpha => "I"
details => "41622" (5)
}
post private => array(0)
files private => array(0)
frozen private => TRUE
}
]
Danubian\FrontModule\SearchPresenter(38) ► {
selector protected => Danubian\ItemSelector(7) ► {
locale protected => "DE" (2)
parameters protected => array(0)
alpha protected => "I"
substring protected => NULL
connection private => Nette\Database\Connection(6) ▼ {
dsn private => "mysql:host=pecari-sql.xart.cz;dbname=c373danubian" (49)
driver private => Nette\Database\Drivers\MySqlDriver(1) { ... }
preprocessor private => Nette\Database\SqlPreprocessor(6) { ... }
databaseReflection private => Nette\Database\Reflection\DiscoveredReflection(5) { ... }
cache private => Nette\Caching\Cache(4) { ... }
onQuery => array(1) [ ... ]
}
fields private => array(29) ► {
name => array(8) { ... }
category => array(10) { ... }
construction => array(10) { ... }
voltage => array(8) { ... }
core_material => array(8) { ... }
cores => array(8) { ... }
cross_section => array(9) { ... }
conductor_1 => array(8) { ... }
reduced_0 => array(9) { ... }
conductor_2 => array(8) { ... }
core_insulation => array(8) { ... }
conductor_screen => array(9) { ... }
armouring => array(8) { ... }
outer_jacket => array(8) { ... }
outer_diameter => array(10) { ... }
weight => array(10) { ... }
resistance_to => array(8) { ... }
application => array(8) { ... }
standard => array(9) { ... }
colours => array(9) { ... }
fire_performance => array(9) { ... }
leadfree => array(10) { ... }
halogene_free => array(10) { ... }
uv_resistant => array(10) { ... }
min_temperature => array(9) { ... }
group_application => array(10) { ... }
delivery_length_1 => array(9) { ... }
delivery_length_2 => array(9) { ... }
delivery_length_3 => array(9) { ... }
}
nameColumn private => "name" (4)
}
query => NULL
substr => NULL
alpha => "I"
details => "41622" (5)
locale => "de" (2)
moduleName protected => "Front" (5)
pureName protected => "Search" (6)
translator protected => Danubian\GettextTranslator(2) ▼ {
locales protected => array(7) ► [
0 => array(4) { ... }
1 => array(4) { ... }
2 => array(4) { ... }
3 => array(4) { ... }
4 => array(4) { ... }
5 => array(4) { ... }
6 => array(4) { ... }
]
locale protected => array(4) ▼ {
posix => "de_DE" (5)
rfc => "de-de" (5)
iso => "de" (2)
code => "de" (2)
}
}
invalidLinkMode => 2
onShutdown => NULL
request private => Nette\Application\Request(7) ► {
method private => "GET" (3)
flags private => array(1) ▼ {
secured => TRUE
}
name private => "Front:Search" (12)
params private => array(5) ▼ {
locale => "de" (2)
action => "default" (7)
id => NULL
alpha => "I"
details => "41622" (5)
}
post private => array(0)
files private => array(0)
frozen private => TRUE
}
response private => Nette\Application\Responses\TextResponse(1) ▼ {
source private => Nette\Templating\FileTemplate(8) ► {
file private => "/var/www/clients/client373/web726/web/app/FrontModule/templates/Search.default.latte" (84)
onPrepareFilters => array(1) [ ... ]
source private => NULL
params private => array(34) { ... }
filters private => array(0)
helpers private => array(1) { ... }
helperLoaders private => array(2) [ ... ]
cacheStorage private => Nette\Caching\Storages\PhpFileStorage(5) { ... }
}
}
autoCanonicalize => TRUE
absoluteUrls => FALSE
globalParams private => array(0)
globalState private => array(6) ▼ {
query => NULL
substr => NULL
alpha => "I"
details => "41622" (5)
locale => "de" (2)
"vp-page" => NULL
}
globalStateSinces private => array(6) ▼ {
query => "Danubian\FrontModule\SearchPresenter" (36)
substr => "Danubian\FrontModule\SearchPresenter" (36)
alpha => "Danubian\FrontModule\SearchPresenter" (36)
details => "Danubian\FrontModule\SearchPresenter" (36)
locale => "Danubian\FrontModule\BaseFrontPresenter" (39)
"vp-page" => FALSE
}
action private => "default" (7)
view private => "default" (7)
layout private => NULL
payload private => stdClass(0)
signalReceiver private => ""
signal private => NULL
ajaxMode private => FALSE
startupCheck private => TRUE
lastCreatedRequest private => Nette\Application\Request(7) ► {
method private => "FORWARD" (7)
flags private => array(0)
name private => "Admin:Import" (12)
params private => array(2) ▼ {
locale => NULL
action => "default" (7)
}
post private => array(0)
files private => array(0)
frozen private => FALSE
}
lastCreatedRequestFlag private => array(1) ▼ {
current => FALSE
}
context private => SystemContainer(8) ► {
classes => array(50) ► {
"nette\object" => FALSE
"nette\caching\storages\ijournal" => "nette.cacheJournal" (18)
"nette\caching\storages\filejournal" => "nette.cacheJournal" (18)
"nette\caching\istorage" => "cacheStorage" (12)
"nette\caching\storages\filestorage" => "cacheStorage" (12)
"nette\http\requestfactory" => "nette.httpRequestFactory" (24)
"nette\http\irequest" => "httpRequest" (11)
"nette\http\request" => "httpRequest" (11)
"nette\http\iresponse" => "httpResponse" (12)
"nette\http\response" => "httpResponse" (12)
"nette\http\context" => "nette.httpContext" (17)
"nette\http\session" => "session" (7)
"nette\security\iuserstorage" => "nette.userStorage" (17)
"nette\http\userstorage" => "nette.userStorage" (17)
"nette\security\user" => "user" (4)
"nette\application\application" => "application" (11)
"nette\application\presenterfactory" => "nette.presenterFactory" (22)
"nette\application\ipresenterfactory" => "nette.presenterFactory" (22)
"danubian\presenterfactory" => "nette.presenterFactory" (22)
"nette\application\irouter" => "router" (6)
"nette\mail\imailer" => "nette.mailer" (12)
"nette\mail\sendmailmailer" => "nette.mailer" (12)
"nette\di\nestedaccessor" => "nette.database" (14)
pdo => "nette.database.default" (22)
"nette\database\connection" => "nette.database.default" (22)
"danubian\schemamanager" => "schemaManager" (13)
"danubian\referencechecker" => "referenceChecker" (16)
"danubian\legaldocuments" => "legalDocuments" (14)
"danubian\cataloguerepository" => "catalogueRepository" (19)
"danubian\baserepository" => FALSE
"danubian\importsessionrepository" => "importSessionRepository" (23)
"danubian\userrepository" => "userRepository" (14)
"danubian\searchqueryrepository" => "searchQueryRepository" (21)
"danubian\logitemrepository" => "logItemRepository" (17)
"danubian\itemselector" => "itemSelector" (12)
"danubian\excelparsingservice" => "excelParsing" (12)
"danubian\routerfactory" => "routerFactory" (13)
"nette\security\permission" => "authorization" (13)
"nette\security\iauthorizator" => "authorization" (13)
"danubian\authorizationservice" => "authorization" (13)
"danubian\downloadablehelper" => FALSE
"danubian\datasheethelper" => "dataSheetHelper" (15)
"danubian\cataloguecommon" => "catalogueCommon" (15)
"danubian\appendixhelper" => "appendixHelper" (14)
"nette\security\iauthenticator" => "authentication" (14)
"danubian\authenticationservice" => "authentication" (14)
"nette\freezableobject" => "container" (9)
"nette\ifreezable" => "container" (9)
"nette\di\icontainer" => "container" (9)
"nette\di\container" => "container" (9)
}
meta => array(1) ▼ {
translator => NULL
}
parameters => array(19) ► {
appDir => "/var/www/clients/client373/web726/web/app" (41)
wwwDir => "/var/www/ecatalogue.danubian.eu/web" (35)
debugMode => TRUE
productionMode => FALSE
environment => "production" (10)
consoleMode => FALSE
container => array(2) { ... }
tempDir => "/var/www/clients/client373/web726/web/app/../temp" (49)
ftpRoot => "/var/www/clients/client373/web726/web/app/../ftp" (48)
appendixDir => "/var/www/clients/client373/web726/web/app/../ftp/appendices" (59)
dataSheetDir => "/var/www/clients/client373/web726/web/app/../ftp/datasheets" (59)
pictureSourceDir => "/var/www/clients/client373/web726/web/app/../ftp/pictures" (57)
pictureTargetDir => "/var/www/clients/client373/web726/web/app/../dynamic/pictures" (61)
catalogue => array(4) { ... }
import => array(1) { ... }
pagination => array(4) { ... }
passwords => array(4) { ... }
userSupport => array(1) { ... }
database => array(5) { ... }
}
params => array(19) ► {
appDir => "/var/www/clients/client373/web726/web/app" (41)
wwwDir => "/var/www/ecatalogue.danubian.eu/web" (35)
debugMode => TRUE
productionMode => FALSE
environment => "production" (10)
consoleMode => FALSE
container => array(2) { ... }
tempDir => "/var/www/clients/client373/web726/web/app/../temp" (49)
ftpRoot => "/var/www/clients/client373/web726/web/app/../ftp" (48)
appendixDir => "/var/www/clients/client373/web726/web/app/../ftp/appendices" (59)
dataSheetDir => "/var/www/clients/client373/web726/web/app/../ftp/datasheets" (59)
pictureSourceDir => "/var/www/clients/client373/web726/web/app/../ftp/pictures" (57)
pictureTargetDir => "/var/www/clients/client373/web726/web/app/../dynamic/pictures" (61)
catalogue => array(4) { ... }
import => array(1) { ... }
pagination => array(4) { ... }
passwords => array(4) { ... }
userSupport => array(1) { ... }
database => array(5) { ... }
}
registry private => array(26) ► {
"nette.httpRequestFactory" => Nette\Http\RequestFactory(2) { ... }
httpRequest => Nette\Http\Request(9) { ... }
httpResponse => Nette\Http\Response(5) { ... }
session => Nette\Http\Session(4) { ... }
"nette.presenterFactory" => Danubian\PresenterFactory(4) { ... }
routerFactory => Danubian\RouterFactory(0)
router => Nette\Application\Routers\RouteList(3) { ... }
application => Nette\Application\Application(14) { ... }
container => SystemContainer(8) { *RECURSION* }
"nette.userStorage" => Nette\Http\UserStorage(3) { ... }
user => Nette\Security\User(8) { ... }
"nette.cacheJournal" => Nette\Caching\Storages\FileJournal(9) { ... }
cacheStorage => Nette\Caching\Storages\FileStorage(4) { ... }
"nette.database.defaultConnectionPanel" => Nette\Database\Diagnostics\ConnectionPanel(5) { ... }
"nette.database.default" => Nette\Database\Connection(6) { ... }
logItemRepository => Danubian\LogItemRepository(2) { ... }
translator => Danubian\GettextTranslator(2) { ... }
"nette.templateCacheStorage" => Nette\Caching\Storages\PhpFileStorage(5) { ... }
legalDocuments => Danubian\LegalDocuments(2) { ... }
authorization => Danubian\AuthorizationService(5) { ... }
database => Nette\Database\Connection(6) { ... }
itemSelector => Danubian\ItemSelector(7) { ... }
catalogueRepository => Danubian\CatalogueRepository(1) { ... }
catalogueCommon => Danubian\CatalogueCommon(3) { ... }
dataSheetHelper => Danubian\DataSheetHelper(2) { ... }
appendixHelper => Danubian\AppendixHelper(4) { ... }
}
factories private => array(0)
creating private => array(0)
frozen private => FALSE
}
template private => Nette\Templating\FileTemplate(8) ► {
file private => "/var/www/clients/client373/web726/web/app/FrontModule/templates/Search.default.latte" (84)
onPrepareFilters => array(1) ▼ [
0 => Nette\Callback(1) { ... }
]
source private => NULL
params private => array(34) ► {
_control => Danubian\FrontModule\SearchPresenter(38) { *RECURSION* }
control => Danubian\FrontModule\SearchPresenter(38) { *RECURSION* }
_presenter => Danubian\FrontModule\SearchPresenter(38) { *RECURSION* }
presenter => Danubian\FrontModule\SearchPresenter(38) { *RECURSION* }
user => Nette\Security\User(8) { ... }
netteHttpResponse => Nette\Http\Response(5) { ... }
netteCacheStorage => Nette\Caching\Storages\FileStorage(4) { ... }
baseUrl => "https://danubian.eu" (19)
baseUri => "https://danubian.eu" (19)
basePath => ""
flashes => array(0)
lang => "de-de" (5)
prysmianGroupLink => array(2) { ... }
loginLink => "/user/login/?backlink=%2Fde%2F%3Falpha%3DI%26details%3D41622" (60)
registerLink => "/user/register/?backlink=%2Fde%2F%3Falpha%3DI%26details%3D41622" (63)
profileLink => "/user/profile/?backlink=%2Fde%2F%3Falpha%3DI%26details%3D41622" (62)
tac => array(5) { ... }
query => NULL
alpha => "I"
substr => NULL
details => "41622" (5)
count => 10
items => Nette\Database\Table\Selection(18) { ... }
pages => Nette\Utils\Paginator(4) { ... }
itemDetails => Nette\Database\Table\ActiveRow(4) { ... }
groupDetails => Nette\Database\Table\ActiveRow(4) { ... }
itemFields => array(19) { ... }
groupFields => array(9) { ... }
picture => NULL
appendices => array(0)
dataSheetLink => "/de/download/data-sheet/?group_id=57&doc_locale=en&backlink=%2Fde%2F%3Falpha%3DI%26details%3D41622" (98)
template => Nette\Templating\FileTemplate(8) { *RECURSION* }
_g => stdClass(0)
_extended => TRUE
}
filters private => array(0)
helpers private => array(1) ▼ {
translate => Nette\Callback(1) { ... }
}
helperLoaders private => array(2) ▼ [
0 => Nette\Callback(1) { ... }
1 => Nette\Callback(1) { ... }
]
cacheStorage private => Nette\Caching\Storages\PhpFileStorage(5) ▼ {
hint => "/templates/@layout.latte" (24)
dir private => "/var/www/clients/client373/web726/web/temp/cache" (48)
useDirs private => TRUE
journal private => Nette\Caching\Storages\FileJournal(9) { ... }
locks private => NULL
}
}
invalidSnippets private => array(0)
snippetMode => NULL
params protected => array(7) ► {
locale => "de" (2)
action => "default" (7)
id => NULL
alpha => "I"
details => "41622" (5)
query => NULL
substr => NULL
}
components private => array(1) ▼ {
vp => VisualPaginator(11) ► {
paginator private => Nette\Utils\Paginator(4) { ... }
page => 1
template private => NULL
invalidSnippets private => array(0)
snippetMode => NULL
params protected => array(1) { ... }
components private => array(0)
cloning private => NULL
parent private => Danubian\FrontModule\SearchPresenter(38) { *RECURSION* }
name private => "vp" (2)
monitors private => array(1) { ... }
}
}
cloning private => NULL
parent private => NULL
name private => "Front:Search" (12)
monitors private => array(0)
}
| PHP_FCGI_MAX_REQUESTS | "50000" (5)
|
|---|---|
| PHPRC | "/opt/php-5.6/lib/" (17)
|
| PWD | "/var/www/php-fcgi-scripts/web726" (32)
|
| TMPDIR | "/var/www/clients/client373/web726/tmp" (37)
|
| TEMP | "/var/www/clients/client373/web726/tmp" (37)
|
| SHLVL | "0"
|
| TMP | "/var/www/clients/client373/web726/tmp" (37)
|
| PATH | "/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" (60)
|
| PHP_DOCUMENT_ROOT | "/var/www/clients/client373/web726" (33)
|
| CONTENT_LENGTH | "0"
|
| HTTP_CONNECTION | "close" (5)
|
| SCRIPT_NAME | "/index.php" (10)
|
| REQUEST_URI | "/de/?alpha=I&details=41622" (26)
|
| QUERY_STRING | "alpha=I&details=41622" (21)
|
| REQUEST_METHOD | "GET" (3)
|
| SERVER_PROTOCOL | "HTTP/1.1" (8)
|
| GATEWAY_INTERFACE | "CGI/1.1" (7)
|
| REDIRECT_QUERY_STRING | "alpha=I&details=41622" (21)
|
| REDIRECT_URL | "/de/" (4)
|
| REMOTE_PORT | "35830" (5)
|
| SCRIPT_FILENAME | "/var/www/ecatalogue.danubian.eu/web/index.php" (45)
|
| SERVER_ADMIN | "webmaster@ecatalogue.danubian.eu" (32)
|
| CONTEXT_DOCUMENT_ROOT | "/var/www/ecatalogue.danubian.eu/web" (35)
|
| CONTEXT_PREFIX | ""
|
| REQUEST_SCHEME | "https" (5)
|
| DOCUMENT_ROOT | "/var/www/ecatalogue.danubian.eu/web" (35)
|
| REMOTE_ADDR | "216.73.216.183" (14)
|
| SERVER_PORT | "443" (3)
|
| SERVER_ADDR | "31.31.227.66" (12)
|
| SERVER_NAME | "danubian.eu" (11)
|
| SERVER_SOFTWARE | "Apache" (6)
|
| SERVER_SIGNATURE | ""
|
| HTTP_HOST | "danubian.eu" (11)
|
| HTTP_ACCEPT_ENCODING | "gzip, br, zstd, deflate" (23)
|
| HTTP_COOKIE | "nette-browser=dilwvut0um; PHPSESSID=3pd2fnp07t6u4dnearcbs68st2" (62)
|
| HTTP_USER_AGENT | "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" (103)
|
| HTTP_ACCEPT | "*/*" (3)
|
| SSL_TLS_SNI | "danubian.eu" (11)
|
| HTTPS | "on" (2)
|
| SCRIPT_URI | "https://danubian.eu/de/" (23)
|
| SCRIPT_URL | "/de/" (4)
|
| QS_EventRequest | "216.73.216.183" (14)
|
| QS_ClientLowPrio | "0x13" (4)
|
| QS_ScrapyEvent_Remaining | "0"
|
| QS_ScrapyEvent_Counter | "0"
|
| QS_GptEvent_Remaining | "0"
|
| QS_GptEvent_Counter | "0"
|
| QS_AmazonEvent_Remaining | "0"
|
| QS_AmazonEvent_Counter | "0"
|
| QS_ClaudeEvent_Remaining | "8"
|
| QS_ClaudeEvent | "1"
|
| QS_ClaudeEvent_Counter | "5"
|
| QS_Cond | "claudebot" (9)
|
| QS_Event | "216.73.216.183" (14)
|
| QS_Block_seen | ""
|
| QS_Block | "216.73.216.183" (14)
|
| QS_ConnectionId | "1784534079429698363832577" (25)
|
| QS_AllConn | "182" (3)
|
| QS_IPConn | "2"
|
| QS_SrvConn | "182" (3)
|
| REDIRECT_STATUS | "200" (3)
|
| REDIRECT_SSL_TLS_SNI | "danubian.eu" (11)
|
| REDIRECT_HTTPS | "on" (2)
|
| REDIRECT_QS_ScrapyEvent_Remaining | "0"
|
| REDIRECT_QS_ScrapyEvent_Counter | "0"
|
| REDIRECT_QS_Limit_VAR_NAME_IDXQS_ScrapyEvent | "QS_ScrapyEvent" (14)
|
| REDIRECT_QS_GptEvent_Remaining | "0"
|
| REDIRECT_QS_GptEvent_Counter | "0"
|
| REDIRECT_QS_Limit_VAR_NAME_IDXQS_GptEvent | "QS_GptEvent" (11)
|
| REDIRECT_QS_AmazonEvent_Remaining | "0"
|
| REDIRECT_QS_AmazonEvent_Counter | "0"
|
| REDIRECT_QS_Limit_VAR_NAME_IDXQS_AmazonEvent | "QS_AmazonEvent" (14)
|
| REDIRECT_QS_ClaudeEvent_Remaining | "8"
|
| REDIRECT_QS_ClaudeEvent_Counter | "5"
|
| REDIRECT_QS_Limit_VAR_NAME_IDXQS_ClaudeEvent | "QS_ClaudeEvent" (14)
|
| REDIRECT_QS_Limit_seenQS_ClaudeEvent | ""
|
| REDIRECT_QS_Block_seen | ""
|
| REDIRECT_SCRIPT_URI | "https://danubian.eu/de/" (23)
|
| REDIRECT_SCRIPT_URL | "/de/" (4)
|
| REDIRECT_QS_ClaudeEvent | "1"
|
| REDIRECT_QS_Cond | "claudebot" (9)
|
| REDIRECT_QS_Block | "216.73.216.183" (14)
|
| REDIRECT_QS_Event | "216.73.216.183" (14)
|
| REDIRECT_QS_EventRequest | "216.73.216.183" (14)
|
| REDIRECT_QS_ClientLowPrio | "0x13" (4)
|
| REDIRECT_QS_ConnectionId | "1784534079429698363832577" (25)
|
| REDIRECT_QS_AllConn | "182" (3)
|
| REDIRECT_QS_IPConn | "2"
|
| REDIRECT_QS_SrvConn | "182" (3)
|
| FCGI_ROLE | "RESPONDER" (9)
|
| PHP_SELF | "/index.php" (10)
|
| REQUEST_TIME_FLOAT | 1784534090.0164199
|
| REQUEST_TIME | 1784534090
|
| __NF | Nette Session |
|---|
| Danubian/locale | array(1) ▼ |
|---|---|
| Nette.Http.UserStorage/ | array(1) ▼ |
| Danubian/frontend | array(1) ▼ |
| NETTE | TRUE
|
|---|---|
| NETTE_DIR | "/var/www/clients/client373/web726/web/libs/Nette" (48)
|
| NETTE_VERSION_ID | 20011
|
| NETTE_PACKAGE | "5.3" (3)
|
| /var/www/clients/client373/web726/web/index.php |
| /var/www/clients/client373/web726/web/app/bootstrap.php |
| /var/www/clients/client373/web726/web/libs/autoload.php |
| /var/www/clients/client373/web726/web/libs/Nette/loader.php |
| /var/www/clients/client373/web726/web/libs/Nette/common/exceptions.php |
| /var/www/clients/client373/web726/web/libs/Nette/common/Object.php |
| /var/www/clients/client373/web726/web/libs/Nette/Utils/LimitedScope.php |
| /var/www/clients/client373/web726/web/libs/Nette/Loaders/AutoLoader.php |
| /var/www/clients/client373/web726/web/libs/Nette/Loaders/NetteLoader.php |
| /var/www/clients/client373/web726/web/libs/Nette/Diagnostics/Helpers.php |
| /var/www/clients/client373/web726/web/libs/Nette/Diagnostics/shortcuts.php |
| /var/www/clients/client373/web726/web/libs/Nette/Utils/Html.php |
| /var/www/clients/client373/web726/web/libs/Nette/Diagnostics/Debugger.php |
| /var/www/clients/client373/web726/web/libs/Nette/Diagnostics/Logger.php |
| /var/www/clients/client373/web726/web/libs/Nette/Diagnostics/FireLogger.php |
| /var/www/clients/client373/web726/web/libs/Nette/Diagnostics/BlueScreen.php |
| /var/www/clients/client373/web726/web/libs/Nette/Diagnostics/Bar.php |
| /var/www/clients/client373/web726/web/libs/Nette/Diagnostics/DefaultBarPanel.php |
| /var/www/clients/client373/web726/web/libs/Nette/Diagnostics/IBarPanel.php |
| /var/www/clients/client373/web726/web/libs/Nette/Utils/SafeStream.php |
| /var/www/clients/client373/web726/web/libs/Nette/Config/Configurator.php |
| /var/www/clients/client373/web726/web/libs/Nette/Loaders/RobotLoader.php |
| /var/www/clients/client373/web726/web/libs/Nette/Caching/Storages/FileStorage.php |
| /var/www/clients/client373/web726/web/libs/Nette/Caching/IStorage.php |
| /var/www/clients/client373/web726/web/libs/Nette/Caching/Cache.php |
| /var/www/clients/client373/web726/web/libs/Nette/common/Callback.php |
| /var/www/clients/client373/web726/web/libs/Nette/common/Framework.php |
| /var/www/clients/client373/web726/web/libs/Nette/Caching/Storages/PhpFileStorage.php |
| /var/www/clients/client373/web726/web/temp/cache/_Nette.Configurator/_-67fb603741b158d56c5ab0bc1dc269bb.php |
| /var/www/clients/client373/web726/web/libs/Nette/DI/Container.php |
| /var/www/clients/client373/web726/web/libs/Nette/common/FreezableObject.php |
| /var/www/clients/client373/web726/web/libs/Nette/common/IFreezable.php |
| /var/www/clients/client373/web726/web/libs/Nette/DI/IContainer.php |
| /var/www/clients/client373/web726/web/libs/Nette/Reflection/ClassType.php |
| /var/www/clients/client373/web726/web/libs/Nette/Reflection/Method.php |
| /var/www/clients/client373/web726/web/libs/Nette/Http/Session.php |
| /var/www/clients/client373/web726/web/libs/Nette/Http/RequestFactory.php |
| /var/www/clients/client373/web726/web/libs/Nette/Http/UrlScript.php |
| /var/www/clients/client373/web726/web/libs/Nette/Http/Url.php |
| /var/www/clients/client373/web726/web/libs/Nette/common/ObjectMixin.php |
| /var/www/clients/client373/web726/web/libs/Nette/Utils/Strings.php |
| /var/www/clients/client373/web726/web/libs/Nette/Http/Request.php |
| /var/www/clients/client373/web726/web/libs/Nette/Http/IRequest.php |
| /var/www/clients/client373/web726/web/libs/Nette/Http/Response.php |
| /var/www/clients/client373/web726/web/libs/Nette/Http/IResponse.php |
| /var/www/clients/client373/web726/web/libs/Nette/common/DateTime.php |
| /var/www/clients/client373/web726/web/libs/Nette/common/Environment.php |
| /var/www/clients/client373/web726/web/libs/Nette/Application/Application.php |
| /var/www/clients/client373/web726/web/app/services/PresenterFactory.php |
| /var/www/clients/client373/web726/web/libs/Nette/Application/PresenterFactory.php |
| /var/www/clients/client373/web726/web/libs/Nette/Application/IPresenterFactory.php |
| /var/www/clients/client373/web726/web/app/router/RouterFactory.php |
| /var/www/clients/client373/web726/web/libs/Nette/Application/Routers/RouteList.php |
| /var/www/clients/client373/web726/web/libs/Nette/common/ArrayList.php |
| /var/www/clients/client373/web726/web/libs/Nette/Application/IRouter.php |
| /var/www/clients/client373/web726/web/libs/Nette/Application/Routers/Route.php |
| /var/www/clients/client373/web726/web/libs/Nette/Application/Diagnostics/RoutingPanel.php |
| /var/www/clients/client373/web726/web/libs/Nette/Application/Request.php |
| /var/www/clients/client373/web726/web/app/FrontModule/presenters/SearchPresenter.php |
| /var/www/clients/client373/web726/web/app/FrontModule/presenters/BaseFrontPresenter.php |
| /var/www/clients/client373/web726/web/app/presenters/BasePresenter.php |
| /var/www/clients/client373/web726/web/libs/Nette/Application/UI/Presenter.php |
| /var/www/clients/client373/web726/web/libs/Nette/Application/UI/Control.php |
| /var/www/clients/client373/web726/web/libs/Nette/Application/UI/PresenterComponent.php |
| /var/www/clients/client373/web726/web/libs/Nette/ComponentModel/Container.php |
| /var/www/clients/client373/web726/web/libs/Nette/ComponentModel/Component.php |
| /var/www/clients/client373/web726/web/libs/Nette/ComponentModel/IComponent.php |
| /var/www/clients/client373/web726/web/libs/Nette/ComponentModel/IContainer.php |
| /var/www/clients/client373/web726/web/libs/Nette/Application/UI/ISignalReceiver.php |
| /var/www/clients/client373/web726/web/libs/Nette/Application/UI/IStatePersistent.php |
| /var/www/clients/client373/web726/web/libs/Nette/Application/UI/IRenderable.php |
| /var/www/clients/client373/web726/web/libs/Nette/Application/IPresenter.php |
| /var/www/clients/client373/web726/web/libs/Nette/DI/Helpers.php |
| /var/www/clients/client373/web726/web/libs/Nette/Reflection/Parameter.php |
| /var/www/clients/client373/web726/web/libs/Nette/Application/UI/PresenterComponentReflection.php |
| /var/www/clients/client373/web726/web/libs/Nette/Reflection/Property.php |
| /var/www/clients/client373/web726/web/libs/Nette/Reflection/AnnotationsParser.php |
| /var/www/clients/client373/web726/web/libs/Nette/Security/User.php |
| /var/www/clients/client373/web726/web/libs/Nette/Security/IUserStorage.php |
| /var/www/clients/client373/web726/web/libs/Nette/Http/UserStorage.php |
| /var/www/clients/client373/web726/web/libs/Nette/Security/Diagnostics/UserPanel.php |
| /var/www/clients/client373/web726/web/app/model/LogItemRepository.php |
| /var/www/clients/client373/web726/web/app/model/BaseRepository.php |
| /var/www/clients/client373/web726/web/libs/Nette/Database/Connection.php |
| /var/www/clients/client373/web726/web/libs/Nette/Database/Statement.php |
| /var/www/clients/client373/web726/web/libs/Nette/Database/Drivers/MySqlDriver.php |
| /var/www/clients/client373/web726/web/libs/Nette/Database/ISupplementalDriver.php |
| /var/www/clients/client373/web726/web/libs/Nette/Database/Row.php |
| /var/www/clients/client373/web726/web/libs/Nette/common/ArrayHash.php |
| /var/www/clients/client373/web726/web/libs/Nette/Database/SqlPreprocessor.php |
| /var/www/clients/client373/web726/web/libs/Nette/Caching/Storages/FileJournal.php |
| /var/www/clients/client373/web726/web/libs/Nette/Caching/Storages/IJournal.php |
| /var/www/clients/client373/web726/web/libs/Nette/Database/Reflection/DiscoveredReflection.php |
| /var/www/clients/client373/web726/web/libs/Nette/Database/IReflection.php |
| /var/www/clients/client373/web726/web/libs/Nette/Database/Diagnostics/ConnectionPanel.php |
| /var/www/clients/client373/web726/web/app/services/GettextTranslator.php |
| /var/www/clients/client373/web726/web/app/services/ITranslator.php |
| /var/www/clients/client373/web726/web/libs/Nette/Localization/ITranslator.php |
| /var/www/clients/client373/web726/web/libs/Nette/Http/SessionSection.php |
| /var/www/clients/client373/web726/web/libs/Nette/Templating/FileTemplate.php |
| /var/www/clients/client373/web726/web/libs/Nette/Templating/Template.php |
| /var/www/clients/client373/web726/web/libs/Nette/Templating/ITemplate.php |
| /var/www/clients/client373/web726/web/libs/Nette/Templating/IFileTemplate.php |
| /var/www/clients/client373/web726/web/app/Helpers.php |
| /var/www/clients/client373/web726/web/libs/Nette/ComponentModel/RecursiveComponentIterator.php |
| /var/www/clients/client373/web726/web/libs/Nette/Iterators/InstanceFilter.php |
| /var/www/clients/client373/web726/web/app/UserModule/presenters/LoginPresenter.php |
| /var/www/clients/client373/web726/web/app/UserModule/presenters/BaseUserPresenter.php |
| /var/www/clients/client373/web726/web/app/UserModule/presenters/RegisterPresenter.php |
| /var/www/clients/client373/web726/web/app/UserModule/presenters/ProfilePresenter.php |
| /var/www/clients/client373/web726/web/app/model/LegalDocuments.php |
| /var/www/clients/client373/web726/web/app/model/LegalDocument.php |
| /var/www/clients/client373/web726/web/libs/Nette/Security/IAuthorizator.php |
| /var/www/clients/client373/web726/web/app/services/AuthorizationService.php |
| /var/www/clients/client373/web726/web/libs/Nette/Security/Permission.php |
| /var/www/clients/client373/web726/web/app/model/ItemSelector.php |
| /var/www/clients/client373/web726/web/libs/Nette/Database/Table/Selection.php |
| /var/www/clients/client373/web726/web/libs/Nette/Database/Table/SqlBuilder.php |
| /var/www/clients/client373/web726/web/libs/Nette/Database/Helpers.php |
| /var/www/clients/client373/web726/web/libs/Nette/Database/Table/ActiveRow.php |
| /var/www/clients/client373/web726/web/libs/VisualPaginator/VisualPaginator.php |
| /var/www/clients/client373/web726/web/libs/Nette/Utils/Paginator.php |
| /var/www/clients/client373/web726/web/app/model/CatalogueRepository.php |
| /var/www/clients/client373/web726/web/app/model/CatalogueCommon.php |
| /var/www/clients/client373/web726/web/app/model/DataSheetHelper.php |
| /var/www/clients/client373/web726/web/app/model/DownloadableHelper.php |
| /var/www/clients/client373/web726/web/app/FrontModule/presenters/DownloadPresenter.php |
| /var/www/clients/client373/web726/web/app/model/AppendixHelper.php |
| /var/www/clients/client373/web726/web/libs/Nette/Application/Responses/TextResponse.php |
| /var/www/clients/client373/web726/web/libs/Nette/Application/IResponse.php |
| /var/www/clients/client373/web726/web/libs/Nette/Application/exceptions.php |
| /var/www/clients/client373/web726/web/temp/cache/_Nette.FileTemplate/_templates.Search.default.latte-6a359de774037390404e9d95e6663988.php |
| /var/www/clients/client373/web726/web/libs/Nette/Latte/Macros/CoreMacros.php |
| /var/www/clients/client373/web726/web/libs/Nette/Latte/Macros/MacroSet.php |
| /var/www/clients/client373/web726/web/libs/Nette/Latte/IMacro.php |
| /var/www/clients/client373/web726/web/temp/cache/_Nette.FileTemplate/_templates._layout.latte-2a0242f35acccbf0bbd076d4163c2185.php |
| /var/www/clients/client373/web726/web/libs/Nette/Templating/Helpers.php |
| /var/www/clients/client373/web726/web/libs/Nette/Utils/Json.php |
| /var/www/clients/client373/web726/web/app/AdminModule/presenters/ImportPresenter.php |
| /var/www/clients/client373/web726/web/app/AdminModule/presenters/BaseAdminPresenter.php |
| /var/www/clients/client373/web726/web/libs/Nette/Latte/Macros/UIMacros.php |
| /var/www/clients/client373/web726/web/libs/Nette/Latte/Macros/FormMacros.php |
| /var/www/clients/client373/web726/web/libs/Nette/Diagnostics/templates/bluescreen.phtml |
| BCMath support | enabled |
| Directive | Local Value | Master Value |
|---|---|---|
| bcmath.scale | 0 | 0 |
| BZip2 Support | Enabled |
| Stream Wrapper support | compress.bzip2:// |
| Stream Filter support | bzip2.decompress, bzip2.compress |
| BZip2 Version | 1.0.8, 13-Jul-2019 |
| Calendar support | enabled |
| Directive | Local Value | Master Value |
|---|---|---|
| cgi.check_shebang_line | 1 | 1 |
| cgi.discard_path | 0 | 0 |
| cgi.fix_pathinfo | 1 | 1 |
| cgi.force_redirect | 1 | 1 |
| cgi.nph | 0 | 0 |
| cgi.redirect_status_env | no value | no value |
| cgi.rfc2616_headers | 0 | 0 |
| fastcgi.logging | 1 | 1 |
| PHP Version | 5.6.40 |
| Directive | Local Value | Master Value |
|---|---|---|
| allow_url_fopen | On | On |
| allow_url_include | Off | Off |
| always_populate_raw_post_data | -1 | -1 |
| arg_separator.input | & | & |
| arg_separator.output | & | & |
| asp_tags | Off | Off |
| auto_append_file | no value | no value |
| auto_globals_jit | On | On |
| auto_prepend_file | no value | no value |
| browscap | no value | no value |
| default_charset | UTF-8 | UTF-8 |
| default_mimetype | text/html | text/html |
| disable_classes | no value | no value |
| disable_functions | no value | no value |
| display_errors | On | Off |
| display_startup_errors | Off | Off |
| doc_root | no value | no value |
| docref_ext | no value | no value |
| docref_root | no value | no value |
| enable_dl | Off | Off |
| enable_post_data_reading | On | On |
| error_append_string | no value | no value |
| error_log | /var/www/clients/client373/web726/web/log/php_error.log | no value |
| error_prepend_string | no value | no value |
| error_reporting | 0 | 22527 |
| exit_on_timeout | Off | Off |
| expose_php | Off | Off |
| extension_dir | /opt/php-5.6/lib/php/extensions/no-debug-non-zts-20131226 | /opt/php-5.6/lib/php/extensions/no-debug-non-zts-20131226 |
| file_uploads | On | On |
| highlight.comment | #998; font-style: italic | #FF8000 |
| highlight.default | #000 | #0000BB |
| highlight.html | #06B | #000000 |
| highlight.keyword | #D24; font-weight: bold | #007700 |
| highlight.string | #080 | #DD0000 |
| html_errors | Off | On |
| ignore_repeated_errors | Off | Off |
| ignore_repeated_source | Off | Off |
| ignore_user_abort | Off | Off |
| implicit_flush | Off | Off |
| include_path | .:/opt/php-5.6/lib/php | .:/opt/php-5.6/lib/php |
| input_encoding | no value | no value |
| internal_encoding | no value | no value |
| log_errors | Off | On |
| log_errors_max_len | 1024 | 1024 |
| mail.add_x_header | On | On |
| mail.force_extra_parameters | no value | no value |
| mail.log | no value | no value |
| max_execution_time | 30 | 30 |
| max_file_uploads | 20 | 20 |
| max_input_nesting_level | 64 | 64 |
| max_input_time | 60 | 60 |
| max_input_vars | 1000 | 1000 |
| memory_limit | 640M | 640M |
| open_basedir | /var/www/clients/client373/web726/web:/var/www/clients/client373/web726/private:/var/www/clients/client373/web726/tmp:/var/www/ecatalogue.danubian.eu/web:/srv/www/ecatalogue.danubian.eu/web:/usr/share/php5:/usr/share/php:/tmp:/usr/share/phpmyadmin:/etc/phpmyadmin:/var/lib/phpmyadmin:/dev/random:/dev/urandom | /var/www/clients/client373/web726/web:/var/www/clients/client373/web726/private:/var/www/clients/client373/web726/tmp:/var/www/ecatalogue.danubian.eu/web:/srv/www/ecatalogue.danubian.eu/web:/usr/share/php5:/usr/share/php:/tmp:/usr/share/phpmyadmin:/etc/phpmyadmin:/var/lib/phpmyadmin:/dev/random:/dev/urandom |
| output_buffering | no value | no value |
| output_encoding | no value | no value |
| output_handler | no value | no value |
| post_max_size | 40M | 40M |
| precision | 14 | 14 |
| realpath_cache_size | 16K | 16K |
| realpath_cache_ttl | 120 | 120 |
| register_argc_argv | Off | Off |
| report_memleaks | On | On |
| report_zend_debug | On | On |
| request_order | GP | GP |
| sendmail_from | no value | no value |
| sendmail_path | /usr/sbin/sendmail -t -i -f webmaster@ecatalogue.danubian.eu | /usr/sbin/sendmail -t -i -f webmaster@ecatalogue.danubian.eu |
| serialize_precision | 17 | 17 |
| short_open_tag | On | On |
| SMTP | localhost | localhost |
| smtp_port | 25 | 25 |
| sql.safe_mode | Off | Off |
| sys_temp_dir | no value | no value |
| track_errors | Off | Off |
| unserialize_callback_func | no value | no value |
| upload_max_filesize | 64M | 64M |
| upload_tmp_dir | /var/www/clients/client373/web726/tmp | /var/www/clients/client373/web726/tmp |
| user_dir | no value | no value |
| user_ini.cache_ttl | 300 | 300 |
| user_ini.filename | .user.ini | .user.ini |
| variables_order | GPCS | GPCS |
| xmlrpc_error_number | 0 | 0 |
| xmlrpc_errors | Off | Off |
| zend.detect_unicode | On | On |
| zend.enable_gc | On | On |
| zend.multibyte | Off | Off |
| zend.script_encoding | no value | no value |
| ctype functions | enabled |
| cURL support | enabled |
| cURL Information | 7.74.0 |
| Age | 7 |
| Features | |
| AsynchDNS | Yes |
| CharConv | No |
| Debug | No |
| GSS-Negotiate | No |
| IDN | Yes |
| IPv6 | Yes |
| krb4 | No |
| Largefile | Yes |
| libz | Yes |
| NTLM | Yes |
| NTLMWB | Yes |
| SPNEGO | Yes |
| SSL | Yes |
| SSPI | No |
| TLS-SRP | Yes |
| Protocols | dict, file, ftp, ftps, gopher, http, https, imap, imaps, ldap, ldaps, mqtt, pop3, pop3s, rtmp, rtsp, scp, sftp, smb, smbs, smtp, smtps, telnet, tftp |
| Host | x86_64-pc-linux-gnu |
| SSL Version | GnuTLS/3.7.1 |
| ZLib Version | 1.2.11 |
| libSSH Version | libssh2/1.9.0 |
| date/time support | enabled |
| "Olson" Timezone Database Version | 2016.10 |
| Timezone Database | internal |
| Default timezone | Europe/Prague |
| Directive | Local Value | Master Value |
|---|---|---|
| date.default_latitude | 31.7667 | 31.7667 |
| date.default_longitude | 35.2333 | 35.2333 |
| date.sunrise_zenith | 90.583333 | 90.583333 |
| date.sunset_zenith | 90.583333 | 90.583333 |
| date.timezone | Europe/Prague | Europe/Prague |
| DBA support | enabled |
| Supported handlers | cdb cdb_make inifile flatfile |
| Directive | Local Value | Master Value |
|---|---|---|
| dba.default_handler | flatfile | flatfile |
| DOM/XML | enabled |
| DOM/XML API Version | 20031129 |
| libxml Version | 2.9.10 |
| HTML Support | enabled |
| XPath Support | enabled |
| XPointer Support | enabled |
| Schema Support | enabled |
| RelaxNG Support | enabled |
| Regex Library | Bundled library enabled |
| EXIF Support | enabled |
| EXIF Version | 1.4 $Id: cad29b729548e4206f0697710cc9e177f26fdff3 $ |
| Supported EXIF Version | 0220 |
| Supported filetypes | JPEG,TIFF |
| Directive | Local Value | Master Value |
|---|---|---|
| exif.decode_jis_intel | JIS | JIS |
| exif.decode_jis_motorola | JIS | JIS |
| exif.decode_unicode_intel | UCS-2LE | UCS-2LE |
| exif.decode_unicode_motorola | UCS-2BE | UCS-2BE |
| exif.encode_jis | no value | no value |
| exif.encode_unicode | ISO-8859-15 | ISO-8859-15 |
| fileinfo support | enabled |
| version | 1.0.5 |
| libmagic | 517 |
| Input Validation and Filtering | enabled |
| Revision | $Id: 5b79667bd9a68977a9b4f7505223a8e216e04908 $ |
| Directive | Local Value | Master Value |
|---|---|---|
| filter.default | unsafe_raw | unsafe_raw |
| filter.default_flags | no value | no value |
| FTP support | enabled |
| GD Support | enabled |
| GD Version | bundled (2.1.0 compatible) |
| GIF Read Support | enabled |
| GIF Create Support | enabled |
| JPEG Support | enabled |
| libJPEG Version | 6b |
| PNG Support | enabled |
| libPNG Version | 1.6.37 |
| WBMP Support | enabled |
| XBM Support | enabled |
| Directive | Local Value | Master Value |
|---|---|---|
| gd.jpeg_ignore_warning | 0 | 0 |
| GetText Support | enabled |
| hash support | enabled |
| Hashing Engines | md2 md4 md5 sha1 sha224 sha256 sha384 sha512 ripemd128 ripemd160 ripemd256 ripemd320 whirlpool tiger128,3 tiger160,3 tiger192,3 tiger128,4 tiger160,4 tiger192,4 snefru snefru256 gost gost-crypto adler32 crc32 crc32b fnv132 fnv1a32 fnv164 fnv1a64 joaat haval128,3 haval160,3 haval192,3 haval224,3 haval256,3 haval128,4 haval160,4 haval192,4 haval224,4 haval256,4 haval128,5 haval160,5 haval192,5 haval224,5 haval256,5 |
| iconv support | enabled |
| iconv implementation | glibc |
| iconv library version | 2.31 |
| Directive | Local Value | Master Value |
|---|---|---|
| iconv.input_encoding | no value | no value |
| iconv.internal_encoding | UTF-8 | no value |
| iconv.output_encoding | no value | no value |
| imagick module | enabled |
|---|---|
| imagick module version | 3.2.0RC1 |
| imagick classes | Imagick, ImagickDraw, ImagickPixel, ImagickPixelIterator |
| ImageMagick version | ImageMagick 6.9.11-60 Q16 x86_64 2021-01-25 https://imagemagick.org |
| ImageMagick copyright | (C) 1999-2021 ImageMagick Studio LLC |
| ImageMagick release date | 2021-01-25 |
| ImageMagick number of supported formats: | 247 |
| ImageMagick supported formats | 3FR, 3G2, 3GP, AAI, AI, APNG, ART, ARW, AVI, AVIF, AVS, BGR, BGRA, BGRO, BIE, BMP, BMP2, BMP3, BRF, CAL, CALS, CANVAS, CAPTION, CIN, CIP, CLIP, CMYK, CMYKA, CR2, CR3, CRW, CUR, CUT, DATA, DCM, DCR, DCX, DDS, DFONT, DJVU, DNG, DOT, DPX, DXT1, DXT5, EPDF, EPI, EPS, EPS2, EPS3, EPSF, EPSI, EPT, EPT2, EPT3, ERF, EXR, FAX, FILE, FITS, FRACTAL, FTP, FTS, G3, G4, GIF, GIF87, GRADIENT, GRAY, GRAYA, GROUP4, GV, H, HALD, HDR, HEIC, HISTOGRAM, HRZ, HTM, HTML, HTTP, HTTPS, ICB, ICO, ICON, IIQ, INFO, INLINE, IPL, ISOBRL, ISOBRL6, J2C, J2K, JBG, JBIG, JNG, JNX, JP2, JPC, JPE, JPEG, JPG, JPM, JPS, JPT, JSON, K25, KDC, LABEL, M2V, M4V, MAC, MAGICK, MAP, MASK, MAT, MATTE, MEF, MIFF, MKV, MNG, MONO, MOV, MP4, MPC, MPG, MRW, MSL, MSVG, MTV, MVG, NEF, NRW, NULL, ORF, OTB, OTF, PAL, PALM, PAM, PANGO, PATTERN, PBM, PCD, PCDS, PCL, PCT, PCX, PDB, PDF, PDFA, PEF, PES, PFA, PFB, PFM, PGM, PGX, PICON, PICT, PIX, PJPEG, PLASMA, PNG, PNG00, PNG24, PNG32, PNG48, PNG64, PNG8, PNM, POCKETMOD, PPM, PREVIEW, PS, PS2, PS3, PSB, PSD, PTIF, PWP, RADIAL-GRADIENT, RAF, RAS, RAW, RGB, RGBA, RGBO, RGF, RLA, RLE, RMF, RW2, SCR, SCT, SFW, SGI, SHTML, SIX, SIXEL, SPARSE-COLOR, SR2, SRF, STEGANO, SUN, SVG, SVGZ, TEXT, TGA, THUMBNAIL, TIFF, TIFF64, TILE, TIM, TTC, TTF, TXT, UBRL, UBRL6, UIL, UYVY, VDA, VICAR, VID, VIDEO, VIFF, VIPS, VST, WBMP, WEBM, WEBP, WMF, WMV, WMZ, WPG, X, X3F, XBM, XC, XCF, XPM, XPS, XV, XWD, YCbCr, YCbCrA, YUV |
| Directive | Local Value | Master Value |
|---|---|---|
| imagick.locale_fix | 0 | 0 |
| imagick.progress_monitor | 0 | 0 |
| Internationalization support | enabled |
|---|---|
| version | 1.1.0 |
| ICU version | 67.1 |
| ICU Data version | 67.1 |
| Directive | Local Value | Master Value |
|---|---|---|
| intl.default_locale | no value | no value |
| intl.error_level | 0 | 0 |
| intl.use_exceptions | 0 | 0 |
| json support | enabled |
| json version | 1.2.1 |
| libXML support | active |
| libXML Compiled Version | 2.9.10 |
| libXML Loaded Version | 20910 |
| libXML streams | enabled |
| Multibyte Support | enabled |
| Multibyte string engine | libmbfl |
| HTTP input encoding translation | disabled |
| libmbfl version | 1.3.2 |
| mbstring extension makes use of "streamable kanji code filter and converter", which is distributed under the GNU Lesser General Public License version 2.1. |
|---|
| Multibyte (japanese) regex support | enabled |
| Multibyte regex (oniguruma) backtrack check | On |
| Multibyte regex (oniguruma) version | 5.9.5 |
| Directive | Local Value | Master Value |
|---|---|---|
| mbstring.detect_order | no value | no value |
| mbstring.encoding_translation | Off | Off |
| mbstring.func_overload | 0 | 0 |
| mbstring.http_input | no value | no value |
| mbstring.http_output | no value | no value |
| mbstring.http_output_conv_mimetypes | ^(text/|application/xhtml\+xml) | ^(text/|application/xhtml\+xml) |
| mbstring.internal_encoding | no value | no value |
| mbstring.language | neutral | neutral |
| mbstring.strict_detection | Off | Off |
| mbstring.substitute_character | none | no value |
| mcrypt support | enabled |
|---|---|
| mcrypt_filter support | enabled |
| Version | 2.5.8 |
| Api No | 20021217 |
| Supported ciphers | cast-128 gost rijndael-128 twofish arcfour cast-256 loki97 rijndael-192 saferplus wake blowfish-compat des rijndael-256 serpent xtea blowfish enigma rc2 tripledes |
| Supported modes | cbc cfb ctr ecb ncfb nofb ofb stream |
| Directive | Local Value | Master Value |
|---|---|---|
| mcrypt.algorithms_dir | no value | no value |
| mcrypt.modes_dir | no value | no value |
| memcache support | enabled |
|---|---|
| Version | 3.0.7 |
| Revision | $Revision: 326387 $ |
| Directive | Local Value | Master Value |
|---|---|---|
| memcache.allow_failover | 1 | 1 |
| memcache.chunk_size | 32768 | 32768 |
| memcache.compress_threshold | 20000 | 20000 |
| memcache.default_port | 11211 | 11211 |
| memcache.hash_function | crc32 | crc32 |
| memcache.hash_strategy | consistent | consistent |
| memcache.lock_timeout | 15 | 15 |
| memcache.max_failover_attempts | 20 | 20 |
| memcache.protocol | ascii | ascii |
| memcache.redundancy | 1 | 1 |
| memcache.session_redundancy | 2 | 2 |
| memcached support | enabled |
|---|---|
| Version | 2.2.0 |
| libmemcached version | 1.0.18 |
| SASL support | yes |
| Session support | yes |
| igbinary support | no |
| json support | no |
| msgpack support | no |
| Directive | Local Value | Master Value |
|---|---|---|
| memcached.compression_factor | 1.3 | 1.3 |
| memcached.compression_threshold | 2000 | 2000 |
| memcached.compression_type | fastlz | fastlz |
| memcached.serializer | php | php |
| memcached.sess_binary | 0 | 0 |
| memcached.sess_connect_timeout | 1000 | 1000 |
| memcached.sess_consistent_hash | 0 | 0 |
| memcached.sess_lock_expire | 0 | 0 |
| memcached.sess_lock_max_wait | 0 | 0 |
| memcached.sess_lock_wait | 150000 | 150000 |
| memcached.sess_locking | 1 | 1 |
| memcached.sess_number_of_replicas | 0 | 0 |
| memcached.sess_prefix | memc.sess.key. | memc.sess.key. |
| memcached.sess_randomize_replica_read | 0 | 0 |
| memcached.sess_remove_failed | 0 | 0 |
| memcached.sess_sasl_password | no value | no value |
| memcached.sess_sasl_username | no value | no value |
| memcached.store_retry_count | 2 | 2 |
| memcached.use_sasl | 0 | 0 |
| MHASH support | Enabled |
| MHASH API Version | Emulated Support |
| MySQL Support | enabled |
|---|---|
| Active Persistent Links | 0 |
| Active Links | 0 |
| Client API version | mysqlnd 5.0.11-dev - 20120503 - $Id: 76b08b24596e12d4553bd41fc93cccd5bac2fe7a $ |
| Directive | Local Value | Master Value |
|---|---|---|
| mysql.allow_local_infile | On | On |
| mysql.allow_persistent | On | On |
| mysql.connect_timeout | 60 | 60 |
| mysql.default_host | no value | no value |
| mysql.default_password | no value | no value |
| mysql.default_port | no value | no value |
| mysql.default_socket | /var/run/mysqld/mysqld.sock | /var/run/mysqld/mysqld.sock |
| mysql.default_user | no value | no value |
| mysql.max_links | Unlimited | Unlimited |
| mysql.max_persistent | Unlimited | Unlimited |
| mysql.trace_mode | Off | Off |
| MysqlI Support | enabled |
|---|---|
| Client API library version | mysqlnd 5.0.11-dev - 20120503 - $Id: 76b08b24596e12d4553bd41fc93cccd5bac2fe7a $ |
| Active Persistent Links | 0 |
| Inactive Persistent Links | 0 |
| Active Links | 0 |
| Directive | Local Value | Master Value |
|---|---|---|
| mysqli.allow_local_infile | On | On |
| mysqli.allow_persistent | On | On |
| mysqli.default_host | no value | no value |
| mysqli.default_port | 3306 | 3306 |
| mysqli.default_pw | no value | no value |
| mysqli.default_socket | /var/run/mysqld/mysqld.sock | /var/run/mysqld/mysqld.sock |
| mysqli.default_user | no value | no value |
| mysqli.max_links | Unlimited | Unlimited |
| mysqli.max_persistent | Unlimited | Unlimited |
| mysqli.reconnect | Off | Off |
| mysqli.rollback_on_cached_plink | Off | Off |
| mysqlnd | enabled |
|---|---|
| Version | mysqlnd 5.0.11-dev - 20120503 - $Id: 76b08b24596e12d4553bd41fc93cccd5bac2fe7a $ |
| Compression | supported |
| core SSL | supported |
| extended SSL | supported |
| Command buffer size | 4096 |
| Read buffer size | 32768 |
| Read timeout | 31536000 |
| Collecting statistics | Yes |
| Collecting memory statistics | No |
| Tracing | n/a |
| Loaded plugins | mysqlnd,debug_trace,auth_plugin_mysql_native_password,auth_plugin_mysql_clear_password,auth_plugin_sha256_password |
| API Extensions | mysqli,pdo_mysql,mysql |
| mysqlnd statistics | |
|---|---|
| bytes_sent | 600700 |
| bytes_received | 5425372 |
| packets_sent | 8732 |
| packets_received | 152514 |
| protocol_overhead_in | 610056 |
| protocol_overhead_out | 34928 |
| bytes_received_ok_packet | 0 |
| bytes_received_eof_packet | 0 |
| bytes_received_rset_header_packet | 31131 |
| bytes_received_rset_field_meta_packet | 0 |
| bytes_received_rset_row_packet | 27311 |
| bytes_received_prepare_response_packet | 1357512 |
| bytes_received_change_user_packet | 3969292 |
| packets_sent_command | 4166 |
| packets_received_ok | 0 |
| packets_received_eof | 0 |
| packets_received_rset_header | 3459 |
| packets_received_rset_field_meta | 0 |
| packets_received_rset_row | 3967 |
| packets_received_prepare_response | 25860 |
| packets_received_change_user | 118828 |
| result_set_queries | 3459 |
| non_result_set_queries | 508 |
| no_index_used | 1370 |
| bad_index_used | 0 |
| slow_queries | 0 |
| buffered_sets | 3459 |
| unbuffered_sets | 0 |
| ps_buffered_sets | 0 |
| ps_unbuffered_sets | 0 |
| flushed_normal_sets | 0 |
| flushed_ps_sets | 0 |
| ps_prepared_never_executed | 0 |
| ps_prepared_once_executed | 0 |
| rows_fetched_from_server_normal | 115369 |
| rows_fetched_from_server_ps | 0 |
| rows_buffered_from_client_normal | 115369 |
| rows_buffered_from_client_ps | 0 |
| rows_fetched_from_client_normal_buffered | 115368 |
| rows_fetched_from_client_normal_unbuffered | 0 |
| rows_fetched_from_client_ps_buffered | 0 |
| rows_fetched_from_client_ps_unbuffered | 0 |
| rows_fetched_from_client_ps_cursor | 0 |
| rows_affected_normal | 108 |
| rows_affected_ps | 0 |
| rows_skipped_normal | 115369 |
| rows_skipped_ps | 0 |
| copy_on_write_saved | 526789 |
| copy_on_write_performed | 0 |
| command_buffer_too_small | 0 |
| connect_success | 200 |
| connect_failure | 0 |
| connection_reused | 0 |
| reconnect | 0 |
| pconnect_success | 0 |
| active_connections | 18446744073709551418 |
| active_persistent_connections | 0 |
| explicit_close | 199 |
| implicit_close | 0 |
| disconnect_close | 0 |
| in_middle_of_command_close | 0 |
| explicit_free_result | 3458 |
| implicit_free_result | 1 |
| explicit_stmt_close | 0 |
| implicit_stmt_close | 0 |
| mem_emalloc_count | 0 |
| mem_emalloc_amount | 0 |
| mem_ecalloc_count | 0 |
| mem_ecalloc_amount | 0 |
| mem_erealloc_count | 0 |
| mem_erealloc_amount | 0 |
| mem_efree_count | 0 |
| mem_efree_amount | 0 |
| mem_malloc_count | 0 |
| mem_malloc_amount | 0 |
| mem_calloc_count | 0 |
| mem_calloc_amount | 0 |
| mem_realloc_count | 0 |
| mem_realloc_amount | 0 |
| mem_free_count | 0 |
| mem_free_amount | 0 |
| mem_estrndup_count | 0 |
| mem_strndup_count | 0 |
| mem_estndup_count | 0 |
| mem_strdup_count | 0 |
| proto_text_fetched_null | 0 |
| proto_text_fetched_bit | 0 |
| proto_text_fetched_tinyint | 0 |
| proto_text_fetched_short | 0 |
| proto_text_fetched_int24 | 0 |
| proto_text_fetched_int | 98196 |
| proto_text_fetched_bigint | 1726 |
| proto_text_fetched_decimal | 0 |
| proto_text_fetched_float | 0 |
| proto_text_fetched_double | 0 |
| proto_text_fetched_date | 0 |
| proto_text_fetched_year | 0 |
| proto_text_fetched_time | 0 |
| proto_text_fetched_datetime | 0 |
| proto_text_fetched_timestamp | 0 |
| proto_text_fetched_string | 398177 |
| proto_text_fetched_blob | 0 |
| proto_text_fetched_enum | 229 |
| proto_text_fetched_set | 0 |
| proto_text_fetched_geometry | 0 |
| proto_text_fetched_other | 0 |
| proto_binary_fetched_null | 0 |
| proto_binary_fetched_bit | 0 |
| proto_binary_fetched_tinyint | 0 |
| proto_binary_fetched_short | 0 |
| proto_binary_fetched_int24 | 0 |
| proto_binary_fetched_int | 0 |
| proto_binary_fetched_bigint | 0 |
| proto_binary_fetched_decimal | 0 |
| proto_binary_fetched_float | 0 |
| proto_binary_fetched_double | 0 |
| proto_binary_fetched_date | 0 |
| proto_binary_fetched_year | 0 |
| proto_binary_fetched_time | 0 |
| proto_binary_fetched_datetime | 0 |
| proto_binary_fetched_timestamp | 0 |
| proto_binary_fetched_string | 0 |
| proto_binary_fetched_json | 0 |
| proto_binary_fetched_blob | 0 |
| proto_binary_fetched_enum | 0 |
| proto_binary_fetched_set | 0 |
| proto_binary_fetched_geometry | 0 |
| proto_binary_fetched_other | 0 |
| init_command_executed_count | 0 |
| init_command_failed_count | 0 |
| com_quit | 199 |
| com_init_db | 0 |
| com_query | 3967 |
| com_field_list | 0 |
| com_create_db | 0 |
| com_drop_db | 0 |
| com_refresh | 0 |
| com_shutdown | 0 |
| com_statistics | 0 |
| com_process_info | 0 |
| com_connect | 0 |
| com_process_kill | 0 |
| com_debug | 0 |
| com_ping | 0 |
| com_time | 0 |
| com_delayed_insert | 0 |
| com_change_user | 0 |
| com_binlog_dump | 0 |
| com_table_dump | 0 |
| com_connect_out | 0 |
| com_register_slave | 0 |
| com_stmt_prepare | 0 |
| com_stmt_execute | 0 |
| com_stmt_send_long_data | 0 |
| com_stmt_close | 0 |
| com_stmt_reset | 0 |
| com_stmt_set_option | 0 |
| com_stmt_fetch | 0 |
| com_deamon | 0 |
| bytes_received_real_data_normal | 2966998 |
| bytes_received_real_data_ps | 0 |
| OpenSSL support | enabled |
| OpenSSL Library Version | OpenSSL 1.0.2u 20 Dec 2019 |
| OpenSSL Header Version | OpenSSL 1.0.2u 20 Dec 2019 |
| Openssl default config | /opt/openssl-1.0.2u/ssl/openssl.cnf |
| Directive | Local Value | Master Value |
|---|---|---|
| openssl.cafile | /etc/ssl/certs/ca-certificates.crt | /etc/ssl/certs/ca-certificates.crt |
| openssl.capath | no value | no value |
| pcntl support | enabled |
|---|
| PCRE (Perl Compatible Regular Expressions) Support | enabled |
| PCRE Library Version | 8.38 2015-11-23 |
| Directive | Local Value | Master Value |
|---|---|---|
| pcre.backtrack_limit | 1000000 | 1000000 |
| pcre.recursion_limit | 100000 | 100000 |
| PDO support | enabled |
|---|---|
| PDO drivers | mysql, sqlite |
| PDO Driver for MySQL | enabled |
|---|---|
| Client API version | mysqlnd 5.0.11-dev - 20120503 - $Id: 76b08b24596e12d4553bd41fc93cccd5bac2fe7a $ |
| Directive | Local Value | Master Value |
|---|---|---|
| pdo_mysql.default_socket | /var/run/mysqld/mysqld.sock | /var/run/mysqld/mysqld.sock |
| PDO Driver for SQLite 3.x | enabled |
|---|---|
| SQLite Library | 3.8.10.2 |
| Phar: PHP Archive support | enabled |
|---|---|
| Phar EXT version | 2.0.2 |
| Phar API version | 1.1.1 |
| SVN revision | $Id: 6e5cec2462a6ded53d4379ea9a69487a60d5c43c $ |
| Phar-based phar archives | enabled |
| Tar-based phar archives | enabled |
| ZIP-based phar archives | enabled |
| gzip compression | enabled |
| bzip2 compression | enabled |
| OpenSSL support | enabled |
|
Phar based on pear/PHP_Archive, original concept by Davey Shafik. Phar fully realized by Gregory Beaver and Marcus Boerger. Portions of tar implementation Copyright (c) 2003-2009 Tim Kientzle. |
| Directive | Local Value | Master Value |
|---|---|---|
| phar.cache_list | no value | no value |
| phar.readonly | On | On |
| phar.require_hash | On | On |
| Revision | $Id: 5f4acc20904b1406142f2a0ede068db048c77e77 $ |
| PSpell Support | enabled |
| Readline Support | enabled |
|---|---|
| Readline library | 8.1 |
| Directive | Local Value | Master Value |
|---|---|---|
| cli.pager | no value | no value |
| cli.prompt | \b \> | \b \> |
| Recode Support | enabled |
| Revision | $Id: cde03aacd1a1218dcad9dabc2f284594a0a4aa16 $ |
| Reflection | enabled |
|---|---|
| Version | $Id: 5f15287237d5f78d75b19c26915aa7bd83dee8b8 $ |
| Session Support | enabled |
| Registered save handlers | files user memcache memcached |
| Registered serializer handlers | php_serialize php php_binary wddx |
| Directive | Local Value | Master Value |
|---|---|---|
| session.auto_start | Off | Off |
| session.cache_expire | 180 | 180 |
| session.cache_limiter | nocache | nocache |
| session.cookie_domain | no value | no value |
| session.cookie_httponly | On | Off |
| session.cookie_lifetime | 3600 | 0 |
| session.cookie_path | / | / |
| session.cookie_secure | Off | Off |
| session.entropy_file | /dev/urandom | /dev/urandom |
| session.entropy_length | 16 | 16 |
| session.gc_divisor | 1000 | 1000 |
| session.gc_maxlifetime | 3600 | 1440 |
| session.gc_probability | 1 | 1 |
| session.hash_bits_per_character | 5 | 5 |
| session.hash_function | 0 | 0 |
| session.name | PHPSESSID | PHPSESSID |
| session.referer_check | no value | no value |
| session.save_handler | files | files |
| session.save_path | /var/www/clients/client373/web726/tmp | /var/www/clients/client373/web726/tmp |
| session.serialize_handler | php | php |
| session.upload_progress.cleanup | On | On |
| session.upload_progress.enabled | On | On |
| session.upload_progress.freq | 1% | 1% |
| session.upload_progress.min_freq | 1 | 1 |
| session.upload_progress.name | PHP_SESSION_UPLOAD_PROGRESS | PHP_SESSION_UPLOAD_PROGRESS |
| session.upload_progress.prefix | upload_progress_ | upload_progress_ |
| session.use_cookies | On | On |
| session.use_only_cookies | On | Off |
| session.use_strict_mode | Off | Off |
| session.use_trans_sid | 0 | 0 |
| shmop support | enabled |
| Simplexml support | enabled |
|---|---|
| Revision | $Id: d7077fc935154236afb4fe70814ba358efdbdca4 $ |
| Schema support | enabled |
| Soap Client | enabled |
| Soap Server | enabled |
| Directive | Local Value | Master Value |
|---|---|---|
| soap.wsdl_cache | 1 | 1 |
| soap.wsdl_cache_dir | /tmp | /tmp |
| soap.wsdl_cache_enabled | 1 | 1 |
| soap.wsdl_cache_limit | 5 | 5 |
| soap.wsdl_cache_ttl | 86400 | 86400 |
| Sockets Support | enabled |
| SPL support | enabled |
|---|---|
| Interfaces | Countable, OuterIterator, RecursiveIterator, SeekableIterator, SplObserver, SplSubject |
| Classes | AppendIterator, ArrayIterator, ArrayObject, BadFunctionCallException, BadMethodCallException, CachingIterator, CallbackFilterIterator, DirectoryIterator, DomainException, EmptyIterator, FilesystemIterator, FilterIterator, GlobIterator, InfiniteIterator, InvalidArgumentException, IteratorIterator, LengthException, LimitIterator, LogicException, MultipleIterator, NoRewindIterator, OutOfBoundsException, OutOfRangeException, OverflowException, ParentIterator, RangeException, RecursiveArrayIterator, RecursiveCachingIterator, RecursiveCallbackFilterIterator, RecursiveDirectoryIterator, RecursiveFilterIterator, RecursiveIteratorIterator, RecursiveRegexIterator, RecursiveTreeIterator, RegexIterator, RuntimeException, SplDoublyLinkedList, SplFileInfo, SplFileObject, SplFixedArray, SplHeap, SplMinHeap, SplMaxHeap, SplObjectStorage, SplPriorityQueue, SplQueue, SplStack, SplTempFileObject, UnderflowException, UnexpectedValueException |
| SQLite3 support | enabled |
|---|---|
| SQLite3 module version | 0.7-dev |
| SQLite Library | 3.8.10.2 |
| Directive | Local Value | Master Value |
|---|---|---|
| sqlite3.extension_dir | no value | no value |
| SSH2 support | enabled |
|---|---|
| extension version | 0.13 |
| libssh2 version | 1.9.0 |
| banner | SSH-2.0-libssh2_1.9.0 |
| Dynamic Library Support | enabled |
| Path to sendmail | /usr/sbin/sendmail -t -i -f webmaster@ecatalogue.danubian.eu |
| Directive | Local Value | Master Value |
|---|---|---|
| assert.active | 1 | 1 |
| assert.bail | 0 | 0 |
| assert.callback | no value | no value |
| assert.quiet_eval | 0 | 0 |
| assert.warning | 1 | 1 |
| auto_detect_line_endings | 0 | 0 |
| default_socket_timeout | 60 | 60 |
| from | no value | no value |
| url_rewriter.tags | a=href,area=href,frame=src,input=src,form=fakeentry | a=href,area=href,frame=src,input=src,form=fakeentry |
| user_agent | no value | no value |
| svn support | enabled |
|---|---|
| svn client version | 1.14.1 |
| svn extension version | 1.0.3 |
| sysvmsg support | enabled |
| Revision | $Id: 58590192720bc56939152fde3645d808b348bb9b $ |
| Tidy support | enabled |
|---|---|
| libTidy Release | 2017/11/25 |
| Extension Version | 2.0 ($Id: 57f050b275c6da348310461a64aaad21feef8091 $) |
| Directive | Local Value | Master Value |
|---|---|---|
| tidy.clean_output | no value | no value |
| tidy.default_config | no value | no value |
| Tokenizer Support | enabled |
| WDDX Support | enabled |
|---|---|
| WDDX Session Serializer | enabled |
| XML Support | active |
| XML Namespace Support | active |
| libxml2 Version | 2.9.10 |
| XMLReader | enabled |
| core library version | xmlrpc-epi v. 0.51 |
| php extension version | 0.51 |
| author | Dan Libby |
| homepage | http://xmlrpc-epi.sourceforge.net |
| open sourced by | Epinions.com |
| XMLWriter | enabled |
| XSL | enabled |
| libxslt Version | 1.1.34 |
| libxslt compiled against libxml Version | 2.9.10 |
| EXSLT | enabled |
| libexslt Version | 1.1.34 |
| Zip | enabled |
| Zip version | 1.12.5 |
| Libzip version | 0.11.2 |
| ZLib Support | enabled |
|---|---|
| Stream Wrapper | compress.zlib:// |
| Stream Filter | zlib.inflate, zlib.deflate |
| Compiled Version | 1.2.11 |
| Linked Version | 1.2.11 |
| Directive | Local Value | Master Value |
|---|---|---|
| zlib.output_compression | Off | Off |
| zlib.output_compression_level | -1 | -1 |
| zlib.output_handler | no value | no value |
| Module Name |
|---|
| sysvsem |
| sysvshm |
| Content-Length | 0 |
|---|---|
| Connection | close |
| Host | danubian.eu |
| Accept-Encoding | gzip, br, zstd, deflate |
| Cookie | nette-browser=dilwvut0um; PHPSESSID=3pd2fnp07t6u4dnearcbs68st2 |
| User-Agent | Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com) |
| Accept | */* |
| alpha | "I"
|
|---|---|
| details | "41622" (5)
|
empty
| nette-browser | "dilwvut0um" (10)
|
|---|---|
| PHPSESSID | "3pd2fnp07t6u4dnearcbs68st2" (26)
|
X-Powered-By: Nette Framework
Content-Type: text/html; charset=utf-8
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=3pd2fnp07t6u4dnearcbs68st2; expires=Mon, 20-Jul-2026 08:54:50 GMT; Max-Age=3600; path=/; httponly
Set-Cookie: nette-browser=dilwvut0um; path=/; httponly
X-Frame-Options: SAMEORIGIN
PDOStatement::execute(): MySQL server has gone away search►
File: /var/www/clients/client373/web726/web/libs/Nette/Database/Statement.php Line: 99
89: static $types = array('boolean' => PDO::PARAM_BOOL, 'integer' => PDO::PARAM_INT, 90: 'resource' => PDO::PARAM_LOB, 'NULL' => PDO::PARAM_NULL); 91: 92: foreach ($params as $key => $value) { 93: $type = gettype($value); 94: $this->bindValue(is_int($key) ? $key + 1 : $key, $value, isset($types[$type]) ? $types[$type] : PDO::PARAM_STR); 95: } 96: 97: $time = microtime(TRUE); 98: try { 99: parent::execute(); 100: } catch (\PDOException $e) { 101: $e->queryString = $this->queryString; 102: throw $e; 103: }
/var/www/clients/client373/web726/web/libs/Nette/Database/Statement.php:99 source ► PDOStatement-> execute ()
89: static $types = array('boolean' => PDO::PARAM_BOOL, 'integer' => PDO::PARAM_INT, 90: 'resource' => PDO::PARAM_LOB, 'NULL' => PDO::PARAM_NULL); 91: 92: foreach ($params as $key => $value) { 93: $type = gettype($value); 94: $this->bindValue(is_int($key) ? $key + 1 : $key, $value, isset($types[$type]) ? $types[$type] : PDO::PARAM_STR); 95: } 96: 97: $time = microtime(TRUE); 98: try { 99: parent::execute(); 100: } catch (\PDOException $e) { 101: $e->queryString = $this->queryString; 102: throw $e; 103: }
/var/www/clients/client373/web726/web/libs/Nette/Database/Connection.php:155 source ► Nette\Database\Statement-> execute (arguments ►)
| $params | array(1) ▼ |
|---|
145: { 146: foreach ($params as $value) { 147: if (is_array($value) || is_object($value)) { 148: $need = TRUE; break; 149: } 150: } 151: if (isset($need) && $this->preprocessor !== NULL) { 152: list($statement, $params) = $this->preprocessor->process($statement, $params); 153: } 154: 155: return $this->prepare($statement)->execute($params); 156: } 157: 158: 159: /********************* shortcuts ****************d*g**/
/var/www/clients/client373/web726/web/libs/Nette/Database/Diagnostics/ConnectionPanel.php:103 source ► Nette\Database\Connection-> queryArgs (arguments ►)
| $statement | "EXPLAIN SELECT `id`, `name`, `cores`, `cross_section`, `voltage` FROM `dnb_catalogue_item` WHERE (`locale` = ?) AND (`name` REGEXP "^([^ ]+ )*[^`a`-z] ... " (207)
|
|---|---|
| $params | array(1) ▼ |
93: { 94: $this->disabled = TRUE; 95: $s = ''; 96: foreach ($this->queries as $i => $query) { 97: list($sql, $params, $time, $rows, $connection, $source) = $query; 98: 99: $explain = NULL; // EXPLAIN is called here to work SELECT FOUND_ROWS() 100: if ($this->explain && preg_match('#\s*\(?\s*SELECT\s#iA', $sql)) { 101: try { 102: $cmd = is_string($this->explain) ? $this->explain : 'EXPLAIN'; 103: $explain = $connection->queryArgs("$cmd $sql", $params)->fetchAll(); 104: } catch (\PDOException $e) {} 105: } 106: 107: $s .= '<tr><td>' . sprintf('%0.3f', $time * 1000);
/var/www/clients/client373/web726/web/libs/Nette/Diagnostics/Bar.php:60 source ► Nette\Database\Diagnostics\ConnectionPanel-> getPanel ()
50: */ 51: public function render() 52: { 53: $obLevel = ob_get_level(); 54: $panels = array(); 55: foreach ($this->panels as $id => $panel) { 56: try { 57: $panels[] = array( 58: 'id' => preg_replace('#[^a-z0-9]+#i', '-', $id), 59: 'tab' => $tab = (string) $panel->getTab(), 60: 'panel' => $tab ? (string) $panel->getPanel() : NULL, 61: ); 62: } catch (\Exception $e) { 63: $panels[] = array( 64: 'id' => "error-" . preg_replace('#[^a-z0-9]+#i', '-', $id),
/var/www/clients/client373/web726/web/libs/Nette/Diagnostics/Debugger.php:427 source ► Nette\Diagnostics\Bar-> render ()
417: if ($file = self::log($exception)) { 418: echo "(stored in $file)\n"; 419: if (self::$browser) { 420: exec(self::$browser . ' ' . escapeshellarg($file)); 421: } 422: } 423: 424: } elseif (self::isHtmlMode()) { // dump to browser 425: self::$blueScreen->render($exception); 426: if (self::$bar) { 427: self::$bar->render(); 428: } 429: 430: } elseif (!self::fireLog($exception)) { // AJAX or non-HTML mode 431: $file = self::log($exception, self::ERROR);
inner-code Nette\Diagnostics\Debugger:: _exceptionHandler (arguments ►)
| $exception | PDOException(9) ► |
|---|
| $params | array(1) ▼ |
|---|---|
| $types | array(4) ▼ |
| $key | 0
|
| $value | "DE" (2)
|
| $type | "string" (6)
|
| $time | 1784534090.6082571
|
| $this | Nette\Database\Statement(4) ▼ |
array(1) ▼ [
0 => Nette\Application\Request(7) ► {
method private => "GET" (3)
flags private => array(1) ▼ {
secured => TRUE
}
name private => "Front:Search" (12)
params private => array(5) ▼ {
locale => "de" (2)
action => "default" (7)
id => NULL
alpha => "I"
details => "41622" (5)
}
post private => array(0)
files private => array(0)
frozen private => TRUE
}
]
Danubian\FrontModule\SearchPresenter(38) ► {
selector protected => Danubian\ItemSelector(7) ► {
locale protected => "DE" (2)
parameters protected => array(0)
alpha protected => "I"
substring protected => NULL
connection private => Nette\Database\Connection(6) ▼ {
dsn private => "mysql:host=pecari-sql.xart.cz;dbname=c373danubian" (49)
driver private => Nette\Database\Drivers\MySqlDriver(1) { ... }
preprocessor private => Nette\Database\SqlPreprocessor(6) { ... }
databaseReflection private => Nette\Database\Reflection\DiscoveredReflection(5) { ... }
cache private => Nette\Caching\Cache(4) { ... }
onQuery => array(1) [ ... ]
}
fields private => array(29) ► {
name => array(8) { ... }
category => array(10) { ... }
construction => array(10) { ... }
voltage => array(8) { ... }
core_material => array(8) { ... }
cores => array(8) { ... }
cross_section => array(9) { ... }
conductor_1 => array(8) { ... }
reduced_0 => array(9) { ... }
conductor_2 => array(8) { ... }
core_insulation => array(8) { ... }
conductor_screen => array(9) { ... }
armouring => array(8) { ... }
outer_jacket => array(8) { ... }
outer_diameter => array(10) { ... }
weight => array(10) { ... }
resistance_to => array(8) { ... }
application => array(8) { ... }
standard => array(9) { ... }
colours => array(9) { ... }
fire_performance => array(9) { ... }
leadfree => array(10) { ... }
halogene_free => array(10) { ... }
uv_resistant => array(10) { ... }
min_temperature => array(9) { ... }
group_application => array(10) { ... }
delivery_length_1 => array(9) { ... }
delivery_length_2 => array(9) { ... }
delivery_length_3 => array(9) { ... }
}
nameColumn private => "name" (4)
}
query => NULL
substr => NULL
alpha => "I"
details => "41622" (5)
locale => "de" (2)
moduleName protected => "Front" (5)
pureName protected => "Search" (6)
translator protected => Danubian\GettextTranslator(2) ▼ {
locales protected => array(7) ► [
0 => array(4) { ... }
1 => array(4) { ... }
2 => array(4) { ... }
3 => array(4) { ... }
4 => array(4) { ... }
5 => array(4) { ... }
6 => array(4) { ... }
]
locale protected => array(4) ▼ {
posix => "de_DE" (5)
rfc => "de-de" (5)
iso => "de" (2)
code => "de" (2)
}
}
invalidLinkMode => 2
onShutdown => NULL
request private => Nette\Application\Request(7) ► {
method private => "GET" (3)
flags private => array(1) ▼ {
secured => TRUE
}
name private => "Front:Search" (12)
params private => array(5) ▼ {
locale => "de" (2)
action => "default" (7)
id => NULL
alpha => "I"
details => "41622" (5)
}
post private => array(0)
files private => array(0)
frozen private => TRUE
}
response private => Nette\Application\Responses\TextResponse(1) ▼ {
source private => Nette\Templating\FileTemplate(8) ► {
file private => "/var/www/clients/client373/web726/web/app/FrontModule/templates/Search.default.latte" (84)
onPrepareFilters => array(1) [ ... ]
source private => NULL
params private => array(34) { ... }
filters private => array(0)
helpers private => array(1) { ... }
helperLoaders private => array(2) [ ... ]
cacheStorage private => Nette\Caching\Storages\PhpFileStorage(5) { ... }
}
}
autoCanonicalize => TRUE
absoluteUrls => FALSE
globalParams private => array(0)
globalState private => array(6) ▼ {
query => NULL
substr => NULL
alpha => "I"
details => "41622" (5)
locale => "de" (2)
"vp-page" => NULL
}
globalStateSinces private => array(6) ▼ {
query => "Danubian\FrontModule\SearchPresenter" (36)
substr => "Danubian\FrontModule\SearchPresenter" (36)
alpha => "Danubian\FrontModule\SearchPresenter" (36)
details => "Danubian\FrontModule\SearchPresenter" (36)
locale => "Danubian\FrontModule\BaseFrontPresenter" (39)
"vp-page" => FALSE
}
action private => "default" (7)
view private => "default" (7)
layout private => NULL
payload private => stdClass(0)
signalReceiver private => ""
signal private => NULL
ajaxMode private => FALSE
startupCheck private => TRUE
lastCreatedRequest private => Nette\Application\Request(7) ► {
method private => "FORWARD" (7)
flags private => array(0)
name private => "Admin:Import" (12)
params private => array(2) ▼ {
locale => NULL
action => "default" (7)
}
post private => array(0)
files private => array(0)
frozen private => FALSE
}
lastCreatedRequestFlag private => array(1) ▼ {
current => FALSE
}
context private => SystemContainer(8) ► {
classes => array(50) ► {
"nette\object" => FALSE
"nette\caching\storages\ijournal" => "nette.cacheJournal" (18)
"nette\caching\storages\filejournal" => "nette.cacheJournal" (18)
"nette\caching\istorage" => "cacheStorage" (12)
"nette\caching\storages\filestorage" => "cacheStorage" (12)
"nette\http\requestfactory" => "nette.httpRequestFactory" (24)
"nette\http\irequest" => "httpRequest" (11)
"nette\http\request" => "httpRequest" (11)
"nette\http\iresponse" => "httpResponse" (12)
"nette\http\response" => "httpResponse" (12)
"nette\http\context" => "nette.httpContext" (17)
"nette\http\session" => "session" (7)
"nette\security\iuserstorage" => "nette.userStorage" (17)
"nette\http\userstorage" => "nette.userStorage" (17)
"nette\security\user" => "user" (4)
"nette\application\application" => "application" (11)
"nette\application\presenterfactory" => "nette.presenterFactory" (22)
"nette\application\ipresenterfactory" => "nette.presenterFactory" (22)
"danubian\presenterfactory" => "nette.presenterFactory" (22)
"nette\application\irouter" => "router" (6)
"nette\mail\imailer" => "nette.mailer" (12)
"nette\mail\sendmailmailer" => "nette.mailer" (12)
"nette\di\nestedaccessor" => "nette.database" (14)
pdo => "nette.database.default" (22)
"nette\database\connection" => "nette.database.default" (22)
"danubian\schemamanager" => "schemaManager" (13)
"danubian\referencechecker" => "referenceChecker" (16)
"danubian\legaldocuments" => "legalDocuments" (14)
"danubian\cataloguerepository" => "catalogueRepository" (19)
"danubian\baserepository" => FALSE
"danubian\importsessionrepository" => "importSessionRepository" (23)
"danubian\userrepository" => "userRepository" (14)
"danubian\searchqueryrepository" => "searchQueryRepository" (21)
"danubian\logitemrepository" => "logItemRepository" (17)
"danubian\itemselector" => "itemSelector" (12)
"danubian\excelparsingservice" => "excelParsing" (12)
"danubian\routerfactory" => "routerFactory" (13)
"nette\security\permission" => "authorization" (13)
"nette\security\iauthorizator" => "authorization" (13)
"danubian\authorizationservice" => "authorization" (13)
"danubian\downloadablehelper" => FALSE
"danubian\datasheethelper" => "dataSheetHelper" (15)
"danubian\cataloguecommon" => "catalogueCommon" (15)
"danubian\appendixhelper" => "appendixHelper" (14)
"nette\security\iauthenticator" => "authentication" (14)
"danubian\authenticationservice" => "authentication" (14)
"nette\freezableobject" => "container" (9)
"nette\ifreezable" => "container" (9)
"nette\di\icontainer" => "container" (9)
"nette\di\container" => "container" (9)
}
meta => array(1) ▼ {
translator => NULL
}
parameters => array(19) ► {
appDir => "/var/www/clients/client373/web726/web/app" (41)
wwwDir => "/var/www/ecatalogue.danubian.eu/web" (35)
debugMode => TRUE
productionMode => FALSE
environment => "production" (10)
consoleMode => FALSE
container => array(2) { ... }
tempDir => "/var/www/clients/client373/web726/web/app/../temp" (49)
ftpRoot => "/var/www/clients/client373/web726/web/app/../ftp" (48)
appendixDir => "/var/www/clients/client373/web726/web/app/../ftp/appendices" (59)
dataSheetDir => "/var/www/clients/client373/web726/web/app/../ftp/datasheets" (59)
pictureSourceDir => "/var/www/clients/client373/web726/web/app/../ftp/pictures" (57)
pictureTargetDir => "/var/www/clients/client373/web726/web/app/../dynamic/pictures" (61)
catalogue => array(4) { ... }
import => array(1) { ... }
pagination => array(4) { ... }
passwords => array(4) { ... }
userSupport => array(1) { ... }
database => array(5) { ... }
}
params => array(19) ► {
appDir => "/var/www/clients/client373/web726/web/app" (41)
wwwDir => "/var/www/ecatalogue.danubian.eu/web" (35)
debugMode => TRUE
productionMode => FALSE
environment => "production" (10)
consoleMode => FALSE
container => array(2) { ... }
tempDir => "/var/www/clients/client373/web726/web/app/../temp" (49)
ftpRoot => "/var/www/clients/client373/web726/web/app/../ftp" (48)
appendixDir => "/var/www/clients/client373/web726/web/app/../ftp/appendices" (59)
dataSheetDir => "/var/www/clients/client373/web726/web/app/../ftp/datasheets" (59)
pictureSourceDir => "/var/www/clients/client373/web726/web/app/../ftp/pictures" (57)
pictureTargetDir => "/var/www/clients/client373/web726/web/app/../dynamic/pictures" (61)
catalogue => array(4) { ... }
import => array(1) { ... }
pagination => array(4) { ... }
passwords => array(4) { ... }
userSupport => array(1) { ... }
database => array(5) { ... }
}
registry private => array(26) ► {
"nette.httpRequestFactory" => Nette\Http\RequestFactory(2) { ... }
httpRequest => Nette\Http\Request(9) { ... }
httpResponse => Nette\Http\Response(5) { ... }
session => Nette\Http\Session(4) { ... }
"nette.presenterFactory" => Danubian\PresenterFactory(4) { ... }
routerFactory => Danubian\RouterFactory(0)
router => Nette\Application\Routers\RouteList(3) { ... }
application => Nette\Application\Application(14) { ... }
container => SystemContainer(8) { *RECURSION* }
"nette.userStorage" => Nette\Http\UserStorage(3) { ... }
user => Nette\Security\User(8) { ... }
"nette.cacheJournal" => Nette\Caching\Storages\FileJournal(9) { ... }
cacheStorage => Nette\Caching\Storages\FileStorage(4) { ... }
"nette.database.defaultConnectionPanel" => Nette\Database\Diagnostics\ConnectionPanel(5) { ... }
"nette.database.default" => Nette\Database\Connection(6) { ... }
logItemRepository => Danubian\LogItemRepository(2) { ... }
translator => Danubian\GettextTranslator(2) { ... }
"nette.templateCacheStorage" => Nette\Caching\Storages\PhpFileStorage(5) { ... }
legalDocuments => Danubian\LegalDocuments(2) { ... }
authorization => Danubian\AuthorizationService(5) { ... }
database => Nette\Database\Connection(6) { ... }
itemSelector => Danubian\ItemSelector(7) { ... }
catalogueRepository => Danubian\CatalogueRepository(1) { ... }
catalogueCommon => Danubian\CatalogueCommon(3) { ... }
dataSheetHelper => Danubian\DataSheetHelper(2) { ... }
appendixHelper => Danubian\AppendixHelper(4) { ... }
}
factories private => array(0)
creating private => array(0)
frozen private => FALSE
}
template private => Nette\Templating\FileTemplate(8) ► {
file private => "/var/www/clients/client373/web726/web/app/FrontModule/templates/Search.default.latte" (84)
onPrepareFilters => array(1) ▼ [
0 => Nette\Callback(1) { ... }
]
source private => NULL
params private => array(34) ► {
_control => Danubian\FrontModule\SearchPresenter(38) { *RECURSION* }
control => Danubian\FrontModule\SearchPresenter(38) { *RECURSION* }
_presenter => Danubian\FrontModule\SearchPresenter(38) { *RECURSION* }
presenter => Danubian\FrontModule\SearchPresenter(38) { *RECURSION* }
user => Nette\Security\User(8) { ... }
netteHttpResponse => Nette\Http\Response(5) { ... }
netteCacheStorage => Nette\Caching\Storages\FileStorage(4) { ... }
baseUrl => "https://danubian.eu" (19)
baseUri => "https://danubian.eu" (19)
basePath => ""
flashes => array(0)
lang => "de-de" (5)
prysmianGroupLink => array(2) { ... }
loginLink => "/user/login/?backlink=%2Fde%2F%3Falpha%3DI%26details%3D41622" (60)
registerLink => "/user/register/?backlink=%2Fde%2F%3Falpha%3DI%26details%3D41622" (63)
profileLink => "/user/profile/?backlink=%2Fde%2F%3Falpha%3DI%26details%3D41622" (62)
tac => array(5) { ... }
query => NULL
alpha => "I"
substr => NULL
details => "41622" (5)
count => 10
items => Nette\Database\Table\Selection(18) { ... }
pages => Nette\Utils\Paginator(4) { ... }
itemDetails => Nette\Database\Table\ActiveRow(4) { ... }
groupDetails => Nette\Database\Table\ActiveRow(4) { ... }
itemFields => array(19) { ... }
groupFields => array(9) { ... }
picture => NULL
appendices => array(0)
dataSheetLink => "/de/download/data-sheet/?group_id=57&doc_locale=en&backlink=%2Fde%2F%3Falpha%3DI%26details%3D41622" (98)
template => Nette\Templating\FileTemplate(8) { *RECURSION* }
_g => stdClass(0)
_extended => TRUE
}
filters private => array(0)
helpers private => array(1) ▼ {
translate => Nette\Callback(1) { ... }
}
helperLoaders private => array(2) ▼ [
0 => Nette\Callback(1) { ... }
1 => Nette\Callback(1) { ... }
]
cacheStorage private => Nette\Caching\Storages\PhpFileStorage(5) ▼ {
hint => "/templates/@layout.latte" (24)
dir private => "/var/www/clients/client373/web726/web/temp/cache" (48)
useDirs private => TRUE
journal private => Nette\Caching\Storages\FileJournal(9) { ... }
locks private => NULL
}
}
invalidSnippets private => array(0)
snippetMode => NULL
params protected => array(7) ► {
locale => "de" (2)
action => "default" (7)
id => NULL
alpha => "I"
details => "41622" (5)
query => NULL
substr => NULL
}
components private => array(1) ▼ {
vp => VisualPaginator(11) ► {
paginator private => Nette\Utils\Paginator(4) { ... }
page => 1
template private => NULL
invalidSnippets private => array(0)
snippetMode => NULL
params protected => array(1) { ... }
components private => array(0)
cloning private => NULL
parent private => Danubian\FrontModule\SearchPresenter(38) { *RECURSION* }
name private => "vp" (2)
monitors private => array(1) { ... }
}
}
cloning private => NULL
parent private => NULL
name private => "Front:Search" (12)
monitors private => array(0)
}
| PHP_FCGI_MAX_REQUESTS | "50000" (5)
|
|---|---|
| PHPRC | "/opt/php-5.6/lib/" (17)
|
| PWD | "/var/www/php-fcgi-scripts/web726" (32)
|
| TMPDIR | "/var/www/clients/client373/web726/tmp" (37)
|
| TEMP | "/var/www/clients/client373/web726/tmp" (37)
|
| SHLVL | "0"
|
| TMP | "/var/www/clients/client373/web726/tmp" (37)
|
| PATH | "/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" (60)
|
| PHP_DOCUMENT_ROOT | "/var/www/clients/client373/web726" (33)
|
| CONTENT_LENGTH | "0"
|
| HTTP_CONNECTION | "close" (5)
|
| SCRIPT_NAME | "/index.php" (10)
|
| REQUEST_URI | "/de/?alpha=I&details=41622" (26)
|
| QUERY_STRING | "alpha=I&details=41622" (21)
|
| REQUEST_METHOD | "GET" (3)
|
| SERVER_PROTOCOL | "HTTP/1.1" (8)
|
| GATEWAY_INTERFACE | "CGI/1.1" (7)
|
| REDIRECT_QUERY_STRING | "alpha=I&details=41622" (21)
|
| REDIRECT_URL | "/de/" (4)
|
| REMOTE_PORT | "35830" (5)
|
| SCRIPT_FILENAME | "/var/www/ecatalogue.danubian.eu/web/index.php" (45)
|
| SERVER_ADMIN | "webmaster@ecatalogue.danubian.eu" (32)
|
| CONTEXT_DOCUMENT_ROOT | "/var/www/ecatalogue.danubian.eu/web" (35)
|
| CONTEXT_PREFIX | ""
|
| REQUEST_SCHEME | "https" (5)
|
| DOCUMENT_ROOT | "/var/www/ecatalogue.danubian.eu/web" (35)
|
| REMOTE_ADDR | "216.73.216.183" (14)
|
| SERVER_PORT | "443" (3)
|
| SERVER_ADDR | "31.31.227.66" (12)
|
| SERVER_NAME | "danubian.eu" (11)
|
| SERVER_SOFTWARE | "Apache" (6)
|
| SERVER_SIGNATURE | ""
|
| HTTP_HOST | "danubian.eu" (11)
|
| HTTP_ACCEPT_ENCODING | "gzip, br, zstd, deflate" (23)
|
| HTTP_COOKIE | "nette-browser=dilwvut0um; PHPSESSID=3pd2fnp07t6u4dnearcbs68st2" (62)
|
| HTTP_USER_AGENT | "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" (103)
|
| HTTP_ACCEPT | "*/*" (3)
|
| SSL_TLS_SNI | "danubian.eu" (11)
|
| HTTPS | "on" (2)
|
| SCRIPT_URI | "https://danubian.eu/de/" (23)
|
| SCRIPT_URL | "/de/" (4)
|
| QS_EventRequest | "216.73.216.183" (14)
|
| QS_ClientLowPrio | "0x13" (4)
|
| QS_ScrapyEvent_Remaining | "0"
|
| QS_ScrapyEvent_Counter | "0"
|
| QS_GptEvent_Remaining | "0"
|
| QS_GptEvent_Counter | "0"
|
| QS_AmazonEvent_Remaining | "0"
|
| QS_AmazonEvent_Counter | "0"
|
| QS_ClaudeEvent_Remaining | "8"
|
| QS_ClaudeEvent | "1"
|
| QS_ClaudeEvent_Counter | "5"
|
| QS_Cond | "claudebot" (9)
|
| QS_Event | "216.73.216.183" (14)
|
| QS_Block_seen | ""
|
| QS_Block | "216.73.216.183" (14)
|
| QS_ConnectionId | "1784534079429698363832577" (25)
|
| QS_AllConn | "182" (3)
|
| QS_IPConn | "2"
|
| QS_SrvConn | "182" (3)
|
| REDIRECT_STATUS | "200" (3)
|
| REDIRECT_SSL_TLS_SNI | "danubian.eu" (11)
|
| REDIRECT_HTTPS | "on" (2)
|
| REDIRECT_QS_ScrapyEvent_Remaining | "0"
|
| REDIRECT_QS_ScrapyEvent_Counter | "0"
|
| REDIRECT_QS_Limit_VAR_NAME_IDXQS_ScrapyEvent | "QS_ScrapyEvent" (14)
|
| REDIRECT_QS_GptEvent_Remaining | "0"
|
| REDIRECT_QS_GptEvent_Counter | "0"
|
| REDIRECT_QS_Limit_VAR_NAME_IDXQS_GptEvent | "QS_GptEvent" (11)
|
| REDIRECT_QS_AmazonEvent_Remaining | "0"
|
| REDIRECT_QS_AmazonEvent_Counter | "0"
|
| REDIRECT_QS_Limit_VAR_NAME_IDXQS_AmazonEvent | "QS_AmazonEvent" (14)
|
| REDIRECT_QS_ClaudeEvent_Remaining | "8"
|
| REDIRECT_QS_ClaudeEvent_Counter | "5"
|
| REDIRECT_QS_Limit_VAR_NAME_IDXQS_ClaudeEvent | "QS_ClaudeEvent" (14)
|
| REDIRECT_QS_Limit_seenQS_ClaudeEvent | ""
|
| REDIRECT_QS_Block_seen | ""
|
| REDIRECT_SCRIPT_URI | "https://danubian.eu/de/" (23)
|
| REDIRECT_SCRIPT_URL | "/de/" (4)
|
| REDIRECT_QS_ClaudeEvent | "1"
|
| REDIRECT_QS_Cond | "claudebot" (9)
|
| REDIRECT_QS_Block | "216.73.216.183" (14)
|
| REDIRECT_QS_Event | "216.73.216.183" (14)
|
| REDIRECT_QS_EventRequest | "216.73.216.183" (14)
|
| REDIRECT_QS_ClientLowPrio | "0x13" (4)
|
| REDIRECT_QS_ConnectionId | "1784534079429698363832577" (25)
|
| REDIRECT_QS_AllConn | "182" (3)
|
| REDIRECT_QS_IPConn | "2"
|
| REDIRECT_QS_SrvConn | "182" (3)
|
| FCGI_ROLE | "RESPONDER" (9)
|
| PHP_SELF | "/index.php" (10)
|
| REQUEST_TIME_FLOAT | 1784534090.0164199
|
| REQUEST_TIME | 1784534090
|
| __NF | Nette Session |
|---|
| Danubian/locale | array(1) ▼ |
|---|---|
| Nette.Http.UserStorage/ | array(2) ▼ |
| Danubian/frontend | array(1) ▼ |
| NETTE | TRUE
|
|---|---|
| NETTE_DIR | "/var/www/clients/client373/web726/web/libs/Nette" (48)
|
| NETTE_VERSION_ID | 20011
|
| NETTE_PACKAGE | "5.3" (3)
|
| /var/www/clients/client373/web726/web/index.php |
| /var/www/clients/client373/web726/web/app/bootstrap.php |
| /var/www/clients/client373/web726/web/libs/autoload.php |
| /var/www/clients/client373/web726/web/libs/Nette/loader.php |
| /var/www/clients/client373/web726/web/libs/Nette/common/exceptions.php |
| /var/www/clients/client373/web726/web/libs/Nette/common/Object.php |
| /var/www/clients/client373/web726/web/libs/Nette/Utils/LimitedScope.php |
| /var/www/clients/client373/web726/web/libs/Nette/Loaders/AutoLoader.php |
| /var/www/clients/client373/web726/web/libs/Nette/Loaders/NetteLoader.php |
| /var/www/clients/client373/web726/web/libs/Nette/Diagnostics/Helpers.php |
| /var/www/clients/client373/web726/web/libs/Nette/Diagnostics/shortcuts.php |
| /var/www/clients/client373/web726/web/libs/Nette/Utils/Html.php |
| /var/www/clients/client373/web726/web/libs/Nette/Diagnostics/Debugger.php |
| /var/www/clients/client373/web726/web/libs/Nette/Diagnostics/Logger.php |
| /var/www/clients/client373/web726/web/libs/Nette/Diagnostics/FireLogger.php |
| /var/www/clients/client373/web726/web/libs/Nette/Diagnostics/BlueScreen.php |
| /var/www/clients/client373/web726/web/libs/Nette/Diagnostics/Bar.php |
| /var/www/clients/client373/web726/web/libs/Nette/Diagnostics/DefaultBarPanel.php |
| /var/www/clients/client373/web726/web/libs/Nette/Diagnostics/IBarPanel.php |
| /var/www/clients/client373/web726/web/libs/Nette/Utils/SafeStream.php |
| /var/www/clients/client373/web726/web/libs/Nette/Config/Configurator.php |
| /var/www/clients/client373/web726/web/libs/Nette/Loaders/RobotLoader.php |
| /var/www/clients/client373/web726/web/libs/Nette/Caching/Storages/FileStorage.php |
| /var/www/clients/client373/web726/web/libs/Nette/Caching/IStorage.php |
| /var/www/clients/client373/web726/web/libs/Nette/Caching/Cache.php |
| /var/www/clients/client373/web726/web/libs/Nette/common/Callback.php |
| /var/www/clients/client373/web726/web/libs/Nette/common/Framework.php |
| /var/www/clients/client373/web726/web/libs/Nette/Caching/Storages/PhpFileStorage.php |
| /var/www/clients/client373/web726/web/temp/cache/_Nette.Configurator/_-67fb603741b158d56c5ab0bc1dc269bb.php |
| /var/www/clients/client373/web726/web/libs/Nette/DI/Container.php |
| /var/www/clients/client373/web726/web/libs/Nette/common/FreezableObject.php |
| /var/www/clients/client373/web726/web/libs/Nette/common/IFreezable.php |
| /var/www/clients/client373/web726/web/libs/Nette/DI/IContainer.php |
| /var/www/clients/client373/web726/web/libs/Nette/Reflection/ClassType.php |
| /var/www/clients/client373/web726/web/libs/Nette/Reflection/Method.php |
| /var/www/clients/client373/web726/web/libs/Nette/Http/Session.php |
| /var/www/clients/client373/web726/web/libs/Nette/Http/RequestFactory.php |
| /var/www/clients/client373/web726/web/libs/Nette/Http/UrlScript.php |
| /var/www/clients/client373/web726/web/libs/Nette/Http/Url.php |
| /var/www/clients/client373/web726/web/libs/Nette/common/ObjectMixin.php |
| /var/www/clients/client373/web726/web/libs/Nette/Utils/Strings.php |
| /var/www/clients/client373/web726/web/libs/Nette/Http/Request.php |
| /var/www/clients/client373/web726/web/libs/Nette/Http/IRequest.php |
| /var/www/clients/client373/web726/web/libs/Nette/Http/Response.php |
| /var/www/clients/client373/web726/web/libs/Nette/Http/IResponse.php |
| /var/www/clients/client373/web726/web/libs/Nette/common/DateTime.php |
| /var/www/clients/client373/web726/web/libs/Nette/common/Environment.php |
| /var/www/clients/client373/web726/web/libs/Nette/Application/Application.php |
| /var/www/clients/client373/web726/web/app/services/PresenterFactory.php |
| /var/www/clients/client373/web726/web/libs/Nette/Application/PresenterFactory.php |
| /var/www/clients/client373/web726/web/libs/Nette/Application/IPresenterFactory.php |
| /var/www/clients/client373/web726/web/app/router/RouterFactory.php |
| /var/www/clients/client373/web726/web/libs/Nette/Application/Routers/RouteList.php |
| /var/www/clients/client373/web726/web/libs/Nette/common/ArrayList.php |
| /var/www/clients/client373/web726/web/libs/Nette/Application/IRouter.php |
| /var/www/clients/client373/web726/web/libs/Nette/Application/Routers/Route.php |
| /var/www/clients/client373/web726/web/libs/Nette/Application/Diagnostics/RoutingPanel.php |
| /var/www/clients/client373/web726/web/libs/Nette/Application/Request.php |
| /var/www/clients/client373/web726/web/app/FrontModule/presenters/SearchPresenter.php |
| /var/www/clients/client373/web726/web/app/FrontModule/presenters/BaseFrontPresenter.php |
| /var/www/clients/client373/web726/web/app/presenters/BasePresenter.php |
| /var/www/clients/client373/web726/web/libs/Nette/Application/UI/Presenter.php |
| /var/www/clients/client373/web726/web/libs/Nette/Application/UI/Control.php |
| /var/www/clients/client373/web726/web/libs/Nette/Application/UI/PresenterComponent.php |
| /var/www/clients/client373/web726/web/libs/Nette/ComponentModel/Container.php |
| /var/www/clients/client373/web726/web/libs/Nette/ComponentModel/Component.php |
| /var/www/clients/client373/web726/web/libs/Nette/ComponentModel/IComponent.php |
| /var/www/clients/client373/web726/web/libs/Nette/ComponentModel/IContainer.php |
| /var/www/clients/client373/web726/web/libs/Nette/Application/UI/ISignalReceiver.php |
| /var/www/clients/client373/web726/web/libs/Nette/Application/UI/IStatePersistent.php |
| /var/www/clients/client373/web726/web/libs/Nette/Application/UI/IRenderable.php |
| /var/www/clients/client373/web726/web/libs/Nette/Application/IPresenter.php |
| /var/www/clients/client373/web726/web/libs/Nette/DI/Helpers.php |
| /var/www/clients/client373/web726/web/libs/Nette/Reflection/Parameter.php |
| /var/www/clients/client373/web726/web/libs/Nette/Application/UI/PresenterComponentReflection.php |
| /var/www/clients/client373/web726/web/libs/Nette/Reflection/Property.php |
| /var/www/clients/client373/web726/web/libs/Nette/Reflection/AnnotationsParser.php |
| /var/www/clients/client373/web726/web/libs/Nette/Security/User.php |
| /var/www/clients/client373/web726/web/libs/Nette/Security/IUserStorage.php |
| /var/www/clients/client373/web726/web/libs/Nette/Http/UserStorage.php |
| /var/www/clients/client373/web726/web/libs/Nette/Security/Diagnostics/UserPanel.php |
| /var/www/clients/client373/web726/web/app/model/LogItemRepository.php |
| /var/www/clients/client373/web726/web/app/model/BaseRepository.php |
| /var/www/clients/client373/web726/web/libs/Nette/Database/Connection.php |
| /var/www/clients/client373/web726/web/libs/Nette/Database/Statement.php |
| /var/www/clients/client373/web726/web/libs/Nette/Database/Drivers/MySqlDriver.php |
| /var/www/clients/client373/web726/web/libs/Nette/Database/ISupplementalDriver.php |
| /var/www/clients/client373/web726/web/libs/Nette/Database/Row.php |
| /var/www/clients/client373/web726/web/libs/Nette/common/ArrayHash.php |
| /var/www/clients/client373/web726/web/libs/Nette/Database/SqlPreprocessor.php |
| /var/www/clients/client373/web726/web/libs/Nette/Caching/Storages/FileJournal.php |
| /var/www/clients/client373/web726/web/libs/Nette/Caching/Storages/IJournal.php |
| /var/www/clients/client373/web726/web/libs/Nette/Database/Reflection/DiscoveredReflection.php |
| /var/www/clients/client373/web726/web/libs/Nette/Database/IReflection.php |
| /var/www/clients/client373/web726/web/libs/Nette/Database/Diagnostics/ConnectionPanel.php |
| /var/www/clients/client373/web726/web/app/services/GettextTranslator.php |
| /var/www/clients/client373/web726/web/app/services/ITranslator.php |
| /var/www/clients/client373/web726/web/libs/Nette/Localization/ITranslator.php |
| /var/www/clients/client373/web726/web/libs/Nette/Http/SessionSection.php |
| /var/www/clients/client373/web726/web/libs/Nette/Templating/FileTemplate.php |
| /var/www/clients/client373/web726/web/libs/Nette/Templating/Template.php |
| /var/www/clients/client373/web726/web/libs/Nette/Templating/ITemplate.php |
| /var/www/clients/client373/web726/web/libs/Nette/Templating/IFileTemplate.php |
| /var/www/clients/client373/web726/web/app/Helpers.php |
| /var/www/clients/client373/web726/web/libs/Nette/ComponentModel/RecursiveComponentIterator.php |
| /var/www/clients/client373/web726/web/libs/Nette/Iterators/InstanceFilter.php |
| /var/www/clients/client373/web726/web/app/UserModule/presenters/LoginPresenter.php |
| /var/www/clients/client373/web726/web/app/UserModule/presenters/BaseUserPresenter.php |
| /var/www/clients/client373/web726/web/app/UserModule/presenters/RegisterPresenter.php |
| /var/www/clients/client373/web726/web/app/UserModule/presenters/ProfilePresenter.php |
| /var/www/clients/client373/web726/web/app/model/LegalDocuments.php |
| /var/www/clients/client373/web726/web/app/model/LegalDocument.php |
| /var/www/clients/client373/web726/web/libs/Nette/Security/IAuthorizator.php |
| /var/www/clients/client373/web726/web/app/services/AuthorizationService.php |
| /var/www/clients/client373/web726/web/libs/Nette/Security/Permission.php |
| /var/www/clients/client373/web726/web/app/model/ItemSelector.php |
| /var/www/clients/client373/web726/web/libs/Nette/Database/Table/Selection.php |
| /var/www/clients/client373/web726/web/libs/Nette/Database/Table/SqlBuilder.php |
| /var/www/clients/client373/web726/web/libs/Nette/Database/Helpers.php |
| /var/www/clients/client373/web726/web/libs/Nette/Database/Table/ActiveRow.php |
| /var/www/clients/client373/web726/web/libs/VisualPaginator/VisualPaginator.php |
| /var/www/clients/client373/web726/web/libs/Nette/Utils/Paginator.php |
| /var/www/clients/client373/web726/web/app/model/CatalogueRepository.php |
| /var/www/clients/client373/web726/web/app/model/CatalogueCommon.php |
| /var/www/clients/client373/web726/web/app/model/DataSheetHelper.php |
| /var/www/clients/client373/web726/web/app/model/DownloadableHelper.php |
| /var/www/clients/client373/web726/web/app/FrontModule/presenters/DownloadPresenter.php |
| /var/www/clients/client373/web726/web/app/model/AppendixHelper.php |
| /var/www/clients/client373/web726/web/libs/Nette/Application/Responses/TextResponse.php |
| /var/www/clients/client373/web726/web/libs/Nette/Application/IResponse.php |
| /var/www/clients/client373/web726/web/libs/Nette/Application/exceptions.php |
| /var/www/clients/client373/web726/web/temp/cache/_Nette.FileTemplate/_templates.Search.default.latte-6a359de774037390404e9d95e6663988.php |
| /var/www/clients/client373/web726/web/libs/Nette/Latte/Macros/CoreMacros.php |
| /var/www/clients/client373/web726/web/libs/Nette/Latte/Macros/MacroSet.php |
| /var/www/clients/client373/web726/web/libs/Nette/Latte/IMacro.php |
| /var/www/clients/client373/web726/web/temp/cache/_Nette.FileTemplate/_templates._layout.latte-2a0242f35acccbf0bbd076d4163c2185.php |
| /var/www/clients/client373/web726/web/libs/Nette/Templating/Helpers.php |
| /var/www/clients/client373/web726/web/libs/Nette/Utils/Json.php |
| /var/www/clients/client373/web726/web/app/AdminModule/presenters/ImportPresenter.php |
| /var/www/clients/client373/web726/web/app/AdminModule/presenters/BaseAdminPresenter.php |
| /var/www/clients/client373/web726/web/libs/Nette/Latte/Macros/UIMacros.php |
| /var/www/clients/client373/web726/web/libs/Nette/Latte/Macros/FormMacros.php |
| /var/www/clients/client373/web726/web/libs/Nette/Diagnostics/templates/bluescreen.phtml |
| /var/www/clients/client373/web726/web/libs/Nette/Diagnostics/templates/bar.time.tab.phtml |
| /var/www/clients/client373/web726/web/libs/Nette/Diagnostics/templates/bar.memory.tab.phtml |
| /var/www/clients/client373/web726/web/libs/Nette/Application/Diagnostics/templates/RoutingPanel.tab.phtml |
| /var/www/clients/client373/web726/web/libs/Nette/Application/Diagnostics/templates/RoutingPanel.panel.phtml |
| /var/www/clients/client373/web726/web/libs/Nette/Security/Diagnostics/templates/UserPanel.tab.phtml |
| /var/www/clients/client373/web726/web/libs/Nette/Security/Diagnostics/templates/UserPanel.panel.phtml |
| BCMath support | enabled |
| Directive | Local Value | Master Value |
|---|---|---|
| bcmath.scale | 0 | 0 |
| BZip2 Support | Enabled |
| Stream Wrapper support | compress.bzip2:// |
| Stream Filter support | bzip2.decompress, bzip2.compress |
| BZip2 Version | 1.0.8, 13-Jul-2019 |
| Calendar support | enabled |
| Directive | Local Value | Master Value |
|---|---|---|
| cgi.check_shebang_line | 1 | 1 |
| cgi.discard_path | 0 | 0 |
| cgi.fix_pathinfo | 1 | 1 |
| cgi.force_redirect | 1 | 1 |
| cgi.nph | 0 | 0 |
| cgi.redirect_status_env | no value | no value |
| cgi.rfc2616_headers | 0 | 0 |
| fastcgi.logging | 1 | 1 |
| PHP Version | 5.6.40 |
| Directive | Local Value | Master Value |
|---|---|---|
| allow_url_fopen | On | On |
| allow_url_include | Off | Off |
| always_populate_raw_post_data | -1 | -1 |
| arg_separator.input | & | & |
| arg_separator.output | & | & |
| asp_tags | Off | Off |
| auto_append_file | no value | no value |
| auto_globals_jit | On | On |
| auto_prepend_file | no value | no value |
| browscap | no value | no value |
| default_charset | UTF-8 | UTF-8 |
| default_mimetype | text/html | text/html |
| disable_classes | no value | no value |
| disable_functions | no value | no value |
| display_errors | On | Off |
| display_startup_errors | Off | Off |
| doc_root | no value | no value |
| docref_ext | no value | no value |
| docref_root | no value | no value |
| enable_dl | Off | Off |
| enable_post_data_reading | On | On |
| error_append_string | no value | no value |
| error_log | /var/www/clients/client373/web726/web/log/php_error.log | no value |
| error_prepend_string | no value | no value |
| error_reporting | 0 | 22527 |
| exit_on_timeout | Off | Off |
| expose_php | Off | Off |
| extension_dir | /opt/php-5.6/lib/php/extensions/no-debug-non-zts-20131226 | /opt/php-5.6/lib/php/extensions/no-debug-non-zts-20131226 |
| file_uploads | On | On |
| highlight.comment | #998; font-style: italic | #FF8000 |
| highlight.default | #000 | #0000BB |
| highlight.html | #06B | #000000 |
| highlight.keyword | #D24; font-weight: bold | #007700 |
| highlight.string | #080 | #DD0000 |
| html_errors | Off | On |
| ignore_repeated_errors | Off | Off |
| ignore_repeated_source | Off | Off |
| ignore_user_abort | Off | Off |
| implicit_flush | Off | Off |
| include_path | .:/opt/php-5.6/lib/php | .:/opt/php-5.6/lib/php |
| input_encoding | no value | no value |
| internal_encoding | no value | no value |
| log_errors | Off | On |
| log_errors_max_len | 1024 | 1024 |
| mail.add_x_header | On | On |
| mail.force_extra_parameters | no value | no value |
| mail.log | no value | no value |
| max_execution_time | 30 | 30 |
| max_file_uploads | 20 | 20 |
| max_input_nesting_level | 64 | 64 |
| max_input_time | 60 | 60 |
| max_input_vars | 1000 | 1000 |
| memory_limit | 640M | 640M |
| open_basedir | /var/www/clients/client373/web726/web:/var/www/clients/client373/web726/private:/var/www/clients/client373/web726/tmp:/var/www/ecatalogue.danubian.eu/web:/srv/www/ecatalogue.danubian.eu/web:/usr/share/php5:/usr/share/php:/tmp:/usr/share/phpmyadmin:/etc/phpmyadmin:/var/lib/phpmyadmin:/dev/random:/dev/urandom | /var/www/clients/client373/web726/web:/var/www/clients/client373/web726/private:/var/www/clients/client373/web726/tmp:/var/www/ecatalogue.danubian.eu/web:/srv/www/ecatalogue.danubian.eu/web:/usr/share/php5:/usr/share/php:/tmp:/usr/share/phpmyadmin:/etc/phpmyadmin:/var/lib/phpmyadmin:/dev/random:/dev/urandom |
| output_buffering | no value | no value |
| output_encoding | no value | no value |
| output_handler | no value | no value |
| post_max_size | 40M | 40M |
| precision | 14 | 14 |
| realpath_cache_size | 16K | 16K |
| realpath_cache_ttl | 120 | 120 |
| register_argc_argv | Off | Off |
| report_memleaks | On | On |
| report_zend_debug | On | On |
| request_order | GP | GP |
| sendmail_from | no value | no value |
| sendmail_path | /usr/sbin/sendmail -t -i -f webmaster@ecatalogue.danubian.eu | /usr/sbin/sendmail -t -i -f webmaster@ecatalogue.danubian.eu |
| serialize_precision | 17 | 17 |
| short_open_tag | On | On |
| SMTP | localhost | localhost |
| smtp_port | 25 | 25 |
| sql.safe_mode | Off | Off |
| sys_temp_dir | no value | no value |
| track_errors | Off | Off |
| unserialize_callback_func | no value | no value |
| upload_max_filesize | 64M | 64M |
| upload_tmp_dir | /var/www/clients/client373/web726/tmp | /var/www/clients/client373/web726/tmp |
| user_dir | no value | no value |
| user_ini.cache_ttl | 300 | 300 |
| user_ini.filename | .user.ini | .user.ini |
| variables_order | GPCS | GPCS |
| xmlrpc_error_number | 0 | 0 |
| xmlrpc_errors | Off | Off |
| zend.detect_unicode | On | On |
| zend.enable_gc | On | On |
| zend.multibyte | Off | Off |
| zend.script_encoding | no value | no value |
| ctype functions | enabled |
| cURL support | enabled |
| cURL Information | 7.74.0 |
| Age | 7 |
| Features | |
| AsynchDNS | Yes |
| CharConv | No |
| Debug | No |
| GSS-Negotiate | No |
| IDN | Yes |
| IPv6 | Yes |
| krb4 | No |
| Largefile | Yes |
| libz | Yes |
| NTLM | Yes |
| NTLMWB | Yes |
| SPNEGO | Yes |
| SSL | Yes |
| SSPI | No |
| TLS-SRP | Yes |
| Protocols | dict, file, ftp, ftps, gopher, http, https, imap, imaps, ldap, ldaps, mqtt, pop3, pop3s, rtmp, rtsp, scp, sftp, smb, smbs, smtp, smtps, telnet, tftp |
| Host | x86_64-pc-linux-gnu |
| SSL Version | GnuTLS/3.7.1 |
| ZLib Version | 1.2.11 |
| libSSH Version | libssh2/1.9.0 |
| date/time support | enabled |
| "Olson" Timezone Database Version | 2016.10 |
| Timezone Database | internal |
| Default timezone | Europe/Prague |
| Directive | Local Value | Master Value |
|---|---|---|
| date.default_latitude | 31.7667 | 31.7667 |
| date.default_longitude | 35.2333 | 35.2333 |
| date.sunrise_zenith | 90.583333 | 90.583333 |
| date.sunset_zenith | 90.583333 | 90.583333 |
| date.timezone | Europe/Prague | Europe/Prague |
| DBA support | enabled |
| Supported handlers | cdb cdb_make inifile flatfile |
| Directive | Local Value | Master Value |
|---|---|---|
| dba.default_handler | flatfile | flatfile |
| DOM/XML | enabled |
| DOM/XML API Version | 20031129 |
| libxml Version | 2.9.10 |
| HTML Support | enabled |
| XPath Support | enabled |
| XPointer Support | enabled |
| Schema Support | enabled |
| RelaxNG Support | enabled |
| Regex Library | Bundled library enabled |
| EXIF Support | enabled |
| EXIF Version | 1.4 $Id: cad29b729548e4206f0697710cc9e177f26fdff3 $ |
| Supported EXIF Version | 0220 |
| Supported filetypes | JPEG,TIFF |
| Directive | Local Value | Master Value |
|---|---|---|
| exif.decode_jis_intel | JIS | JIS |
| exif.decode_jis_motorola | JIS | JIS |
| exif.decode_unicode_intel | UCS-2LE | UCS-2LE |
| exif.decode_unicode_motorola | UCS-2BE | UCS-2BE |
| exif.encode_jis | no value | no value |
| exif.encode_unicode | ISO-8859-15 | ISO-8859-15 |
| fileinfo support | enabled |
| version | 1.0.5 |
| libmagic | 517 |
| Input Validation and Filtering | enabled |
| Revision | $Id: 5b79667bd9a68977a9b4f7505223a8e216e04908 $ |
| Directive | Local Value | Master Value |
|---|---|---|
| filter.default | unsafe_raw | unsafe_raw |
| filter.default_flags | no value | no value |
| FTP support | enabled |
| GD Support | enabled |
| GD Version | bundled (2.1.0 compatible) |
| GIF Read Support | enabled |
| GIF Create Support | enabled |
| JPEG Support | enabled |
| libJPEG Version | 6b |
| PNG Support | enabled |
| libPNG Version | 1.6.37 |
| WBMP Support | enabled |
| XBM Support | enabled |
| Directive | Local Value | Master Value |
|---|---|---|
| gd.jpeg_ignore_warning | 0 | 0 |
| GetText Support | enabled |
| hash support | enabled |
| Hashing Engines | md2 md4 md5 sha1 sha224 sha256 sha384 sha512 ripemd128 ripemd160 ripemd256 ripemd320 whirlpool tiger128,3 tiger160,3 tiger192,3 tiger128,4 tiger160,4 tiger192,4 snefru snefru256 gost gost-crypto adler32 crc32 crc32b fnv132 fnv1a32 fnv164 fnv1a64 joaat haval128,3 haval160,3 haval192,3 haval224,3 haval256,3 haval128,4 haval160,4 haval192,4 haval224,4 haval256,4 haval128,5 haval160,5 haval192,5 haval224,5 haval256,5 |
| iconv support | enabled |
| iconv implementation | glibc |
| iconv library version | 2.31 |
| Directive | Local Value | Master Value |
|---|---|---|
| iconv.input_encoding | no value | no value |
| iconv.internal_encoding | UTF-8 | no value |
| iconv.output_encoding | no value | no value |
| imagick module | enabled |
|---|---|
| imagick module version | 3.2.0RC1 |
| imagick classes | Imagick, ImagickDraw, ImagickPixel, ImagickPixelIterator |
| ImageMagick version | ImageMagick 6.9.11-60 Q16 x86_64 2021-01-25 https://imagemagick.org |
| ImageMagick copyright | (C) 1999-2021 ImageMagick Studio LLC |
| ImageMagick release date | 2021-01-25 |
| ImageMagick number of supported formats: | 247 |
| ImageMagick supported formats | 3FR, 3G2, 3GP, AAI, AI, APNG, ART, ARW, AVI, AVIF, AVS, BGR, BGRA, BGRO, BIE, BMP, BMP2, BMP3, BRF, CAL, CALS, CANVAS, CAPTION, CIN, CIP, CLIP, CMYK, CMYKA, CR2, CR3, CRW, CUR, CUT, DATA, DCM, DCR, DCX, DDS, DFONT, DJVU, DNG, DOT, DPX, DXT1, DXT5, EPDF, EPI, EPS, EPS2, EPS3, EPSF, EPSI, EPT, EPT2, EPT3, ERF, EXR, FAX, FILE, FITS, FRACTAL, FTP, FTS, G3, G4, GIF, GIF87, GRADIENT, GRAY, GRAYA, GROUP4, GV, H, HALD, HDR, HEIC, HISTOGRAM, HRZ, HTM, HTML, HTTP, HTTPS, ICB, ICO, ICON, IIQ, INFO, INLINE, IPL, ISOBRL, ISOBRL6, J2C, J2K, JBG, JBIG, JNG, JNX, JP2, JPC, JPE, JPEG, JPG, JPM, JPS, JPT, JSON, K25, KDC, LABEL, M2V, M4V, MAC, MAGICK, MAP, MASK, MAT, MATTE, MEF, MIFF, MKV, MNG, MONO, MOV, MP4, MPC, MPG, MRW, MSL, MSVG, MTV, MVG, NEF, NRW, NULL, ORF, OTB, OTF, PAL, PALM, PAM, PANGO, PATTERN, PBM, PCD, PCDS, PCL, PCT, PCX, PDB, PDF, PDFA, PEF, PES, PFA, PFB, PFM, PGM, PGX, PICON, PICT, PIX, PJPEG, PLASMA, PNG, PNG00, PNG24, PNG32, PNG48, PNG64, PNG8, PNM, POCKETMOD, PPM, PREVIEW, PS, PS2, PS3, PSB, PSD, PTIF, PWP, RADIAL-GRADIENT, RAF, RAS, RAW, RGB, RGBA, RGBO, RGF, RLA, RLE, RMF, RW2, SCR, SCT, SFW, SGI, SHTML, SIX, SIXEL, SPARSE-COLOR, SR2, SRF, STEGANO, SUN, SVG, SVGZ, TEXT, TGA, THUMBNAIL, TIFF, TIFF64, TILE, TIM, TTC, TTF, TXT, UBRL, UBRL6, UIL, UYVY, VDA, VICAR, VID, VIDEO, VIFF, VIPS, VST, WBMP, WEBM, WEBP, WMF, WMV, WMZ, WPG, X, X3F, XBM, XC, XCF, XPM, XPS, XV, XWD, YCbCr, YCbCrA, YUV |
| Directive | Local Value | Master Value |
|---|---|---|
| imagick.locale_fix | 0 | 0 |
| imagick.progress_monitor | 0 | 0 |
| Internationalization support | enabled |
|---|---|
| version | 1.1.0 |
| ICU version | 67.1 |
| ICU Data version | 67.1 |
| Directive | Local Value | Master Value |
|---|---|---|
| intl.default_locale | no value | no value |
| intl.error_level | 0 | 0 |
| intl.use_exceptions | 0 | 0 |
| json support | enabled |
| json version | 1.2.1 |
| libXML support | active |
| libXML Compiled Version | 2.9.10 |
| libXML Loaded Version | 20910 |
| libXML streams | enabled |
| Multibyte Support | enabled |
| Multibyte string engine | libmbfl |
| HTTP input encoding translation | disabled |
| libmbfl version | 1.3.2 |
| mbstring extension makes use of "streamable kanji code filter and converter", which is distributed under the GNU Lesser General Public License version 2.1. |
|---|
| Multibyte (japanese) regex support | enabled |
| Multibyte regex (oniguruma) backtrack check | On |
| Multibyte regex (oniguruma) version | 5.9.5 |
| Directive | Local Value | Master Value |
|---|---|---|
| mbstring.detect_order | no value | no value |
| mbstring.encoding_translation | Off | Off |
| mbstring.func_overload | 0 | 0 |
| mbstring.http_input | no value | no value |
| mbstring.http_output | no value | no value |
| mbstring.http_output_conv_mimetypes | ^(text/|application/xhtml\+xml) | ^(text/|application/xhtml\+xml) |
| mbstring.internal_encoding | no value | no value |
| mbstring.language | neutral | neutral |
| mbstring.strict_detection | Off | Off |
| mbstring.substitute_character | none | no value |
| mcrypt support | enabled |
|---|---|
| mcrypt_filter support | enabled |
| Version | 2.5.8 |
| Api No | 20021217 |
| Supported ciphers | cast-128 gost rijndael-128 twofish arcfour cast-256 loki97 rijndael-192 saferplus wake blowfish-compat des rijndael-256 serpent xtea blowfish enigma rc2 tripledes |
| Supported modes | cbc cfb ctr ecb ncfb nofb ofb stream |
| Directive | Local Value | Master Value |
|---|---|---|
| mcrypt.algorithms_dir | no value | no value |
| mcrypt.modes_dir | no value | no value |
| memcache support | enabled |
|---|---|
| Version | 3.0.7 |
| Revision | $Revision: 326387 $ |
| Directive | Local Value | Master Value |
|---|---|---|
| memcache.allow_failover | 1 | 1 |
| memcache.chunk_size | 32768 | 32768 |
| memcache.compress_threshold | 20000 | 20000 |
| memcache.default_port | 11211 | 11211 |
| memcache.hash_function | crc32 | crc32 |
| memcache.hash_strategy | consistent | consistent |
| memcache.lock_timeout | 15 | 15 |
| memcache.max_failover_attempts | 20 | 20 |
| memcache.protocol | ascii | ascii |
| memcache.redundancy | 1 | 1 |
| memcache.session_redundancy | 2 | 2 |
| memcached support | enabled |
|---|---|
| Version | 2.2.0 |
| libmemcached version | 1.0.18 |
| SASL support | yes |
| Session support | yes |
| igbinary support | no |
| json support | no |
| msgpack support | no |
| Directive | Local Value | Master Value |
|---|---|---|
| memcached.compression_factor | 1.3 | 1.3 |
| memcached.compression_threshold | 2000 | 2000 |
| memcached.compression_type | fastlz | fastlz |
| memcached.serializer | php | php |
| memcached.sess_binary | 0 | 0 |
| memcached.sess_connect_timeout | 1000 | 1000 |
| memcached.sess_consistent_hash | 0 | 0 |
| memcached.sess_lock_expire | 0 | 0 |
| memcached.sess_lock_max_wait | 0 | 0 |
| memcached.sess_lock_wait | 150000 | 150000 |
| memcached.sess_locking | 1 | 1 |
| memcached.sess_number_of_replicas | 0 | 0 |
| memcached.sess_prefix | memc.sess.key. | memc.sess.key. |
| memcached.sess_randomize_replica_read | 0 | 0 |
| memcached.sess_remove_failed | 0 | 0 |
| memcached.sess_sasl_password | no value | no value |
| memcached.sess_sasl_username | no value | no value |
| memcached.store_retry_count | 2 | 2 |
| memcached.use_sasl | 0 | 0 |
| MHASH support | Enabled |
| MHASH API Version | Emulated Support |
| MySQL Support | enabled |
|---|---|
| Active Persistent Links | 0 |
| Active Links | 0 |
| Client API version | mysqlnd 5.0.11-dev - 20120503 - $Id: 76b08b24596e12d4553bd41fc93cccd5bac2fe7a $ |
| Directive | Local Value | Master Value |
|---|---|---|
| mysql.allow_local_infile | On | On |
| mysql.allow_persistent | On | On |
| mysql.connect_timeout | 60 | 60 |
| mysql.default_host | no value | no value |
| mysql.default_password | no value | no value |
| mysql.default_port | no value | no value |
| mysql.default_socket | /var/run/mysqld/mysqld.sock | /var/run/mysqld/mysqld.sock |
| mysql.default_user | no value | no value |
| mysql.max_links | Unlimited | Unlimited |
| mysql.max_persistent | Unlimited | Unlimited |
| mysql.trace_mode | Off | Off |
| MysqlI Support | enabled |
|---|---|
| Client API library version | mysqlnd 5.0.11-dev - 20120503 - $Id: 76b08b24596e12d4553bd41fc93cccd5bac2fe7a $ |
| Active Persistent Links | 0 |
| Inactive Persistent Links | 0 |
| Active Links | 0 |
| Directive | Local Value | Master Value |
|---|---|---|
| mysqli.allow_local_infile | On | On |
| mysqli.allow_persistent | On | On |
| mysqli.default_host | no value | no value |
| mysqli.default_port | 3306 | 3306 |
| mysqli.default_pw | no value | no value |
| mysqli.default_socket | /var/run/mysqld/mysqld.sock | /var/run/mysqld/mysqld.sock |
| mysqli.default_user | no value | no value |
| mysqli.max_links | Unlimited | Unlimited |
| mysqli.max_persistent | Unlimited | Unlimited |
| mysqli.reconnect | Off | Off |
| mysqli.rollback_on_cached_plink | Off | Off |
| mysqlnd | enabled |
|---|---|
| Version | mysqlnd 5.0.11-dev - 20120503 - $Id: 76b08b24596e12d4553bd41fc93cccd5bac2fe7a $ |
| Compression | supported |
| core SSL | supported |
| extended SSL | supported |
| Command buffer size | 4096 |
| Read buffer size | 32768 |
| Read timeout | 31536000 |
| Collecting statistics | Yes |
| Collecting memory statistics | No |
| Tracing | n/a |
| Loaded plugins | mysqlnd,debug_trace,auth_plugin_mysql_native_password,auth_plugin_mysql_clear_password,auth_plugin_sha256_password |
| API Extensions | mysqli,pdo_mysql,mysql |
| mysqlnd statistics | |
|---|---|
| bytes_sent | 600919 |
| bytes_received | 5425372 |
| packets_sent | 8734 |
| packets_received | 152514 |
| protocol_overhead_in | 610056 |
| protocol_overhead_out | 34936 |
| bytes_received_ok_packet | 0 |
| bytes_received_eof_packet | 0 |
| bytes_received_rset_header_packet | 31131 |
| bytes_received_rset_field_meta_packet | 0 |
| bytes_received_rset_row_packet | 27311 |
| bytes_received_prepare_response_packet | 1357512 |
| bytes_received_change_user_packet | 3969292 |
| packets_sent_command | 4167 |
| packets_received_ok | 0 |
| packets_received_eof | 0 |
| packets_received_rset_header | 3459 |
| packets_received_rset_field_meta | 0 |
| packets_received_rset_row | 3967 |
| packets_received_prepare_response | 25860 |
| packets_received_change_user | 118828 |
| result_set_queries | 3459 |
| non_result_set_queries | 508 |
| no_index_used | 1370 |
| bad_index_used | 0 |
| slow_queries | 0 |
| buffered_sets | 3459 |
| unbuffered_sets | 0 |
| ps_buffered_sets | 0 |
| ps_unbuffered_sets | 0 |
| flushed_normal_sets | 0 |
| flushed_ps_sets | 0 |
| ps_prepared_never_executed | 0 |
| ps_prepared_once_executed | 0 |
| rows_fetched_from_server_normal | 115369 |
| rows_fetched_from_server_ps | 0 |
| rows_buffered_from_client_normal | 115369 |
| rows_buffered_from_client_ps | 0 |
| rows_fetched_from_client_normal_buffered | 115368 |
| rows_fetched_from_client_normal_unbuffered | 0 |
| rows_fetched_from_client_ps_buffered | 0 |
| rows_fetched_from_client_ps_unbuffered | 0 |
| rows_fetched_from_client_ps_cursor | 0 |
| rows_affected_normal | 108 |
| rows_affected_ps | 0 |
| rows_skipped_normal | 115369 |
| rows_skipped_ps | 0 |
| copy_on_write_saved | 526789 |
| copy_on_write_performed | 0 |
| command_buffer_too_small | 0 |
| connect_success | 200 |
| connect_failure | 0 |
| connection_reused | 0 |
| reconnect | 0 |
| pconnect_success | 0 |
| active_connections | 18446744073709551418 |
| active_persistent_connections | 0 |
| explicit_close | 199 |
| implicit_close | 0 |
| disconnect_close | 0 |
| in_middle_of_command_close | 0 |
| explicit_free_result | 3458 |
| implicit_free_result | 1 |
| explicit_stmt_close | 0 |
| implicit_stmt_close | 0 |
| mem_emalloc_count | 0 |
| mem_emalloc_amount | 0 |
| mem_ecalloc_count | 0 |
| mem_ecalloc_amount | 0 |
| mem_erealloc_count | 0 |
| mem_erealloc_amount | 0 |
| mem_efree_count | 0 |
| mem_efree_amount | 0 |
| mem_malloc_count | 0 |
| mem_malloc_amount | 0 |
| mem_calloc_count | 0 |
| mem_calloc_amount | 0 |
| mem_realloc_count | 0 |
| mem_realloc_amount | 0 |
| mem_free_count | 0 |
| mem_free_amount | 0 |
| mem_estrndup_count | 0 |
| mem_strndup_count | 0 |
| mem_estndup_count | 0 |
| mem_strdup_count | 0 |
| proto_text_fetched_null | 0 |
| proto_text_fetched_bit | 0 |
| proto_text_fetched_tinyint | 0 |
| proto_text_fetched_short | 0 |
| proto_text_fetched_int24 | 0 |
| proto_text_fetched_int | 98196 |
| proto_text_fetched_bigint | 1726 |
| proto_text_fetched_decimal | 0 |
| proto_text_fetched_float | 0 |
| proto_text_fetched_double | 0 |
| proto_text_fetched_date | 0 |
| proto_text_fetched_year | 0 |
| proto_text_fetched_time | 0 |
| proto_text_fetched_datetime | 0 |
| proto_text_fetched_timestamp | 0 |
| proto_text_fetched_string | 398177 |
| proto_text_fetched_blob | 0 |
| proto_text_fetched_enum | 229 |
| proto_text_fetched_set | 0 |
| proto_text_fetched_geometry | 0 |
| proto_text_fetched_other | 0 |
| proto_binary_fetched_null | 0 |
| proto_binary_fetched_bit | 0 |
| proto_binary_fetched_tinyint | 0 |
| proto_binary_fetched_short | 0 |
| proto_binary_fetched_int24 | 0 |
| proto_binary_fetched_int | 0 |
| proto_binary_fetched_bigint | 0 |
| proto_binary_fetched_decimal | 0 |
| proto_binary_fetched_float | 0 |
| proto_binary_fetched_double | 0 |
| proto_binary_fetched_date | 0 |
| proto_binary_fetched_year | 0 |
| proto_binary_fetched_time | 0 |
| proto_binary_fetched_datetime | 0 |
| proto_binary_fetched_timestamp | 0 |
| proto_binary_fetched_string | 0 |
| proto_binary_fetched_json | 0 |
| proto_binary_fetched_blob | 0 |
| proto_binary_fetched_enum | 0 |
| proto_binary_fetched_set | 0 |
| proto_binary_fetched_geometry | 0 |
| proto_binary_fetched_other | 0 |
| init_command_executed_count | 0 |
| init_command_failed_count | 0 |
| com_quit | 199 |
| com_init_db | 0 |
| com_query | 3968 |
| com_field_list | 0 |
| com_create_db | 0 |
| com_drop_db | 0 |
| com_refresh | 0 |
| com_shutdown | 0 |
| com_statistics | 0 |
| com_process_info | 0 |
| com_connect | 0 |
| com_process_kill | 0 |
| com_debug | 0 |
| com_ping | 0 |
| com_time | 0 |
| com_delayed_insert | 0 |
| com_change_user | 0 |
| com_binlog_dump | 0 |
| com_table_dump | 0 |
| com_connect_out | 0 |
| com_register_slave | 0 |
| com_stmt_prepare | 0 |
| com_stmt_execute | 0 |
| com_stmt_send_long_data | 0 |
| com_stmt_close | 0 |
| com_stmt_reset | 0 |
| com_stmt_set_option | 0 |
| com_stmt_fetch | 0 |
| com_deamon | 0 |
| bytes_received_real_data_normal | 2966998 |
| bytes_received_real_data_ps | 0 |
| OpenSSL support | enabled |
| OpenSSL Library Version | OpenSSL 1.0.2u 20 Dec 2019 |
| OpenSSL Header Version | OpenSSL 1.0.2u 20 Dec 2019 |
| Openssl default config | /opt/openssl-1.0.2u/ssl/openssl.cnf |
| Directive | Local Value | Master Value |
|---|---|---|
| openssl.cafile | /etc/ssl/certs/ca-certificates.crt | /etc/ssl/certs/ca-certificates.crt |
| openssl.capath | no value | no value |
| pcntl support | enabled |
|---|
| PCRE (Perl Compatible Regular Expressions) Support | enabled |
| PCRE Library Version | 8.38 2015-11-23 |
| Directive | Local Value | Master Value |
|---|---|---|
| pcre.backtrack_limit | 1000000 | 1000000 |
| pcre.recursion_limit | 100000 | 100000 |
| PDO support | enabled |
|---|---|
| PDO drivers | mysql, sqlite |
| PDO Driver for MySQL | enabled |
|---|---|
| Client API version | mysqlnd 5.0.11-dev - 20120503 - $Id: 76b08b24596e12d4553bd41fc93cccd5bac2fe7a $ |
| Directive | Local Value | Master Value |
|---|---|---|
| pdo_mysql.default_socket | /var/run/mysqld/mysqld.sock | /var/run/mysqld/mysqld.sock |
| PDO Driver for SQLite 3.x | enabled |
|---|---|
| SQLite Library | 3.8.10.2 |
| Phar: PHP Archive support | enabled |
|---|---|
| Phar EXT version | 2.0.2 |
| Phar API version | 1.1.1 |
| SVN revision | $Id: 6e5cec2462a6ded53d4379ea9a69487a60d5c43c $ |
| Phar-based phar archives | enabled |
| Tar-based phar archives | enabled |
| ZIP-based phar archives | enabled |
| gzip compression | enabled |
| bzip2 compression | enabled |
| OpenSSL support | enabled |
|
Phar based on pear/PHP_Archive, original concept by Davey Shafik. Phar fully realized by Gregory Beaver and Marcus Boerger. Portions of tar implementation Copyright (c) 2003-2009 Tim Kientzle. |
| Directive | Local Value | Master Value |
|---|---|---|
| phar.cache_list | no value | no value |
| phar.readonly | On | On |
| phar.require_hash | On | On |
| Revision | $Id: 5f4acc20904b1406142f2a0ede068db048c77e77 $ |
| PSpell Support | enabled |
| Readline Support | enabled |
|---|---|
| Readline library | 8.1 |
| Directive | Local Value | Master Value |
|---|---|---|
| cli.pager | no value | no value |
| cli.prompt | \b \> | \b \> |
| Recode Support | enabled |
| Revision | $Id: cde03aacd1a1218dcad9dabc2f284594a0a4aa16 $ |
| Reflection | enabled |
|---|---|
| Version | $Id: 5f15287237d5f78d75b19c26915aa7bd83dee8b8 $ |
| Session Support | enabled |
| Registered save handlers | files user memcache memcached |
| Registered serializer handlers | php_serialize php php_binary wddx |
| Directive | Local Value | Master Value |
|---|---|---|
| session.auto_start | Off | Off |
| session.cache_expire | 180 | 180 |
| session.cache_limiter | nocache | nocache |
| session.cookie_domain | no value | no value |
| session.cookie_httponly | On | Off |
| session.cookie_lifetime | 3600 | 0 |
| session.cookie_path | / | / |
| session.cookie_secure | Off | Off |
| session.entropy_file | /dev/urandom | /dev/urandom |
| session.entropy_length | 16 | 16 |
| session.gc_divisor | 1000 | 1000 |
| session.gc_maxlifetime | 3600 | 1440 |
| session.gc_probability | 1 | 1 |
| session.hash_bits_per_character | 5 | 5 |
| session.hash_function | 0 | 0 |
| session.name | PHPSESSID | PHPSESSID |
| session.referer_check | no value | no value |
| session.save_handler | files | files |
| session.save_path | /var/www/clients/client373/web726/tmp | /var/www/clients/client373/web726/tmp |
| session.serialize_handler | php | php |
| session.upload_progress.cleanup | On | On |
| session.upload_progress.enabled | On | On |
| session.upload_progress.freq | 1% | 1% |
| session.upload_progress.min_freq | 1 | 1 |
| session.upload_progress.name | PHP_SESSION_UPLOAD_PROGRESS | PHP_SESSION_UPLOAD_PROGRESS |
| session.upload_progress.prefix | upload_progress_ | upload_progress_ |
| session.use_cookies | On | On |
| session.use_only_cookies | On | Off |
| session.use_strict_mode | Off | Off |
| session.use_trans_sid | 0 | 0 |
| shmop support | enabled |
| Simplexml support | enabled |
|---|---|
| Revision | $Id: d7077fc935154236afb4fe70814ba358efdbdca4 $ |
| Schema support | enabled |
| Soap Client | enabled |
| Soap Server | enabled |
| Directive | Local Value | Master Value |
|---|---|---|
| soap.wsdl_cache | 1 | 1 |
| soap.wsdl_cache_dir | /tmp | /tmp |
| soap.wsdl_cache_enabled | 1 | 1 |
| soap.wsdl_cache_limit | 5 | 5 |
| soap.wsdl_cache_ttl | 86400 | 86400 |
| Sockets Support | enabled |
| SPL support | enabled |
|---|---|
| Interfaces | Countable, OuterIterator, RecursiveIterator, SeekableIterator, SplObserver, SplSubject |
| Classes | AppendIterator, ArrayIterator, ArrayObject, BadFunctionCallException, BadMethodCallException, CachingIterator, CallbackFilterIterator, DirectoryIterator, DomainException, EmptyIterator, FilesystemIterator, FilterIterator, GlobIterator, InfiniteIterator, InvalidArgumentException, IteratorIterator, LengthException, LimitIterator, LogicException, MultipleIterator, NoRewindIterator, OutOfBoundsException, OutOfRangeException, OverflowException, ParentIterator, RangeException, RecursiveArrayIterator, RecursiveCachingIterator, RecursiveCallbackFilterIterator, RecursiveDirectoryIterator, RecursiveFilterIterator, RecursiveIteratorIterator, RecursiveRegexIterator, RecursiveTreeIterator, RegexIterator, RuntimeException, SplDoublyLinkedList, SplFileInfo, SplFileObject, SplFixedArray, SplHeap, SplMinHeap, SplMaxHeap, SplObjectStorage, SplPriorityQueue, SplQueue, SplStack, SplTempFileObject, UnderflowException, UnexpectedValueException |
| SQLite3 support | enabled |
|---|---|
| SQLite3 module version | 0.7-dev |
| SQLite Library | 3.8.10.2 |
| Directive | Local Value | Master Value |
|---|---|---|
| sqlite3.extension_dir | no value | no value |
| SSH2 support | enabled |
|---|---|
| extension version | 0.13 |
| libssh2 version | 1.9.0 |
| banner | SSH-2.0-libssh2_1.9.0 |
| Dynamic Library Support | enabled |
| Path to sendmail | /usr/sbin/sendmail -t -i -f webmaster@ecatalogue.danubian.eu |
| Directive | Local Value | Master Value |
|---|---|---|
| assert.active | 1 | 1 |
| assert.bail | 0 | 0 |
| assert.callback | no value | no value |
| assert.quiet_eval | 0 | 0 |
| assert.warning | 1 | 1 |
| auto_detect_line_endings | 0 | 0 |
| default_socket_timeout | 60 | 60 |
| from | no value | no value |
| url_rewriter.tags | a=href,area=href,frame=src,input=src,form=fakeentry | a=href,area=href,frame=src,input=src,form=fakeentry |
| user_agent | no value | no value |
| svn support | enabled |
|---|---|
| svn client version | 1.14.1 |
| svn extension version | 1.0.3 |
| sysvmsg support | enabled |
| Revision | $Id: 58590192720bc56939152fde3645d808b348bb9b $ |
| Tidy support | enabled |
|---|---|
| libTidy Release | 2017/11/25 |
| Extension Version | 2.0 ($Id: 57f050b275c6da348310461a64aaad21feef8091 $) |
| Directive | Local Value | Master Value |
|---|---|---|
| tidy.clean_output | no value | no value |
| tidy.default_config | no value | no value |
| Tokenizer Support | enabled |
| WDDX Support | enabled |
|---|---|
| WDDX Session Serializer | enabled |
| XML Support | active |
| XML Namespace Support | active |
| libxml2 Version | 2.9.10 |
| XMLReader | enabled |
| core library version | xmlrpc-epi v. 0.51 |
| php extension version | 0.51 |
| author | Dan Libby |
| homepage | http://xmlrpc-epi.sourceforge.net |
| open sourced by | Epinions.com |
| XMLWriter | enabled |
| XSL | enabled |
| libxslt Version | 1.1.34 |
| libxslt compiled against libxml Version | 2.9.10 |
| EXSLT | enabled |
| libexslt Version | 1.1.34 |
| Zip | enabled |
| Zip version | 1.12.5 |
| Libzip version | 0.11.2 |
| ZLib Support | enabled |
|---|---|
| Stream Wrapper | compress.zlib:// |
| Stream Filter | zlib.inflate, zlib.deflate |
| Compiled Version | 1.2.11 |
| Linked Version | 1.2.11 |
| Directive | Local Value | Master Value |
|---|---|---|
| zlib.output_compression | Off | Off |
| zlib.output_compression_level | -1 | -1 |
| zlib.output_handler | no value | no value |
| Module Name |
|---|
| sysvsem |
| sysvshm |
| Content-Length | 0 |
|---|---|
| Connection | close |
| Host | danubian.eu |
| Accept-Encoding | gzip, br, zstd, deflate |
| Cookie | nette-browser=dilwvut0um; PHPSESSID=3pd2fnp07t6u4dnearcbs68st2 |
| User-Agent | Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com) |
| Accept | */* |
| alpha | "I"
|
|---|---|
| details | "41622" (5)
|
empty
| nette-browser | "dilwvut0um" (10)
|
|---|---|
| PHPSESSID | "3pd2fnp07t6u4dnearcbs68st2" (26)
|
X-Powered-By: Nette Framework
Content-Type: text/html; charset=utf-8
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=3pd2fnp07t6u4dnearcbs68st2; expires=Mon, 20-Jul-2026 08:54:50 GMT; Max-Age=3600; path=/; httponly
Set-Cookie: nette-browser=dilwvut0um; path=/; httponly
X-Frame-Options: SAMEORIGIN