Disclaimer: By using this website, you agree to the Terms and Conditions of Use (last updated 2015-10-31).
×866 termék felel meg a megadott adatoknak.
Minden 0-9 A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
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/Table/Selection.php:513 source ► Nette\Database\Connection-> queryArgs (arguments ►)
$statement | "SELECT * FROM `dnb_catalogue_item` WHERE (`locale` = ?) AND (`name` REGEXP "^([^ ]+ )*[^`a`-z]*N") ORDER BY `name`, `cores`, `cross_section`, `voltage ... " (171)
|
---|---|
$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:468 source ► Nette\Database\Table\Selection-> query (arguments ►)
$query | "SELECT * FROM `dnb_catalogue_item` WHERE (`locale` = ?) AND (`name` REGEXP "^([^ ]+ )*[^`a`-z]*N") ORDER BY `name`, `cores`, `cross_section`, `voltage ... " (171)
|
---|
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; 467: $this->accessedColumns = array(); 468: $result = $this->query($this->getSql()); 469: } else { 470: throw $exception; 471: } 472: }
/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/temp/cache/_Nette.FileTemplate/_templates.Search.default.latte-6a359de774037390404e9d95e6663988.php:92 source ► Nette\Database\Table\Selection-> rewind ()
82: <a class="label<?php if ($alpha === $cc): ?> label-important<?php endif ?>" title="<?php echo htmlSpecialChars(sprintf($template->translate('Show results whose name starts with the letter %s'), $cc)) ?> 83: " href="<?php echo htmlSpecialChars($_control->link("this", array('alpha' => $cc, 'substr' => NULL, 'vp-page' => NULL))) ?> 84: "><?php echo Nette\Templating\Helpers::escapeHtml($cc, ENT_NOQUOTES) ?></a> 85: <?php endfor ?> 86: </p> 87: <hr /> 88: <div class="pagination pagination-small pagination-centered"> 89: <?php $_ctrl = $_control->getComponent("vp"); if ($_ctrl instanceof Nette\Application\UI\IRenderable) $_ctrl->validateControl(); $_ctrl->render(FALSE) ?> 90: </div> 91: <table class="table table-striped"> 92: <?php $iterations = 0; foreach ($items as $item): ?> 93: <tr<?php if (isset($itemDetails) && $itemDetails->id == $item->id): ?> class="active"<?php endif ?>> 94: <?php echo $template->productRow($item) ?> 95: 96: </tr>
/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:
$params | array(1) ▼ |
---|---|
$types | array(4) ▼ |
$key | 0
|
$value | "HU" (2)
|
$type | "string" (6)
|
$time | 1739915635.927599
|
$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(6) ▼ {
locale => "hu" (2)
action => "default" (7)
id => NULL
alpha => "N"
details => "34635" (5)
"vp-page" => "25" (2)
}
post private => array(0)
files private => array(0)
frozen private => TRUE
}
]
Danubian\FrontModule\SearchPresenter(38) ► {
selector protected => Danubian\ItemSelector(7) ► {
locale protected => "HU" (2)
parameters protected => array(0)
alpha protected => "N"
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 => "N"
details => "34635" (5)
locale => "hu" (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 => "hu_HU" (5)
rfc => "hu-hu" (5)
iso => "hu" (2)
code => "hu" (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(6) ▼ {
locale => "hu" (2)
action => "default" (7)
id => NULL
alpha => "N"
details => "34635" (5)
"vp-page" => "25" (2)
}
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(2) { ... }
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 => "N"
details => "34635" (5)
locale => "hu" (2)
"vp-page" => 25
}
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 => "Front:Search" (12)
params private => array(7) ► {
"vp-page" => 29
query => NULL
substr => NULL
alpha => "N"
details => "34635" (5)
locale => "hu" (2)
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 => "hu-hu" (5)
prysmianGroupLink => array(2) { ... }
loginLink => "/user/login/?backlink=%2Fhu%2F%3Falpha%3DN%26details%3D34635%26vp-page%3D25" (75)
registerLink => "/user/register/?backlink=%2Fhu%2F%3Falpha%3DN%26details%3D34635%26vp-page%3D25" (78)
profileLink => "/user/profile/?backlink=%2Fhu%2F%3Falpha%3DN%26details%3D34635%26vp-page%3D25" (77)
tac => array(5) { ... }
query => NULL
alpha => "N"
substr => NULL
details => "34635" (5)
count => 866
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 => "abra_194.jpg" (12)
appendices => array(0)
dataSheetLink => "/hu/download/data-sheet/?group_id=194&doc_locale=en&backlink=%2Fhu%2F%3Falpha%3DN%26details%3D34635%26vp-page%3D25" (114)
template => Nette\Templating\FileTemplate(8) { *RECURSION* }
_g => stdClass(0)
_extended => TRUE
}
filters private => array(0)
helpers private => array(2) ▼ {
translate => Nette\Callback(1) { ... }
categoryname => Nette\Callback(1) { ... }
}
helperLoaders private => array(2) ▼ [
0 => Nette\Callback(1) { ... }
1 => Nette\Callback(1) { ... }
]
cacheStorage private => Nette\Caching\Storages\PhpFileStorage(5) ▼ {
hint => "/VisualPaginator/template.phtml" (31)
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 => "hu" (2)
action => "default" (7)
id => NULL
alpha => "N"
details => "34635" (5)
query => NULL
substr => NULL
}
components private => array(2) ▼ {
vp => VisualPaginator(11) ► {
paginator private => Nette\Utils\Paginator(4) { ... }
page => 25
template private => Nette\Templating\FileTemplate(8) { ... }
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) { ... }
}
parameterForm => Nette\Application\UI\Form(19) ► {
onSuccess => array(1) [ ... ]
onError => NULL
onSubmit => NULL
onInvalidSubmit => NULL
submittedBy private => FALSE
httpData private => array(0)
element private => Nette\Utils\Html(4) { ... }
renderer private => NULL
translator private => Danubian\GettextTranslator(2) { ... }
groups private => array(0)
errors private => array(0)
onValidate => NULL
currentGroup protected => NULL
valid protected => NULL
components private => array(5) { ... }
cloning private => NULL
parent private => Danubian\FrontModule\SearchPresenter(38) { *RECURSION* }
name private => "parameterForm" (13)
monitors private => array(2) { ... }
}
}
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 | "/hu/?alpha=N&details=34635&vp-page=25" (37)
|
QUERY_STRING | "alpha=N&details=34635&vp-page=25" (32)
|
REQUEST_METHOD | "GET" (3)
|
SERVER_PROTOCOL | "HTTP/1.1" (8)
|
GATEWAY_INTERFACE | "CGI/1.1" (7)
|
REDIRECT_QUERY_STRING | "alpha=N&details=34635&vp-page=25" (32)
|
REDIRECT_URL | "/hu/" (4)
|
REMOTE_PORT | "41837" (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 | "3.15.223.162" (12)
|
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=ga747vhswt; PHPSESSID=04h0r54lj52fjqnrn3imiihuc0" (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/hu/" (23)
|
SCRIPT_URL | "/hu/" (4)
|
QS_EventRequest | "3.15.223.162" (12)
|
QS_ClientLowPrio | "0x04" (4)
|
QS_ClaudeEvent_Remaining | "9"
|
QS_ClaudeEvent | "1"
|
QS_ClaudeEvent_Counter | "2"
|
QS_Cond | "claudebot" (9)
|
QS_Event | "3.15.223.162" (12)
|
QS_Block_seen | ""
|
QS_Block | "3.15.223.162" (12)
|
QS_ConnectionId | "1739915616594778262362793" (25)
|
QS_AllConn | "94" (2)
|
QS_IPConn | "2"
|
QS_SrvConn | "94" (2)
|
REDIRECT_STATUS | "200" (3)
|
REDIRECT_SSL_TLS_SNI | "danubian.eu" (11)
|
REDIRECT_HTTPS | "on" (2)
|
REDIRECT_QS_ClaudeEvent_Remaining | "9"
|
REDIRECT_QS_ClaudeEvent_Counter | "2"
|
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/hu/" (23)
|
REDIRECT_SCRIPT_URL | "/hu/" (4)
|
REDIRECT_QS_Cond | "claudebot" (9)
|
REDIRECT_QS_ClaudeEvent | "1"
|
REDIRECT_QS_Block | "3.15.223.162" (12)
|
REDIRECT_QS_Event | "3.15.223.162" (12)
|
REDIRECT_QS_EventRequest | "3.15.223.162" (12)
|
REDIRECT_QS_ClientLowPrio | "0x04" (4)
|
REDIRECT_QS_ConnectionId | "1739915616594778262362793" (25)
|
REDIRECT_QS_AllConn | "94" (2)
|
REDIRECT_QS_IPConn | "2"
|
REDIRECT_QS_SrvConn | "94" (2)
|
FCGI_ROLE | "RESPONDER" (9)
|
PHP_SELF | "/index.php" (10)
|
REQUEST_TIME_FLOAT | 1739915634.9666021
|
REQUEST_TIME | 1739915634
|
__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/utils/Pictures.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/Application/UI/Form.php |
/var/www/clients/client373/web726/web/libs/Nette/Forms/Form.php |
/var/www/clients/client373/web726/web/libs/Nette/Forms/Container.php |
/var/www/clients/client373/web726/web/libs/Nette/Application/UI/Link.php |
/var/www/clients/client373/web726/web/libs/Nette/Forms/Controls/SubmitButton.php |
/var/www/clients/client373/web726/web/libs/Nette/Forms/Controls/Button.php |
/var/www/clients/client373/web726/web/libs/Nette/Forms/Controls/BaseControl.php |
/var/www/clients/client373/web726/web/libs/Nette/Forms/IControl.php |
/var/www/clients/client373/web726/web/libs/Nette/Forms/ISubmitterControl.php |
/var/www/clients/client373/web726/web/libs/Nette/Forms/Rules.php |
/var/www/clients/client373/web726/web/libs/Nette/Forms/Controls/MultiSelectBox.php |
/var/www/clients/client373/web726/web/libs/Nette/Forms/Controls/SelectBox.php |
/var/www/clients/client373/web726/web/app/Buttonizer.php |
/var/www/clients/client373/web726/web/temp/cache/_Nette.FileTemplate/_VisualPaginator.template.phtml-fd94bd0f8a844489cc7f97bef7f47711.php |
/var/www/clients/client373/web726/web/libs/Nette/Iterators/CachingIterator.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 | 111812 |
bytes_received | 1533460 |
packets_sent | 1568 |
packets_received | 42796 |
protocol_overhead_in | 171184 |
protocol_overhead_out | 6272 |
bytes_received_ok_packet | 0 |
bytes_received_eof_packet | 0 |
bytes_received_rset_header_packet | 5868 |
bytes_received_rset_field_meta_packet | 0 |
bytes_received_rset_row_packet | 5102 |
bytes_received_prepare_response_packet | 259373 |
bytes_received_change_user_packet | 1256748 |
packets_sent_command | 757 |
packets_received_ok | 0 |
packets_received_eof | 0 |
packets_received_rset_header | 652 |
packets_received_rset_field_meta | 0 |
packets_received_rset_row | 730 |
packets_received_prepare_response | 4870 |
packets_received_change_user | 36490 |
result_set_queries | 652 |
non_result_set_queries | 78 |
no_index_used | 264 |
bad_index_used | 0 |
slow_queries | 0 |
buffered_sets | 652 |
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 | 35838 |
rows_fetched_from_server_ps | 0 |
rows_buffered_from_client_normal | 35838 |
rows_buffered_from_client_ps | 0 |
rows_fetched_from_client_normal_buffered | 35838 |
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 | 24 |
rows_affected_ps | 0 |
rows_skipped_normal | 35838 |
rows_skipped_ps | 0 |
copy_on_write_saved | 169440 |
copy_on_write_performed | 0 |
command_buffer_too_small | 0 |
connect_success | 27 |
connect_failure | 0 |
connection_reused | 0 |
reconnect | 0 |
pconnect_success | 0 |
active_connections | 18446744073709551591 |
active_persistent_connections | 0 |
explicit_close | 26 |
implicit_close | 0 |
disconnect_close | 0 |
in_middle_of_command_close | 0 |
explicit_free_result | 651 |
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 | 32532 |
proto_text_fetched_bigint | 319 |
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 | 129338 |
proto_text_fetched_blob | 0 |
proto_text_fetched_enum | 45 |
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 | 26 |
com_init_db | 0 |
com_query | 731 |
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 | 941304 |
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=ga747vhswt; PHPSESSID=04h0r54lj52fjqnrn3imiihuc0 |
User-Agent | Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com) |
Accept | */* |
alpha | "N"
|
---|---|
details | "34635" (5)
|
vp-page | "25" (2)
|
empty
nette-browser | "ga747vhswt" (10)
|
---|---|
PHPSESSID | "04h0r54lj52fjqnrn3imiihuc0" (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=04h0r54lj52fjqnrn3imiihuc0; expires=Tue, 18-Feb-2025 22:53:54 GMT; Max-Age=3600; path=/; httponly
Set-Cookie: nette-browser=ga747vhswt; path=/; httponly
X-Frame-Options: SAMEORIGIN