Flunorette\ConnectionException #HY000

SQLSTATE[HY000] [2006] MySQL server has gone away search►

Source file

File: .../test/vendor/icaine/flunorette/src/exceptions.php:30

20: 21: class DriverException extends \PDOException { 22: 23: /** @var string */ 24: public $queryString; 25: 26: /** 27: * @returns self 28: */ 29: public static function from(\PDOException $src) { 30: $e = new static($src->message, null, $src); 31: if (!$src->errorInfo && preg_match('#SQLSTATE\[(.*?)\] \[(.*?)\] (.*)#A', $src->message, $m)) { 32: $m[2] = (int) $m[2]; 33: $e->errorInfo = array_slice($m, 1); 34: $e->code = $m[1];

Call stack

  1. .../test/vendor/icaine/flunorette/src/Connection.php:101 source  Flunorette\DriverException:: from (arguments)

    91: } 92: 93: protected function connect() { 94: if (null === $this->pdo) { 95: try { 96: $pdo = new PDO($this->params[0], $this->params[1], $this->params[2], $this->options); 97: $pdo->setAttribute(PDO::ATTR_DEFAULT_FETCH_MODE, PDO::FETCH_ASSOC); 98: $pdo->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION); 99: $pdo->setAttribute(PDO::ATTR_STATEMENT_CLASS, array('Flunorette\Statement', array($this))); 100: } catch (\PDOException $e) { 101: throw ConnectionException::from($e); 102: } 103: $this->pdo = $pdo; 104: 105: if (!empty($this->options['transactionCounter'])) {
    $src
    
    
  2. .../test/vendor/icaine/flunorette/src/Connection.php:191 source  Flunorette\Connection-> connect ()

    181: return $this; 182: } 183: 184: /** @return Cache */ 185: public function getCache() { 186: return $this->cache; 187: } 188: 189: /** @return SqlPreprocessor */ 190: public function getPreprocessor() { 191: $this->connect(); 192: return $this->preprocessor; 193: } 194: 195: public function __call($name, $args) {
  3. .../icaine/flunorette/src/Queries/QueryContext.php:100 source  Flunorette\Connection-> getPreprocessor ()

    90: return $this->connection->getDriver(); 91: } 92: 93: /** @return IReflection */ 94: public function getDatabaseReflection() { 95: return $this->connection->getDatabaseReflection(); 96: } 97: 98: /** @return SqlPreprocessor */ 99: public function getPreprocessor() { 100: return $this->connection->getPreprocessor(); 101: } 102: 103: public function __sleep() { 104: return array('table', 'tableAlias', 'statements', 'parameters', 'joins', 'isSmartJoinEnabled');
  4. .../vendor/icaine/flunorette/src/Queries/Query.php:157 source  Flunorette\Queries\QueryContext-> getPreprocessor ()

    147: $query .= " $clause " . implode($separator, $this->context->statements[$clause]); 148: } elseif ($separator === null) { 149: $query .= " $clause " . $this->context->statements[$clause]; 150: } elseif (is_callable($separator)) { 151: $query .= call_user_func($separator); 152: } else { 153: throw new Exception("Clause '$clause' is incorrectly set to '$separator'."); 154: } 155: } 156: } 157: return $this->context->getPreprocessor()->tryDelimite(trim($query)); 158: } 159: 160: private function buildParameters() { 161: $this->init();
  5. .../icaine/flunorette/src/Queries/JoinableQuery.php:91 source  Flunorette\Queries\Query-> buildQuery ()

    81: */ 82: protected function buildQuery() { 83: # first create extra join from statements with columns with referenced tables 84: $statementsWithReferences = array('WHERE', 'SELECT', 'GROUP BY', 'ORDER BY'); 85: foreach ($statementsWithReferences as $clause) { 86: if (array_key_exists($clause, $this->context->statements)) { 87: $this->context->statements[$clause] = array_map(array($this, 'createUndefinedJoins'), $this->context->statements[$clause]); 88: } 89: } 90: 91: return parent::buildQuery(); 92: } 93: 94: /** 95: * Create undefined joins from statement with column with referenced tables
  6. .../icaine/flunorette/src/Queries/SelectQuery.php:53 source  Flunorette\Queries\JoinableQuery-> buildQuery ()

    43: if (!in_array($this->getTableAlias(), $this->context->joins)) { 44: $this->context->joins[] = $this->getTableAlias(); 45: } 46: } 47: 48: protected function buildQuery() { 49: $this->init(); 50: if (empty($this->context->statements['SELECT'])) { 51: $this->context->statements['SELECT'][] = $this->getTableAlias() . '.*'; 52: } 53: return parent::buildQuery(); 54: } 55: 56: } 57:
  7. .../vendor/icaine/flunorette/src/Queries/Query.php:357 source  Flunorette\Queries\SelectQuery-> buildQuery ()

    347: $this->getContext(); //context must be available 348: return $this->buildParameters(); 349: } 350: 351: /** 352: * Get query string 353: * @return string 354: */ 355: public function getQuery() { 356: $this->getContext(); //context must be available 357: return $this->buildQuery(); 358: } 359: 360: /** 361: * Get query string with expanded params
  8. .../icaine/flunorette/src/Selections/Selection.php:184 source  Flunorette\Queries\Query-> getQuery ()

    174: return $this; 175: } 176: 177: /** @return QueryContext */ 178: protected function getContext() { 179: return $this->context; 180: } 181: 182: /** @return string */ 183: public function getSql($type = 'select') { 184: return $this->getSqlBuilder($type)->getQuery(); 185: } 186: 187: /** 188: *
  9. .../icaine/flunorette/src/Selections/Selection.php:579 source  Flunorette\Selections\Selection-> getSql ()

    569: protected function execute() { 570: if ($this->rows !== null) { 571: return; 572: } 573: 574: if ($this->primary === null && $this->getSqlBuilder()->getClause('SELECT') === null) { 575: throw new InvalidStateException('Table with no primary key requires an explicit select clause.'); 576: } 577: 578: try { 579: $result = $this->query($this->getSql(), 'SELECT'); 580: } catch (\PDOException $exception) { 581: throw $exception; 582: } 583:
  10. .../icaine/flunorette/src/Selections/Selection.php:823 source  Flunorette\Selections\Selection-> execute ()

    813: } 814: 815: $clone = clone $prototype; 816: $clone->setActive($active); 817: return $clone; 818: } 819: 820: //======================= interface Iterator =======================// 821: 822: public function rewind() { 823: $this->execute(); 824: $this->keys = array_keys($this->data); 825: reset($this->keys); 826: $this->frozen = true; 827: }
  11. .../icaine/flunorette/src/Selections/Selection.php:236 source  Flunorette\Selections\Selection-> rewind ()

    226: * @param string 227: * @param string column name used for an array value or NULL for the whole row 228: * @return array 229: */ 230: public function fetchPairs($key = null, $value = NULL) { 231: $return = array(); 232: if (null === $key) { 233: $key = $this->getPrimary(); 234: } 235: 236: foreach ($this as $row) { 237: $return[is_object($row[$key]) ? (string) $row[$key] : $row[$key]] = ($value ? $row[$value] : $row); 238: } 239: return $return; 240: }
  12. .../test/app/model/services/Languages.php:55 source  Flunorette\Selections\Selection-> fetchPairs (arguments)

    45: return $this->getFromList('ident', 'id', $ident); 46: } 47: 48: public function getLangIdentById($id) { 49: return $this->getFromList('id', 'ident', $id); 50: } 51: 52: public function listLanguages($key = 'id', $value = 'ident') { 53: $list = &$this->_lists["$key:$value"]; 54: if (!isset($list)) { 55: $list = $this->langDao->findActive()->select("$key, $value")->fetchPairs($key, $value); 56: } 57: return $list; 58: } 59:
    $key
    "ident" (5)
    
    $value
    "id" (2)
    
  13. .../test/app/model/services/Languages.php:61 source  Services\Languages-> listLanguages (arguments)

    51: 52: public function listLanguages($key = 'id', $value = 'ident') { 53: $list = &$this->_lists["$key:$value"]; 54: if (!isset($list)) { 55: $list = $this->langDao->findActive()->select("$key, $value")->fetchPairs($key, $value); 56: } 57: return $list; 58: } 59: 60: private function getFromList($key, $value, $searchKey) { 61: $list = $this->listLanguages($key, $value); 62: return isset($list[$searchKey]) ? $list[$searchKey] : null; 63: } 64: 65: /**
    $key
    "ident" (5)
    
    $value
    "id" (2)
    
  14. .../test/app/model/services/Languages.php:45 source  Services\Languages-> getFromList (arguments)

    35: */ 36: public function __construct($defaultLanguage, LangDao $langDao, Request $request, Translator $translator, Language $language = null) { 37: $this->langDao = $langDao; 38: $this->request = $request; 39: $this->translator = $translator; 40: $this->language = $language ?: new Language(); 41: $this->setDefaultLang($defaultLanguage); 42: } 43: 44: public function getLangIdByIdent($ident) { 45: return $this->getFromList('ident', 'id', $ident); 46: } 47: 48: public function getLangIdentById($id) { 49: return $this->getFromList('id', 'ident', $id);
    $key
    "ident" (5)
    
    $value
    "id" (2)
    
    $searchKey
    "cs" (2)
    
  15. .../test/app/model/services/Languages.php:99 source  Services\Languages-> getLangIdByIdent (arguments)

    89: */ 90: public function getDefaultLang($need = true) { 91: return $this->language->getDefault($need); 92: } 93: 94: /** 95: * @param int|string $langId 96: */ 97: public function setDefaultLang($langId) { 98: if (!is_numeric($langId)) { 99: $langId = $this->getLangIdByIdent($langId); 100: } 101: $this->language->setDefault($langId); 102: } 103:
    $ident
    "cs" (2)
    
  16. .../test/app/model/services/Languages.php:41 source  Services\Languages-> setDefaultLang (arguments)

    31: * @param LangDao $langDao 32: * @param Request $request 33: * @param Language $language 34: * @param Translator $translator 35: */ 36: public function __construct($defaultLanguage, LangDao $langDao, Request $request, Translator $translator, Language $language = null) { 37: $this->langDao = $langDao; 38: $this->request = $request; 39: $this->translator = $translator; 40: $this->language = $language ?: new Language(); 41: $this->setDefaultLang($defaultLanguage); 42: } 43: 44: public function getLangIdByIdent($ident) { 45: return $this->getFromList('ident', 'id', $ident);
    $langId
    "cs" (2)
    
  17. .../cache/Nette.Configurator/Container_188cca9cb9.php:4144 source  Services\Languages-> __construct (arguments)

    4134: $service = new Daos\LangDao($this->getService('flunorette.default')); 4135: return $service; 4136: } 4137: 4138: 4139: /** 4140: * @return Services\Languages 4141: */ 4142: public function createServiceLanguages() 4143: { 4144: $service = new Services\Languages('cs', $this->getService('langDao'), $this->getService('http.request'), $this->getService('translator')); 4145: return $service; 4146: } 4147: 4148:
    $defaultLanguage
    "cs" (2)
    
    $langDao
    
    
    $request
    
    
    $translator
    
    
  18. inner-code Container_188cca9cb9-> createServiceLanguages ()

  19. .../test/vendor/nette/di/src/DI/Container.php:157 source  call_user_func_array (arguments)

    147: $method = self::getMethodName($name); 148: if (isset($this->creating[$name])) { 149: throw new Nette\InvalidStateException(sprintf('Circular reference detected for services: %s.', implode(', ', array_keys($this->creating)))); 150: 151: } elseif (!method_exists($this, $method) || !($rm = new \ReflectionMethod($this, $method)) || $rm->getName() !== $method) { 152: throw new MissingServiceException("Service '$name' not found."); 153: } 154: 155: $this->creating[$name] = TRUE; 156: try { 157: $service = call_user_func_array(array($this, $method), $args); 158: } catch (\Exception $e) { 159: unset($this->creating[$name]); 160: throw $e; 161: }
    $function_name
    
    
    $parameters
    array ()
    
  20. .../test/vendor/nette/di/src/DI/Container.php:103 source  Nette\DI\Container-> createService (arguments)

    93: * @param string 94: * @return object 95: * @throws MissingServiceException 96: */ 97: public function getService($name) 98: { 99: if (!isset($this->registry[$name])) { 100: if (isset($this->meta[self::ALIASES][$name])) { 101: return $this->getService($this->meta[self::ALIASES][$name]); 102: } 103: $this->registry[$name] = $this->createService($name); 104: } 105: return $this->registry[$name]; 106: } 107:
    $name
    "languages" (9)
    
  21. .../cache/Nette.Configurator/Container_188cca9cb9.php:2576 source  Nette\DI\Container-> getService (arguments)

    2566: $service = new AdminModule\Routes($this->getService('languages'), 'admin/', TRUE); 2567: return $service; 2568: } 2569: 2570: 2571: /** 2572: * @return CronModule\Routes 2573: */ 2574: public function createService__CronModule__routes() 2575: { 2576: $service = new CronModule\Routes($this->getService('languages'), FALSE); 2577: return $service; 2578: } 2579: 2580:
    $name
    "languages" (9)
    
  22. inner-code Container_188cca9cb9-> createService__CronModule__routes ()

  23. .../test/vendor/nette/di/src/DI/Container.php:157 source  call_user_func_array (arguments)

    147: $method = self::getMethodName($name); 148: if (isset($this->creating[$name])) { 149: throw new Nette\InvalidStateException(sprintf('Circular reference detected for services: %s.', implode(', ', array_keys($this->creating)))); 150: 151: } elseif (!method_exists($this, $method) || !($rm = new \ReflectionMethod($this, $method)) || $rm->getName() !== $method) { 152: throw new MissingServiceException("Service '$name' not found."); 153: } 154: 155: $this->creating[$name] = TRUE; 156: try { 157: $service = call_user_func_array(array($this, $method), $args); 158: } catch (\Exception $e) { 159: unset($this->creating[$name]); 160: throw $e; 161: }
    $function_name
    
    
    $parameters
    array ()
    
  24. .../test/vendor/nette/di/src/DI/Container.php:103 source  Nette\DI\Container-> createService (arguments)

    93: * @param string 94: * @return object 95: * @throws MissingServiceException 96: */ 97: public function getService($name) 98: { 99: if (!isset($this->registry[$name])) { 100: if (isset($this->meta[self::ALIASES][$name])) { 101: return $this->getService($this->meta[self::ALIASES][$name]); 102: } 103: $this->registry[$name] = $this->createService($name); 104: } 105: return $this->registry[$name]; 106: } 107:
    $name
    "CronModule.routes" (17)
    
  25. .../cache/Nette.Configurator/Container_188cca9cb9.php:4657 source  Nette\DI\Container-> getService (arguments)

    4647: return $service; 4648: } 4649: 4650: 4651: /** 4652: * @return InnPress\Application\Router 4653: */ 4654: public function createServiceRouting__router() 4655: { 4656: $service = new InnPress\Application\Router; 4657: $service->addRouter($this->getService('CronModule.routes')); 4658: $service->addRouter($this->getService('GopayModule.routes')); 4659: $service->addRouter($this->getService('AdminModule.routes')); 4660: $service->addRouter($this->getService('FrontModule.routes')); 4661: WebChemistry\Images\Router\Factory::prepend($service, $this->getService('images.routerFactory'));
    $name
    "CronModule.routes" (17)
    
  26. inner-code Container_188cca9cb9-> createServiceRouting__router ()

  27. .../test/vendor/nette/di/src/DI/Container.php:157 source  call_user_func_array (arguments)

    147: $method = self::getMethodName($name); 148: if (isset($this->creating[$name])) { 149: throw new Nette\InvalidStateException(sprintf('Circular reference detected for services: %s.', implode(', ', array_keys($this->creating)))); 150: 151: } elseif (!method_exists($this, $method) || !($rm = new \ReflectionMethod($this, $method)) || $rm->getName() !== $method) { 152: throw new MissingServiceException("Service '$name' not found."); 153: } 154: 155: $this->creating[$name] = TRUE; 156: try { 157: $service = call_user_func_array(array($this, $method), $args); 158: } catch (\Exception $e) { 159: unset($this->creating[$name]); 160: throw $e; 161: }
    $function_name
    
    
    $parameters
    array ()
    
  28. .../test/vendor/nette/di/src/DI/Container.php:103 source  Nette\DI\Container-> createService (arguments)

    93: * @param string 94: * @return object 95: * @throws MissingServiceException 96: */ 97: public function getService($name) 98: { 99: if (!isset($this->registry[$name])) { 100: if (isset($this->meta[self::ALIASES][$name])) { 101: return $this->getService($this->meta[self::ALIASES][$name]); 102: } 103: $this->registry[$name] = $this->createService($name); 104: } 105: return $this->registry[$name]; 106: } 107:
    $name
    "routing.router" (14)
    
  29. .../test/vendor/nette/di/src/DI/Container.php:184 source  Nette\DI\Container-> getService (arguments)

    174: * @param string class or interface 175: * @param bool throw exception if service doesn't exist? 176: * @return object service or NULL 177: * @throws MissingServiceException 178: */ 179: public function getByType($class, $need = TRUE) 180: { 181: $class = ltrim($class, '\\'); 182: if (!empty($this->meta[self::TYPES][$class][TRUE])) { 183: if (count($names = $this->meta[self::TYPES][$class][TRUE]) === 1) { 184: return $this->getService($names[0]); 185: } 186: throw new MissingServiceException("Multiple services of type $class found: " . implode(', ', $names) . '.'); 187: 188: } elseif ($need) {
    $name
    "routing.router" (14)
    
  30. /var/www/promaturak.cz/test/app/bootstrap.php:59 source  Nette\DI\Container-> getByType (arguments)

    49: ->addDirectory(LIBS_DIR) 50: ->register(); 51: 52: $configurator->addConfig(__DIR__ . '/config/config.neon'); 53: if (is_file(__DIR__ . '/config/local.neon')) { 54: $configurator->addConfig(__DIR__ . '/config/local.neon'); // none section 55: } 56: 57: $container = $configurator->getContainer(); 58: 59: $router = $container->getByType('InnPress\Application\Router'); 60: $router->addRouter(new Route('dev/<presenter>/<action>', array( 61: 'module' => 'Dev', 62: 'presenter' => 'Log', 63: 'action' => 'list',
    $class
    "InnPress\Application\Router" (27)
    
  31. /var/www/promaturak.cz/test/www/index.php:6 source  require (arguments)

    1: <?php 2: 3: // Uncomment this line if you must temporarily take down your site for maintenance. 4: // require '.maintenance.php'; 5: 6: $container = require __DIR__ . '/../app/bootstrap.php'; 7: 8: $container->getService('application')->run(); 9:
    #0
    "/var/www/promaturak.cz/test/app/bootstrap.php" (45)
    

Caused by

PDOException #2006

SQLSTATE[HY000] [2006] MySQL server has gone away

Source file

File: .../test/vendor/icaine/flunorette/src/Connection.php:96

86: $this->options = $options + static::$defaultOptions; 87: 88: if (empty($options['lazy'])) { 89: $this->connect(); 90: } 91: } 92: 93: protected function connect() { 94: if (null === $this->pdo) { 95: try { 96: $pdo = new PDO($this->params[0], $this->params[1], $this->params[2], $this->options); 97: $pdo->setAttribute(PDO::ATTR_DEFAULT_FETCH_MODE, PDO::FETCH_ASSOC); 98: $pdo->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION); 99: $pdo->setAttribute(PDO::ATTR_STATEMENT_CLASS, array('Flunorette\Statement', array($this))); 100: } catch (\PDOException $e) {

Call stack

  1. .../test/vendor/icaine/flunorette/src/Connection.php:96 source  PDO-> __construct (arguments)

    86: $this->options = $options + static::$defaultOptions; 87: 88: if (empty($options['lazy'])) { 89: $this->connect(); 90: } 91: } 92: 93: protected function connect() { 94: if (null === $this->pdo) { 95: try { 96: $pdo = new PDO($this->params[0], $this->params[1], $this->params[2], $this->options); 97: $pdo->setAttribute(PDO::ATTR_DEFAULT_FETCH_MODE, PDO::FETCH_ASSOC); 98: $pdo->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION); 99: $pdo->setAttribute(PDO::ATTR_STATEMENT_CLASS, array('Flunorette\Statement', array($this))); 100: } catch (\PDOException $e) {
    $dsn
    "mysql:host=127.0.0.1;dbname=test_promaturak_cz" (46)
    
    $username
    "D0515_DkbDrreuVz" (16)
    
    $passwd
    "SsrPmXsVtSHBS7P9" (16)
    
    $options
    
    
  2. .../test/vendor/icaine/flunorette/src/Connection.php:191 source  Flunorette\Connection-> connect ()

    181: return $this; 182: } 183: 184: /** @return Cache */ 185: public function getCache() { 186: return $this->cache; 187: } 188: 189: /** @return SqlPreprocessor */ 190: public function getPreprocessor() { 191: $this->connect(); 192: return $this->preprocessor; 193: } 194: 195: public function __call($name, $args) {
  3. .../icaine/flunorette/src/Queries/QueryContext.php:100 source  Flunorette\Connection-> getPreprocessor ()

    90: return $this->connection->getDriver(); 91: } 92: 93: /** @return IReflection */ 94: public function getDatabaseReflection() { 95: return $this->connection->getDatabaseReflection(); 96: } 97: 98: /** @return SqlPreprocessor */ 99: public function getPreprocessor() { 100: return $this->connection->getPreprocessor(); 101: } 102: 103: public function __sleep() { 104: return array('table', 'tableAlias', 'statements', 'parameters', 'joins', 'isSmartJoinEnabled');
  4. .../vendor/icaine/flunorette/src/Queries/Query.php:157 source  Flunorette\Queries\QueryContext-> getPreprocessor ()

    147: $query .= " $clause " . implode($separator, $this->context->statements[$clause]); 148: } elseif ($separator === null) { 149: $query .= " $clause " . $this->context->statements[$clause]; 150: } elseif (is_callable($separator)) { 151: $query .= call_user_func($separator); 152: } else { 153: throw new Exception("Clause '$clause' is incorrectly set to '$separator'."); 154: } 155: } 156: } 157: return $this->context->getPreprocessor()->tryDelimite(trim($query)); 158: } 159: 160: private function buildParameters() { 161: $this->init();
  5. .../icaine/flunorette/src/Queries/JoinableQuery.php:91 source  Flunorette\Queries\Query-> buildQuery ()

    81: */ 82: protected function buildQuery() { 83: # first create extra join from statements with columns with referenced tables 84: $statementsWithReferences = array('WHERE', 'SELECT', 'GROUP BY', 'ORDER BY'); 85: foreach ($statementsWithReferences as $clause) { 86: if (array_key_exists($clause, $this->context->statements)) { 87: $this->context->statements[$clause] = array_map(array($this, 'createUndefinedJoins'), $this->context->statements[$clause]); 88: } 89: } 90: 91: return parent::buildQuery(); 92: } 93: 94: /** 95: * Create undefined joins from statement with column with referenced tables
  6. .../icaine/flunorette/src/Queries/SelectQuery.php:53 source  Flunorette\Queries\JoinableQuery-> buildQuery ()

    43: if (!in_array($this->getTableAlias(), $this->context->joins)) { 44: $this->context->joins[] = $this->getTableAlias(); 45: } 46: } 47: 48: protected function buildQuery() { 49: $this->init(); 50: if (empty($this->context->statements['SELECT'])) { 51: $this->context->statements['SELECT'][] = $this->getTableAlias() . '.*'; 52: } 53: return parent::buildQuery(); 54: } 55: 56: } 57:
  7. .../vendor/icaine/flunorette/src/Queries/Query.php:357 source  Flunorette\Queries\SelectQuery-> buildQuery ()

    347: $this->getContext(); //context must be available 348: return $this->buildParameters(); 349: } 350: 351: /** 352: * Get query string 353: * @return string 354: */ 355: public function getQuery() { 356: $this->getContext(); //context must be available 357: return $this->buildQuery(); 358: } 359: 360: /** 361: * Get query string with expanded params
  8. .../icaine/flunorette/src/Selections/Selection.php:184 source  Flunorette\Queries\Query-> getQuery ()

    174: return $this; 175: } 176: 177: /** @return QueryContext */ 178: protected function getContext() { 179: return $this->context; 180: } 181: 182: /** @return string */ 183: public function getSql($type = 'select') { 184: return $this->getSqlBuilder($type)->getQuery(); 185: } 186: 187: /** 188: *
  9. .../icaine/flunorette/src/Selections/Selection.php:579 source  Flunorette\Selections\Selection-> getSql ()

    569: protected function execute() { 570: if ($this->rows !== null) { 571: return; 572: } 573: 574: if ($this->primary === null && $this->getSqlBuilder()->getClause('SELECT') === null) { 575: throw new InvalidStateException('Table with no primary key requires an explicit select clause.'); 576: } 577: 578: try { 579: $result = $this->query($this->getSql(), 'SELECT'); 580: } catch (\PDOException $exception) { 581: throw $exception; 582: } 583:
  10. .../icaine/flunorette/src/Selections/Selection.php:823 source  Flunorette\Selections\Selection-> execute ()

    813: } 814: 815: $clone = clone $prototype; 816: $clone->setActive($active); 817: return $clone; 818: } 819: 820: //======================= interface Iterator =======================// 821: 822: public function rewind() { 823: $this->execute(); 824: $this->keys = array_keys($this->data); 825: reset($this->keys); 826: $this->frozen = true; 827: }
  11. .../icaine/flunorette/src/Selections/Selection.php:236 source  Flunorette\Selections\Selection-> rewind ()

    226: * @param string 227: * @param string column name used for an array value or NULL for the whole row 228: * @return array 229: */ 230: public function fetchPairs($key = null, $value = NULL) { 231: $return = array(); 232: if (null === $key) { 233: $key = $this->getPrimary(); 234: } 235: 236: foreach ($this as $row) { 237: $return[is_object($row[$key]) ? (string) $row[$key] : $row[$key]] = ($value ? $row[$value] : $row); 238: } 239: return $return; 240: }
  12. .../test/app/model/services/Languages.php:55 source  Flunorette\Selections\Selection-> fetchPairs (arguments)

    45: return $this->getFromList('ident', 'id', $ident); 46: } 47: 48: public function getLangIdentById($id) { 49: return $this->getFromList('id', 'ident', $id); 50: } 51: 52: public function listLanguages($key = 'id', $value = 'ident') { 53: $list = &$this->_lists["$key:$value"]; 54: if (!isset($list)) { 55: $list = $this->langDao->findActive()->select("$key, $value")->fetchPairs($key, $value); 56: } 57: return $list; 58: } 59:
    $key
    "ident" (5)
    
    $value
    "id" (2)
    
  13. .../test/app/model/services/Languages.php:61 source  Services\Languages-> listLanguages (arguments)

    51: 52: public function listLanguages($key = 'id', $value = 'ident') { 53: $list = &$this->_lists["$key:$value"]; 54: if (!isset($list)) { 55: $list = $this->langDao->findActive()->select("$key, $value")->fetchPairs($key, $value); 56: } 57: return $list; 58: } 59: 60: private function getFromList($key, $value, $searchKey) { 61: $list = $this->listLanguages($key, $value); 62: return isset($list[$searchKey]) ? $list[$searchKey] : null; 63: } 64: 65: /**
    $key
    "ident" (5)
    
    $value
    "id" (2)
    
  14. .../test/app/model/services/Languages.php:45 source  Services\Languages-> getFromList (arguments)

    35: */ 36: public function __construct($defaultLanguage, LangDao $langDao, Request $request, Translator $translator, Language $language = null) { 37: $this->langDao = $langDao; 38: $this->request = $request; 39: $this->translator = $translator; 40: $this->language = $language ?: new Language(); 41: $this->setDefaultLang($defaultLanguage); 42: } 43: 44: public function getLangIdByIdent($ident) { 45: return $this->getFromList('ident', 'id', $ident); 46: } 47: 48: public function getLangIdentById($id) { 49: return $this->getFromList('id', 'ident', $id);
    $key
    "ident" (5)
    
    $value
    "id" (2)
    
    $searchKey
    "cs" (2)
    
  15. .../test/app/model/services/Languages.php:99 source  Services\Languages-> getLangIdByIdent (arguments)

    89: */ 90: public function getDefaultLang($need = true) { 91: return $this->language->getDefault($need); 92: } 93: 94: /** 95: * @param int|string $langId 96: */ 97: public function setDefaultLang($langId) { 98: if (!is_numeric($langId)) { 99: $langId = $this->getLangIdByIdent($langId); 100: } 101: $this->language->setDefault($langId); 102: } 103:
    $ident
    "cs" (2)
    
  16. .../test/app/model/services/Languages.php:41 source  Services\Languages-> setDefaultLang (arguments)

    31: * @param LangDao $langDao 32: * @param Request $request 33: * @param Language $language 34: * @param Translator $translator 35: */ 36: public function __construct($defaultLanguage, LangDao $langDao, Request $request, Translator $translator, Language $language = null) { 37: $this->langDao = $langDao; 38: $this->request = $request; 39: $this->translator = $translator; 40: $this->language = $language ?: new Language(); 41: $this->setDefaultLang($defaultLanguage); 42: } 43: 44: public function getLangIdByIdent($ident) { 45: return $this->getFromList('ident', 'id', $ident);
    $langId
    "cs" (2)
    
  17. .../cache/Nette.Configurator/Container_188cca9cb9.php:4144 source  Services\Languages-> __construct (arguments)

    4134: $service = new Daos\LangDao($this->getService('flunorette.default')); 4135: return $service; 4136: } 4137: 4138: 4139: /** 4140: * @return Services\Languages 4141: */ 4142: public function createServiceLanguages() 4143: { 4144: $service = new Services\Languages('cs', $this->getService('langDao'), $this->getService('http.request'), $this->getService('translator')); 4145: return $service; 4146: } 4147: 4148:
    $defaultLanguage
    "cs" (2)
    
    $langDao
    
    
    $request
    
    
    $translator
    
    
  18. inner-code Container_188cca9cb9-> createServiceLanguages ()

  19. .../test/vendor/nette/di/src/DI/Container.php:157 source  call_user_func_array (arguments)

    147: $method = self::getMethodName($name); 148: if (isset($this->creating[$name])) { 149: throw new Nette\InvalidStateException(sprintf('Circular reference detected for services: %s.', implode(', ', array_keys($this->creating)))); 150: 151: } elseif (!method_exists($this, $method) || !($rm = new \ReflectionMethod($this, $method)) || $rm->getName() !== $method) { 152: throw new MissingServiceException("Service '$name' not found."); 153: } 154: 155: $this->creating[$name] = TRUE; 156: try { 157: $service = call_user_func_array(array($this, $method), $args); 158: } catch (\Exception $e) { 159: unset($this->creating[$name]); 160: throw $e; 161: }
    $function_name
    
    
    $parameters
    array ()
    
  20. .../test/vendor/nette/di/src/DI/Container.php:103 source  Nette\DI\Container-> createService (arguments)

    93: * @param string 94: * @return object 95: * @throws MissingServiceException 96: */ 97: public function getService($name) 98: { 99: if (!isset($this->registry[$name])) { 100: if (isset($this->meta[self::ALIASES][$name])) { 101: return $this->getService($this->meta[self::ALIASES][$name]); 102: } 103: $this->registry[$name] = $this->createService($name); 104: } 105: return $this->registry[$name]; 106: } 107:
    $name
    "languages" (9)
    
  21. .../cache/Nette.Configurator/Container_188cca9cb9.php:2576 source  Nette\DI\Container-> getService (arguments)

    2566: $service = new AdminModule\Routes($this->getService('languages'), 'admin/', TRUE); 2567: return $service; 2568: } 2569: 2570: 2571: /** 2572: * @return CronModule\Routes 2573: */ 2574: public function createService__CronModule__routes() 2575: { 2576: $service = new CronModule\Routes($this->getService('languages'), FALSE); 2577: return $service; 2578: } 2579: 2580:
    $name
    "languages" (9)
    
  22. inner-code Container_188cca9cb9-> createService__CronModule__routes ()

  23. .../test/vendor/nette/di/src/DI/Container.php:157 source  call_user_func_array (arguments)

    147: $method = self::getMethodName($name); 148: if (isset($this->creating[$name])) { 149: throw new Nette\InvalidStateException(sprintf('Circular reference detected for services: %s.', implode(', ', array_keys($this->creating)))); 150: 151: } elseif (!method_exists($this, $method) || !($rm = new \ReflectionMethod($this, $method)) || $rm->getName() !== $method) { 152: throw new MissingServiceException("Service '$name' not found."); 153: } 154: 155: $this->creating[$name] = TRUE; 156: try { 157: $service = call_user_func_array(array($this, $method), $args); 158: } catch (\Exception $e) { 159: unset($this->creating[$name]); 160: throw $e; 161: }
    $function_name
    
    
    $parameters
    array ()
    
  24. .../test/vendor/nette/di/src/DI/Container.php:103 source  Nette\DI\Container-> createService (arguments)

    93: * @param string 94: * @return object 95: * @throws MissingServiceException 96: */ 97: public function getService($name) 98: { 99: if (!isset($this->registry[$name])) { 100: if (isset($this->meta[self::ALIASES][$name])) { 101: return $this->getService($this->meta[self::ALIASES][$name]); 102: } 103: $this->registry[$name] = $this->createService($name); 104: } 105: return $this->registry[$name]; 106: } 107:
    $name
    "CronModule.routes" (17)
    
  25. .../cache/Nette.Configurator/Container_188cca9cb9.php:4657 source  Nette\DI\Container-> getService (arguments)

    4647: return $service; 4648: } 4649: 4650: 4651: /** 4652: * @return InnPress\Application\Router 4653: */ 4654: public function createServiceRouting__router() 4655: { 4656: $service = new InnPress\Application\Router; 4657: $service->addRouter($this->getService('CronModule.routes')); 4658: $service->addRouter($this->getService('GopayModule.routes')); 4659: $service->addRouter($this->getService('AdminModule.routes')); 4660: $service->addRouter($this->getService('FrontModule.routes')); 4661: WebChemistry\Images\Router\Factory::prepend($service, $this->getService('images.routerFactory'));
    $name
    "CronModule.routes" (17)
    
  26. inner-code Container_188cca9cb9-> createServiceRouting__router ()

  27. .../test/vendor/nette/di/src/DI/Container.php:157 source  call_user_func_array (arguments)

    147: $method = self::getMethodName($name); 148: if (isset($this->creating[$name])) { 149: throw new Nette\InvalidStateException(sprintf('Circular reference detected for services: %s.', implode(', ', array_keys($this->creating)))); 150: 151: } elseif (!method_exists($this, $method) || !($rm = new \ReflectionMethod($this, $method)) || $rm->getName() !== $method) { 152: throw new MissingServiceException("Service '$name' not found."); 153: } 154: 155: $this->creating[$name] = TRUE; 156: try { 157: $service = call_user_func_array(array($this, $method), $args); 158: } catch (\Exception $e) { 159: unset($this->creating[$name]); 160: throw $e; 161: }
    $function_name
    
    
    $parameters
    array ()
    
  28. .../test/vendor/nette/di/src/DI/Container.php:103 source  Nette\DI\Container-> createService (arguments)

    93: * @param string 94: * @return object 95: * @throws MissingServiceException 96: */ 97: public function getService($name) 98: { 99: if (!isset($this->registry[$name])) { 100: if (isset($this->meta[self::ALIASES][$name])) { 101: return $this->getService($this->meta[self::ALIASES][$name]); 102: } 103: $this->registry[$name] = $this->createService($name); 104: } 105: return $this->registry[$name]; 106: } 107:
    $name
    "routing.router" (14)
    
  29. .../test/vendor/nette/di/src/DI/Container.php:184 source  Nette\DI\Container-> getService (arguments)

    174: * @param string class or interface 175: * @param bool throw exception if service doesn't exist? 176: * @return object service or NULL 177: * @throws MissingServiceException 178: */ 179: public function getByType($class, $need = TRUE) 180: { 181: $class = ltrim($class, '\\'); 182: if (!empty($this->meta[self::TYPES][$class][TRUE])) { 183: if (count($names = $this->meta[self::TYPES][$class][TRUE]) === 1) { 184: return $this->getService($names[0]); 185: } 186: throw new MissingServiceException("Multiple services of type $class found: " . implode(', ', $names) . '.'); 187: 188: } elseif ($need) {
    $name
    "routing.router" (14)
    
  30. /var/www/promaturak.cz/test/app/bootstrap.php:59 source  Nette\DI\Container-> getByType (arguments)

    49: ->addDirectory(LIBS_DIR) 50: ->register(); 51: 52: $configurator->addConfig(__DIR__ . '/config/config.neon'); 53: if (is_file(__DIR__ . '/config/local.neon')) { 54: $configurator->addConfig(__DIR__ . '/config/local.neon'); // none section 55: } 56: 57: $container = $configurator->getContainer(); 58: 59: $router = $container->getByType('InnPress\Application\Router'); 60: $router->addRouter(new Route('dev/<presenter>/<action>', array( 61: 'module' => 'Dev', 62: 'presenter' => 'Log', 63: 'action' => 'list',
    $class
    "InnPress\Application\Router" (27)
    
  31. /var/www/promaturak.cz/test/www/index.php:6 source  require (arguments)

    1: <?php 2: 3: // Uncomment this line if you must temporarily take down your site for maintenance. 4: // require '.maintenance.php'; 5: 6: $container = require __DIR__ . '/../app/bootstrap.php'; 7: 8: $container->getService('application')->run(); 9:
    #0
    "/var/www/promaturak.cz/test/app/bootstrap.php" (45)
    

Caused by

PDOException

Packets out of order. Expected 0 received 1. Packet size=68

Source file

File: .../test/vendor/icaine/flunorette/src/Connection.php:96

86: $this->options = $options + static::$defaultOptions; 87: 88: if (empty($options['lazy'])) { 89: $this->connect(); 90: } 91: } 92: 93: protected function connect() { 94: if (null === $this->pdo) { 95: try { 96: $pdo = new PDO($this->params[0], $this->params[1], $this->params[2], $this->options); 97: $pdo->setAttribute(PDO::ATTR_DEFAULT_FETCH_MODE, PDO::FETCH_ASSOC); 98: $pdo->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION); 99: $pdo->setAttribute(PDO::ATTR_STATEMENT_CLASS, array('Flunorette\Statement', array($this))); 100: } catch (\PDOException $e) {

Call stack

  1. .../test/vendor/icaine/flunorette/src/Connection.php:96 source  PDO-> __construct (arguments)

    86: $this->options = $options + static::$defaultOptions; 87: 88: if (empty($options['lazy'])) { 89: $this->connect(); 90: } 91: } 92: 93: protected function connect() { 94: if (null === $this->pdo) { 95: try { 96: $pdo = new PDO($this->params[0], $this->params[1], $this->params[2], $this->options); 97: $pdo->setAttribute(PDO::ATTR_DEFAULT_FETCH_MODE, PDO::FETCH_ASSOC); 98: $pdo->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION); 99: $pdo->setAttribute(PDO::ATTR_STATEMENT_CLASS, array('Flunorette\Statement', array($this))); 100: } catch (\PDOException $e) {
    $dsn
    "mysql:host=127.0.0.1;dbname=test_promaturak_cz" (46)
    
    $username
    "D0515_DkbDrreuVz" (16)
    
    $passwd
    "SsrPmXsVtSHBS7P9" (16)
    
    $options
    
    
  2. .../test/vendor/icaine/flunorette/src/Connection.php:191 source  Flunorette\Connection-> connect ()

    181: return $this; 182: } 183: 184: /** @return Cache */ 185: public function getCache() { 186: return $this->cache; 187: } 188: 189: /** @return SqlPreprocessor */ 190: public function getPreprocessor() { 191: $this->connect(); 192: return $this->preprocessor; 193: } 194: 195: public function __call($name, $args) {
  3. .../icaine/flunorette/src/Queries/QueryContext.php:100 source  Flunorette\Connection-> getPreprocessor ()

    90: return $this->connection->getDriver(); 91: } 92: 93: /** @return IReflection */ 94: public function getDatabaseReflection() { 95: return $this->connection->getDatabaseReflection(); 96: } 97: 98: /** @return SqlPreprocessor */ 99: public function getPreprocessor() { 100: return $this->connection->getPreprocessor(); 101: } 102: 103: public function __sleep() { 104: return array('table', 'tableAlias', 'statements', 'parameters', 'joins', 'isSmartJoinEnabled');
  4. .../vendor/icaine/flunorette/src/Queries/Query.php:157 source  Flunorette\Queries\QueryContext-> getPreprocessor ()

    147: $query .= " $clause " . implode($separator, $this->context->statements[$clause]); 148: } elseif ($separator === null) { 149: $query .= " $clause " . $this->context->statements[$clause]; 150: } elseif (is_callable($separator)) { 151: $query .= call_user_func($separator); 152: } else { 153: throw new Exception("Clause '$clause' is incorrectly set to '$separator'."); 154: } 155: } 156: } 157: return $this->context->getPreprocessor()->tryDelimite(trim($query)); 158: } 159: 160: private function buildParameters() { 161: $this->init();
  5. .../icaine/flunorette/src/Queries/JoinableQuery.php:91 source  Flunorette\Queries\Query-> buildQuery ()

    81: */ 82: protected function buildQuery() { 83: # first create extra join from statements with columns with referenced tables 84: $statementsWithReferences = array('WHERE', 'SELECT', 'GROUP BY', 'ORDER BY'); 85: foreach ($statementsWithReferences as $clause) { 86: if (array_key_exists($clause, $this->context->statements)) { 87: $this->context->statements[$clause] = array_map(array($this, 'createUndefinedJoins'), $this->context->statements[$clause]); 88: } 89: } 90: 91: return parent::buildQuery(); 92: } 93: 94: /** 95: * Create undefined joins from statement with column with referenced tables
  6. .../icaine/flunorette/src/Queries/SelectQuery.php:53 source  Flunorette\Queries\JoinableQuery-> buildQuery ()

    43: if (!in_array($this->getTableAlias(), $this->context->joins)) { 44: $this->context->joins[] = $this->getTableAlias(); 45: } 46: } 47: 48: protected function buildQuery() { 49: $this->init(); 50: if (empty($this->context->statements['SELECT'])) { 51: $this->context->statements['SELECT'][] = $this->getTableAlias() . '.*'; 52: } 53: return parent::buildQuery(); 54: } 55: 56: } 57:
  7. .../vendor/icaine/flunorette/src/Queries/Query.php:357 source  Flunorette\Queries\SelectQuery-> buildQuery ()

    347: $this->getContext(); //context must be available 348: return $this->buildParameters(); 349: } 350: 351: /** 352: * Get query string 353: * @return string 354: */ 355: public function getQuery() { 356: $this->getContext(); //context must be available 357: return $this->buildQuery(); 358: } 359: 360: /** 361: * Get query string with expanded params
  8. .../icaine/flunorette/src/Selections/Selection.php:184 source  Flunorette\Queries\Query-> getQuery ()

    174: return $this; 175: } 176: 177: /** @return QueryContext */ 178: protected function getContext() { 179: return $this->context; 180: } 181: 182: /** @return string */ 183: public function getSql($type = 'select') { 184: return $this->getSqlBuilder($type)->getQuery(); 185: } 186: 187: /** 188: *
  9. .../icaine/flunorette/src/Selections/Selection.php:579 source  Flunorette\Selections\Selection-> getSql ()

    569: protected function execute() { 570: if ($this->rows !== null) { 571: return; 572: } 573: 574: if ($this->primary === null && $this->getSqlBuilder()->getClause('SELECT') === null) { 575: throw new InvalidStateException('Table with no primary key requires an explicit select clause.'); 576: } 577: 578: try { 579: $result = $this->query($this->getSql(), 'SELECT'); 580: } catch (\PDOException $exception) { 581: throw $exception; 582: } 583:
  10. .../icaine/flunorette/src/Selections/Selection.php:823 source  Flunorette\Selections\Selection-> execute ()

    813: } 814: 815: $clone = clone $prototype; 816: $clone->setActive($active); 817: return $clone; 818: } 819: 820: //======================= interface Iterator =======================// 821: 822: public function rewind() { 823: $this->execute(); 824: $this->keys = array_keys($this->data); 825: reset($this->keys); 826: $this->frozen = true; 827: }
  11. .../icaine/flunorette/src/Selections/Selection.php:236 source  Flunorette\Selections\Selection-> rewind ()

    226: * @param string 227: * @param string column name used for an array value or NULL for the whole row 228: * @return array 229: */ 230: public function fetchPairs($key = null, $value = NULL) { 231: $return = array(); 232: if (null === $key) { 233: $key = $this->getPrimary(); 234: } 235: 236: foreach ($this as $row) { 237: $return[is_object($row[$key]) ? (string) $row[$key] : $row[$key]] = ($value ? $row[$value] : $row); 238: } 239: return $return; 240: }
  12. .../test/app/model/services/Languages.php:55 source  Flunorette\Selections\Selection-> fetchPairs (arguments)

    45: return $this->getFromList('ident', 'id', $ident); 46: } 47: 48: public function getLangIdentById($id) { 49: return $this->getFromList('id', 'ident', $id); 50: } 51: 52: public function listLanguages($key = 'id', $value = 'ident') { 53: $list = &$this->_lists["$key:$value"]; 54: if (!isset($list)) { 55: $list = $this->langDao->findActive()->select("$key, $value")->fetchPairs($key, $value); 56: } 57: return $list; 58: } 59:
    $key
    "ident" (5)
    
    $value
    "id" (2)
    
  13. .../test/app/model/services/Languages.php:61 source  Services\Languages-> listLanguages (arguments)

    51: 52: public function listLanguages($key = 'id', $value = 'ident') { 53: $list = &$this->_lists["$key:$value"]; 54: if (!isset($list)) { 55: $list = $this->langDao->findActive()->select("$key, $value")->fetchPairs($key, $value); 56: } 57: return $list; 58: } 59: 60: private function getFromList($key, $value, $searchKey) { 61: $list = $this->listLanguages($key, $value); 62: return isset($list[$searchKey]) ? $list[$searchKey] : null; 63: } 64: 65: /**
    $key
    "ident" (5)
    
    $value
    "id" (2)
    
  14. .../test/app/model/services/Languages.php:45 source  Services\Languages-> getFromList (arguments)

    35: */ 36: public function __construct($defaultLanguage, LangDao $langDao, Request $request, Translator $translator, Language $language = null) { 37: $this->langDao = $langDao; 38: $this->request = $request; 39: $this->translator = $translator; 40: $this->language = $language ?: new Language(); 41: $this->setDefaultLang($defaultLanguage); 42: } 43: 44: public function getLangIdByIdent($ident) { 45: return $this->getFromList('ident', 'id', $ident); 46: } 47: 48: public function getLangIdentById($id) { 49: return $this->getFromList('id', 'ident', $id);
    $key
    "ident" (5)
    
    $value
    "id" (2)
    
    $searchKey
    "cs" (2)
    
  15. .../test/app/model/services/Languages.php:99 source  Services\Languages-> getLangIdByIdent (arguments)

    89: */ 90: public function getDefaultLang($need = true) { 91: return $this->language->getDefault($need); 92: } 93: 94: /** 95: * @param int|string $langId 96: */ 97: public function setDefaultLang($langId) { 98: if (!is_numeric($langId)) { 99: $langId = $this->getLangIdByIdent($langId); 100: } 101: $this->language->setDefault($langId); 102: } 103:
    $ident
    "cs" (2)
    
  16. .../test/app/model/services/Languages.php:41 source  Services\Languages-> setDefaultLang (arguments)

    31: * @param LangDao $langDao 32: * @param Request $request 33: * @param Language $language 34: * @param Translator $translator 35: */ 36: public function __construct($defaultLanguage, LangDao $langDao, Request $request, Translator $translator, Language $language = null) { 37: $this->langDao = $langDao; 38: $this->request = $request; 39: $this->translator = $translator; 40: $this->language = $language ?: new Language(); 41: $this->setDefaultLang($defaultLanguage); 42: } 43: 44: public function getLangIdByIdent($ident) { 45: return $this->getFromList('ident', 'id', $ident);
    $langId
    "cs" (2)
    
  17. .../cache/Nette.Configurator/Container_188cca9cb9.php:4144 source  Services\Languages-> __construct (arguments)

    4134: $service = new Daos\LangDao($this->getService('flunorette.default')); 4135: return $service; 4136: } 4137: 4138: 4139: /** 4140: * @return Services\Languages 4141: */ 4142: public function createServiceLanguages() 4143: { 4144: $service = new Services\Languages('cs', $this->getService('langDao'), $this->getService('http.request'), $this->getService('translator')); 4145: return $service; 4146: } 4147: 4148:
    $defaultLanguage
    "cs" (2)
    
    $langDao
    
    
    $request
    
    
    $translator
    
    
  18. inner-code Container_188cca9cb9-> createServiceLanguages ()

  19. .../test/vendor/nette/di/src/DI/Container.php:157 source  call_user_func_array (arguments)

    147: $method = self::getMethodName($name); 148: if (isset($this->creating[$name])) { 149: throw new Nette\InvalidStateException(sprintf('Circular reference detected for services: %s.', implode(', ', array_keys($this->creating)))); 150: 151: } elseif (!method_exists($this, $method) || !($rm = new \ReflectionMethod($this, $method)) || $rm->getName() !== $method) { 152: throw new MissingServiceException("Service '$name' not found."); 153: } 154: 155: $this->creating[$name] = TRUE; 156: try { 157: $service = call_user_func_array(array($this, $method), $args); 158: } catch (\Exception $e) { 159: unset($this->creating[$name]); 160: throw $e; 161: }
    $function_name
    
    
    $parameters
    array ()
    
  20. .../test/vendor/nette/di/src/DI/Container.php:103 source  Nette\DI\Container-> createService (arguments)

    93: * @param string 94: * @return object 95: * @throws MissingServiceException 96: */ 97: public function getService($name) 98: { 99: if (!isset($this->registry[$name])) { 100: if (isset($this->meta[self::ALIASES][$name])) { 101: return $this->getService($this->meta[self::ALIASES][$name]); 102: } 103: $this->registry[$name] = $this->createService($name); 104: } 105: return $this->registry[$name]; 106: } 107:
    $name
    "languages" (9)
    
  21. .../cache/Nette.Configurator/Container_188cca9cb9.php:2576 source  Nette\DI\Container-> getService (arguments)

    2566: $service = new AdminModule\Routes($this->getService('languages'), 'admin/', TRUE); 2567: return $service; 2568: } 2569: 2570: 2571: /** 2572: * @return CronModule\Routes 2573: */ 2574: public function createService__CronModule__routes() 2575: { 2576: $service = new CronModule\Routes($this->getService('languages'), FALSE); 2577: return $service; 2578: } 2579: 2580:
    $name
    "languages" (9)
    
  22. inner-code Container_188cca9cb9-> createService__CronModule__routes ()

  23. .../test/vendor/nette/di/src/DI/Container.php:157 source  call_user_func_array (arguments)

    147: $method = self::getMethodName($name); 148: if (isset($this->creating[$name])) { 149: throw new Nette\InvalidStateException(sprintf('Circular reference detected for services: %s.', implode(', ', array_keys($this->creating)))); 150: 151: } elseif (!method_exists($this, $method) || !($rm = new \ReflectionMethod($this, $method)) || $rm->getName() !== $method) { 152: throw new MissingServiceException("Service '$name' not found."); 153: } 154: 155: $this->creating[$name] = TRUE; 156: try { 157: $service = call_user_func_array(array($this, $method), $args); 158: } catch (\Exception $e) { 159: unset($this->creating[$name]); 160: throw $e; 161: }
    $function_name
    
    
    $parameters
    array ()
    
  24. .../test/vendor/nette/di/src/DI/Container.php:103 source  Nette\DI\Container-> createService (arguments)

    93: * @param string 94: * @return object 95: * @throws MissingServiceException 96: */ 97: public function getService($name) 98: { 99: if (!isset($this->registry[$name])) { 100: if (isset($this->meta[self::ALIASES][$name])) { 101: return $this->getService($this->meta[self::ALIASES][$name]); 102: } 103: $this->registry[$name] = $this->createService($name); 104: } 105: return $this->registry[$name]; 106: } 107:
    $name
    "CronModule.routes" (17)
    
  25. .../cache/Nette.Configurator/Container_188cca9cb9.php:4657 source  Nette\DI\Container-> getService (arguments)

    4647: return $service; 4648: } 4649: 4650: 4651: /** 4652: * @return InnPress\Application\Router 4653: */ 4654: public function createServiceRouting__router() 4655: { 4656: $service = new InnPress\Application\Router; 4657: $service->addRouter($this->getService('CronModule.routes')); 4658: $service->addRouter($this->getService('GopayModule.routes')); 4659: $service->addRouter($this->getService('AdminModule.routes')); 4660: $service->addRouter($this->getService('FrontModule.routes')); 4661: WebChemistry\Images\Router\Factory::prepend($service, $this->getService('images.routerFactory'));
    $name
    "CronModule.routes" (17)
    
  26. inner-code Container_188cca9cb9-> createServiceRouting__router ()

  27. .../test/vendor/nette/di/src/DI/Container.php:157 source  call_user_func_array (arguments)

    147: $method = self::getMethodName($name); 148: if (isset($this->creating[$name])) { 149: throw new Nette\InvalidStateException(sprintf('Circular reference detected for services: %s.', implode(', ', array_keys($this->creating)))); 150: 151: } elseif (!method_exists($this, $method) || !($rm = new \ReflectionMethod($this, $method)) || $rm->getName() !== $method) { 152: throw new MissingServiceException("Service '$name' not found."); 153: } 154: 155: $this->creating[$name] = TRUE; 156: try { 157: $service = call_user_func_array(array($this, $method), $args); 158: } catch (\Exception $e) { 159: unset($this->creating[$name]); 160: throw $e; 161: }
    $function_name
    
    
    $parameters
    array ()
    
  28. .../test/vendor/nette/di/src/DI/Container.php:103 source  Nette\DI\Container-> createService (arguments)

    93: * @param string 94: * @return object 95: * @throws MissingServiceException 96: */ 97: public function getService($name) 98: { 99: if (!isset($this->registry[$name])) { 100: if (isset($this->meta[self::ALIASES][$name])) { 101: return $this->getService($this->meta[self::ALIASES][$name]); 102: } 103: $this->registry[$name] = $this->createService($name); 104: } 105: return $this->registry[$name]; 106: } 107:
    $name
    "routing.router" (14)
    
  29. .../test/vendor/nette/di/src/DI/Container.php:184 source  Nette\DI\Container-> getService (arguments)

    174: * @param string class or interface 175: * @param bool throw exception if service doesn't exist? 176: * @return object service or NULL 177: * @throws MissingServiceException 178: */ 179: public function getByType($class, $need = TRUE) 180: { 181: $class = ltrim($class, '\\'); 182: if (!empty($this->meta[self::TYPES][$class][TRUE])) { 183: if (count($names = $this->meta[self::TYPES][$class][TRUE]) === 1) { 184: return $this->getService($names[0]); 185: } 186: throw new MissingServiceException("Multiple services of type $class found: " . implode(', ', $names) . '.'); 187: 188: } elseif ($need) {
    $name
    "routing.router" (14)
    
  30. /var/www/promaturak.cz/test/app/bootstrap.php:59 source  Nette\DI\Container-> getByType (arguments)

    49: ->addDirectory(LIBS_DIR) 50: ->register(); 51: 52: $configurator->addConfig(__DIR__ . '/config/config.neon'); 53: if (is_file(__DIR__ . '/config/local.neon')) { 54: $configurator->addConfig(__DIR__ . '/config/local.neon'); // none section 55: } 56: 57: $container = $configurator->getContainer(); 58: 59: $router = $container->getByType('InnPress\Application\Router'); 60: $router->addRouter(new Route('dev/<presenter>/<action>', array( 61: 'module' => 'Dev', 62: 'presenter' => 'Log', 63: 'action' => 'list',
    $class
    "InnPress\Application\Router" (27)
    
  31. /var/www/promaturak.cz/test/www/index.php:6 source  require (arguments)

    1: <?php 2: 3: // Uncomment this line if you must temporarily take down your site for maintenance. 4: // require '.maintenance.php'; 5: 6: $container = require __DIR__ . '/../app/bootstrap.php'; 7: 8: $container->getService('application')->run(); 9:
    #0
    "/var/www/promaturak.cz/test/app/bootstrap.php" (45)
    

Environment

$_SERVER

USER
"www-data" (8)
HOME
"/var/www" (8)
SCRIPT_NAME
"/index.php" (10)
REQUEST_URI
"/"
QUERY_STRING
""
REQUEST_METHOD
"GET" (3)
SERVER_PROTOCOL
"HTTP/1.1" (8)
GATEWAY_INTERFACE
"CGI/1.1" (7)
REMOTE_PORT
"41282" (5)
SCRIPT_FILENAME
"//var/www/promaturak.cz/test/www/index.php" (42)
SERVER_ADMIN
"[no address given]" (18)
CONTEXT_DOCUMENT_ROOT
"/var/www/promaturak.cz/test/www" (31)
CONTEXT_PREFIX
""
REQUEST_SCHEME
"https" (5)
DOCUMENT_ROOT
"/var/www/promaturak.cz/test/www" (31)
REMOTE_ADDR
"195.54.160.149" (14)
SERVER_PORT
"443" (3)
SERVER_ADDR
"82.208.28.248" (13)
SERVER_NAME
"82.208.28.248" (13)
SERVER_SOFTWARE
"Apache/2.4.51 (Debian)" (22)
SERVER_SIGNATURE
"<address>Apache/2.4.51 (Debian) Server at 82.208.28.248 Port 443</address>
" (75)
PATH
"/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" (60)
HTTP_CONNECTION
"close" (5)
HTTP_ACCEPT_ENCODING
"gzip" (4)
HTTP_USER_AGENT
"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" (115)
HTTP_HOST
"82.208.28.248:443" (17)
proxy-nokeepalive
"1"
HTTPS
"on" (2)
proto
"https" (5)
SCRIPT_URI
"https://82.208.28.248/" (22)
SCRIPT_URL
"/"
FCGI_ROLE
"RESPONDER" (9)
PHP_SELF
"/index.php" (10)
REQUEST_TIME_FLOAT
1640288601.20823
REQUEST_TIME
1640288601

$_SESSION

empty

Constants

ROOT_DIR
"/var/www/promaturak.cz/test" (27)
APP_DIR
"/var/www/promaturak.cz/test/app" (31)
LIBS_DIR
"/var/www/promaturak.cz/test/vendor/others" (41)
LOG_DIR
"/var/www/promaturak.cz/test/log" (31)
TEMP_DIR
"/var/www/promaturak.cz/test/temp" (32)
CACHE_DIR
"/var/www/promaturak.cz/test/temp/cache" (38)
WWW_DIR
"/var/www/promaturak.cz/test/www" (31)
NETTE_DIR
"/var/www/promaturak.cz/test/vendor/nette" (40)
KDYBY_TO_DOCTRINE_EVENTS
1

Included files (200)

/var/www/promaturak.cz/test/www/index.php
/var/www/promaturak.cz/test/app/bootstrap.php
/var/www/promaturak.cz/test/vendor/autoload.php
/var/www/promaturak.cz/test/vendor/composer/autoload_real.php
/var/www/promaturak.cz/test/vendor/composer/ClassLoader.php
/var/www/promaturak.cz/test/vendor/composer/autoload_namespaces.php
/var/www/promaturak.cz/test/vendor/composer/autoload_psr4.php
/var/www/promaturak.cz/test/vendor/composer/autoload_classmap.php
/var/www/promaturak.cz/test/vendor/composer/autoload_files.php
/var/www/promaturak.cz/test/vendor/tracy/tracy/src/shortcuts.php
/var/www/promaturak.cz/test/vendor/nette/safe-stream/src/loader.php
/var/www/promaturak.cz/test/vendor/nette/safe-stream/src/SafeStream/SafeStream.php
/var/www/promaturak.cz/test/vendor/nette/deprecated/src/loader.php
/var/www/promaturak.cz/test/vendor/nette/deprecated/src/Loaders/NetteLoader.php
/var/www/promaturak.cz/test/vendor/nette/bootstrap/src/Bootstrap/Configurator.php
/var/www/promaturak.cz/test/vendor/nette/utils/src/Utils/Object.php
/var/www/promaturak.cz/test/vendor/nette/di/src/DI/CompilerExtension.php
/var/www/promaturak.cz/test/vendor/tracy/tracy/src/Tracy/Bar.php
/var/www/promaturak.cz/test/vendor/tracy/tracy/src/Tracy/BlueScreen.php
/var/www/promaturak.cz/test/vendor/tracy/tracy/src/Tracy/Dumper.php
/var/www/promaturak.cz/test/vendor/latte/latte/src/Latte/exceptions.php
/var/www/promaturak.cz/test/vendor/latte/latte/src/Latte/IMacro.php
/var/www/promaturak.cz/test/vendor/latte/latte/src/Latte/Macros/MacroSet.php
/var/www/promaturak.cz/test/vendor/latte/latte/src/Latte/Object.php
/var/www/promaturak.cz/test/vendor/nette/utils/src/Utils/ArrayHash.php
/var/www/promaturak.cz/test/vendor/nette/utils/src/Utils/ArrayList.php
/var/www/promaturak.cz/test/vendor/nette/utils/src/Utils/DateTime.php
/var/www/promaturak.cz/test/vendor/nette/utils/src/Utils/Image.php
/var/www/promaturak.cz/test/vendor/nette/utils/src/Utils/ObjectMixin.php
/var/www/promaturak.cz/test/vendor/nette/neon/src/Neon/Exception.php
/var/www/promaturak.cz/test/vendor/nette/neon/src/Neon/Entity.php
/var/www/promaturak.cz/test/vendor/nette/neon/src/Neon/Neon.php
/var/www/promaturak.cz/test/vendor/nette/deprecated/src/shortcuts.php
/var/www/promaturak.cz/test/vendor/kdyby/events/src/Doctrine/compatibility.php
/var/www/promaturak.cz/test/vendor/others/Innetic/Nette/utils.php
/var/www/promaturak.cz/test/vendor/others/InnPress/Config/Configurator.php
/var/www/promaturak.cz/test/vendor/tracy/tracy/src/Tracy/Debugger.php
/var/www/promaturak.cz/test/vendor/tracy/tracy/src/Tracy/ILogger.php
/var/www/promaturak.cz/test/vendor/tracy/tracy/src/Tracy/DefaultBarPanel.php
/var/www/promaturak.cz/test/vendor/tracy/tracy/src/Tracy/IBarPanel.php
/var/www/promaturak.cz/test/vendor/tracy/tracy/src/Tracy/FireLogger.php
/var/www/promaturak.cz/test/vendor/tracy/tracy/src/Tracy/Helpers.php
/var/www/promaturak.cz/test/vendor/tracy/tracy/src/Tracy/Logger.php
/var/www/promaturak.cz/test/vendor/nette/robot-loader/src/RobotLoader/RobotLoader.php
/var/www/promaturak.cz/test/vendor/nette/caching/src/Caching/Storages/FileStorage.php
/var/www/promaturak.cz/test/vendor/nette/caching/src/Caching/IStorage.php
/var/www/promaturak.cz/test/vendor/nette/caching/src/Caching/Cache.php
/var/www/promaturak.cz/test/vendor/nette/di/src/DI/ContainerLoader.php
/var/www/promaturak.cz/test/temp/cache/Nette.Configurator/Container_188cca9cb9.php
/var/www/promaturak.cz/test/vendor/nette/di/src/DI/Container.php
/var/www/promaturak.cz/test/app/AdminModule/components/Forms/OrderForms/AddressForm.php
/var/www/promaturak.cz/test/app/AdminModule/components/Control.php
/var/www/promaturak.cz/test/app/controls/Control.php
/var/www/promaturak.cz/test/vendor/others/InnPress/Application/UI/Control.php
/var/www/promaturak.cz/test/vendor/nette/application/src/Application/UI/Control.php
/var/www/promaturak.cz/test/vendor/nette/application/src/Application/UI/PresenterComponent.php
/var/www/promaturak.cz/test/vendor/nette/component-model/src/ComponentModel/Container.php
/var/www/promaturak.cz/test/vendor/nette/component-model/src/ComponentModel/Component.php
/var/www/promaturak.cz/test/vendor/nette/component-model/src/ComponentModel/IComponent.php
/var/www/promaturak.cz/test/vendor/nette/component-model/src/ComponentModel/IContainer.php
/var/www/promaturak.cz/test/vendor/nette/application/src/Application/UI/ISignalReceiver.php
/var/www/promaturak.cz/test/vendor/nette/application/src/Application/UI/IStatePersistent.php
/var/www/promaturak.cz/test/vendor/nette/application/src/Application/UI/IRenderable.php
/var/www/promaturak.cz/test/app/AdminModule/components/Forms/OrderForms/CartItemForm.php
/var/www/promaturak.cz/test/app/AdminModule/components/Forms/CategoryForm.php
/var/www/promaturak.cz/test/app/AdminModule/components/Forms/LangForm/LangForm.php
/var/www/promaturak.cz/test/app/AdminModule/components/Forms/CurrencyForm.php
/var/www/promaturak.cz/test/app/AdminModule/components/Forms/ProductForms/DeliveryForm.php
/var/www/promaturak.cz/test/app/AdminModule/components/Forms/ProductForms/BaseProductForm.php
/var/www/promaturak.cz/test/app/AdminModule/components/Forms/ProductForms/DiscountForm.php
/var/www/promaturak.cz/test/app/AdminModule/components/Forms/GalleryForm.php
/var/www/promaturak.cz/test/app/AdminModule/components/Forms/LangAdminForm.php
/var/www/promaturak.cz/test/app/AdminModule/components/Forms/LocationForm.php
/var/www/promaturak.cz/test/app/AdminModule/components/Forms/LoginForm/LoginForm.php
/var/www/promaturak.cz/test/app/AdminModule/components/Forms/MenuForm/MenuForm.php
/var/www/promaturak.cz/test/app/AdminModule/components/Forms/OrderForms/MethodsForm.php
/var/www/promaturak.cz/test/app/AdminModule/components/Forms/OrderForms/OrderForm.php
/var/www/promaturak.cz/test/app/AdminModule/components/Forms/PageForm/PageForm.php
/var/www/promaturak.cz/test/app/AdminModule/components/Forms/ProductForms/PaymentForm.php
/var/www/promaturak.cz/test/app/AdminModule/components/Forms/ProductForms/ProductForm.php
/var/www/promaturak.cz/test/app/AdminModule/components/Forms/ProductPropertiesForm.php
/var/www/promaturak.cz/test/app/AdminModule/components/Forms/ProductRuleForm.php
/var/www/promaturak.cz/test/app/AdminModule/components/Forms/ProductForms/PropertiesCopyForm.php
/var/www/promaturak.cz/test/app/AdminModule/components/Forms/PropertyForm.php
/var/www/promaturak.cz/test/app/AdminModule/components/Forms/PropertyOptionForm.php
/var/www/promaturak.cz/test/app/AdminModule/components/Forms/TagForm.php
/var/www/promaturak.cz/test/app/AdminModule/components/Forms/TranslationForm.php
/var/www/promaturak.cz/test/app/AdminModule/components/Forms/UserForm.php
/var/www/promaturak.cz/test/app/AdminModule/components/Forms/VatForm.php
/var/www/promaturak.cz/test/app/AdminModule/components/Grid/AdminGrid.php
/var/www/promaturak.cz/test/vendor/mesour/datagrid/src/Grid/Grid.php
/var/www/promaturak.cz/test/vendor/mesour/datagrid/src/Grid/ExtendedGrid.php
/var/www/promaturak.cz/test/vendor/mesour/datagrid/src/Grid/BasicGrid.php
/var/www/promaturak.cz/test/vendor/mesour/datagrid/src/Grid/BaseGrid.php
/var/www/promaturak.cz/test/app/AdminModule/components/Grid/AdminGridTree.php
/var/www/promaturak.cz/test/vendor/mesour/datagrid/src/Grid/GridTree.php
/var/www/promaturak.cz/test/app/AdminModule/components/DefaultEditLanguageSwitcher/DefaultEditLanguageSwitcherControl.php
/var/www/promaturak.cz/test/app/FrontModule/components/Cart/CartControl.php
/var/www/promaturak.cz/test/app/FrontModule/components/Control.php
/var/www/promaturak.cz/test/app/FrontModule/components/Categories/CategoryList/CategoryListControl.php
/var/www/promaturak.cz/test/app/FrontModule/components/Currency/CurrencyControl.php
/var/www/promaturak.cz/test/app/FrontModule/components/Export/HeurekaControl.php
/var/www/promaturak.cz/test/app/FrontModule/components/Export/ZboziControl.php
/var/www/promaturak.cz/test/app/FrontModule/components/Forms/ChangePasswordForm.php
/var/www/promaturak.cz/test/app/FrontModule/components/Forms/ConfiguratorServiceOrderForm/ConfiguratorServiceOrderForm.php
/var/www/promaturak.cz/test/app/FrontModule/components/Forms/ContestForm/ContestForm.php
/var/www/promaturak.cz/test/app/FrontModule/components/DeliveryMethodControl.php
/var/www/promaturak.cz/test/app/FrontModule/components/FacebookControl.php
/var/www/promaturak.cz/test/app/FrontModule/components/Forms/LoginForm.php
/var/www/promaturak.cz/test/app/FrontModule/components/Forms/OrderService/OrderServiceForm.php
/var/www/promaturak.cz/test/app/FrontModule/components/Forms/PasswordResetRequestForm.php
/var/www/promaturak.cz/test/app/FrontModule/components/PaymentMethodControl.php
/var/www/promaturak.cz/test/app/FrontModule/components/Forms/PerformersFilter/PerformersFilterForm.php
/var/www/promaturak.cz/test/app/FrontModule/components/Forms/UserForm.php
/var/www/promaturak.cz/test/app/FrontModule/components/CredentialsControl.php
/var/www/promaturak.cz/test/app/FrontModule/components/Language/LanguageSwitcherControl.php
/var/www/promaturak.cz/test/app/FrontModule/components/Forms/ProfileFormControl.php
/var/www/promaturak.cz/test/vendor/others/InnPress/Application/UI/CompositeFormControl.php
/var/www/promaturak.cz/test/app/FrontModule/components/Menu/MenuControl.php
/var/www/promaturak.cz/test/app/FrontModule/components/Order/OrderFormControl.php
/var/www/promaturak.cz/test/app/FrontModule/components/Products/ProductDetail/ProductBuyForm.php
/var/www/promaturak.cz/test/app/FrontModule/components/Products/ProductDetail/ProductDetailControl.php
/var/www/promaturak.cz/test/app/FrontModule/components/Products/ProductList/ProductListControl.php
/var/www/promaturak.cz/test/app/FrontModule/components/Products/ProductList/ProductListFilters/ProductListFiltersControl.php
/var/www/promaturak.cz/test/app/FrontModule/components/Searching/RedirectSearchControl.php
/var/www/promaturak.cz/test/app/FrontModule/components/Searching/SearchControl.php
/var/www/promaturak.cz/test/vendor/nette/application/src/Bridges/ApplicationLatte/ILatteFactory.php
/var/www/promaturak.cz/test/vendor/nette/php-generator/src/PhpGenerator/Helpers.php
/var/www/promaturak.cz/test/vendor/nette/di/src/DI/Statement.php
/var/www/promaturak.cz/test/vendor/kdyby/events/src/Kdyby/Events/LazyEventManager.php
/var/www/promaturak.cz/test/vendor/kdyby/events/src/Kdyby/Events/EventManager.php
/var/www/promaturak.cz/test/vendor/kdyby/events/src/Kdyby/Events/Diagnostics/Panel.php
/var/www/promaturak.cz/test/vendor/kdyby/events/src/Kdyby/Events/Event.php
/var/www/promaturak.cz/test/vendor/nette/utils/src/Utils/Callback.php
/var/www/promaturak.cz/test/vendor/kdyby/events/src/Kdyby/Events/EventArgsList.php
/var/www/promaturak.cz/test/vendor/kdyby/events/src/Kdyby/Events/EventArgs.php
/var/www/promaturak.cz/test/vendor/nette/reflection/src/Reflection/AnnotationsParser.php
/var/www/promaturak.cz/test/vendor/nette/caching/src/Caching/Storages/FileJournal.php
/var/www/promaturak.cz/test/vendor/nette/caching/src/Caching/Storages/IJournal.php
/var/www/promaturak.cz/test/vendor/nette/http/src/Http/Session.php
/var/www/promaturak.cz/test/vendor/nette/http/src/Http/RequestFactory.php
/var/www/promaturak.cz/test/vendor/nette/http/src/Http/UrlScript.php
/var/www/promaturak.cz/test/vendor/nette/http/src/Http/Url.php
/var/www/promaturak.cz/test/vendor/nette/utils/src/Utils/Strings.php
/var/www/promaturak.cz/test/vendor/nette/http/src/Http/Request.php
/var/www/promaturak.cz/test/vendor/nette/http/src/Http/IRequest.php
/var/www/promaturak.cz/test/vendor/nette/http/src/Http/Response.php
/var/www/promaturak.cz/test/vendor/nette/http/src/Http/IResponse.php
/var/www/promaturak.cz/test/vendor/nette/http/src/Http/Helpers.php
/var/www/promaturak.cz/test/vendor/markette/gopay/src/Gopay/Service.php
/var/www/promaturak.cz/test/vendor/nette/forms/src/Forms/Container.php
/var/www/promaturak.cz/test/vendor/webchemistry/images/src/Addons/UploadControl.php
/var/www/promaturak.cz/test/vendor/nette/forms/src/Forms/Controls/UploadControl.php
/var/www/promaturak.cz/test/vendor/nette/forms/src/Forms/Controls/BaseControl.php
/var/www/promaturak.cz/test/vendor/nette/forms/src/Forms/IControl.php
/var/www/promaturak.cz/test/vendor/webchemistry/images/src/Addons/MultiUploadControl.php
/var/www/promaturak.cz/test/vendor/nette/deprecated/src/Environment.php
/var/www/promaturak.cz/test/vendor/others/InnPress/Application/Router.php
/var/www/promaturak.cz/test/vendor/nette/application/src/Application/Routers/RouteList.php
/var/www/promaturak.cz/test/vendor/nette/application/src/Application/IRouter.php
/var/www/promaturak.cz/test/app/CronModule/Routes.php
/var/www/promaturak.cz/test/app/model/routes/LangRouteList.php
/var/www/promaturak.cz/test/app/model/services/Languages.php
/var/www/promaturak.cz/test/app/model/daos/LangDao.php
/var/www/promaturak.cz/test/app/model/daos/Dao.php
/var/www/promaturak.cz/test/vendor/icaine/flunorette/src/Connection.php
/var/www/promaturak.cz/test/vendor/icaine/flunorette/src/SqlPreprocessor.php
/var/www/promaturak.cz/test/vendor/nette/deprecated/src/Diagnostics/Debugger.php
/var/www/promaturak.cz/test/app/model/SelectionFactory.php
/var/www/promaturak.cz/test/vendor/others/InnPress/Database/SelectionFactory.php
/var/www/promaturak.cz/test/vendor/icaine/flunorette/src/Selections/SelectionFactory.php
/var/www/promaturak.cz/test/vendor/icaine/flunorette/src/Selections/ISelectionFactory.php
/var/www/promaturak.cz/test/vendor/others/Innetic/Nette/Translator/Translator.php
/var/www/promaturak.cz/test/vendor/nette/utils/src/Utils/ITranslator.php
/var/www/promaturak.cz/test/vendor/others/Innetic/Nette/Translator/CatalogueBuilder.php
/var/www/promaturak.cz/test/vendor/others/Innetic/Nette/Translator/ICatalogueBuilder.php
/var/www/promaturak.cz/test/vendor/others/Innetic/Nette/Translator/Providers/FileScanningProvider.php
/var/www/promaturak.cz/test/vendor/others/Innetic/Nette/Translator/IProvider.php
/var/www/promaturak.cz/test/vendor/others/Innetic/Nette/Translator/Providers/LongTextsProvider.php
/var/www/promaturak.cz/test/app/model/translator/DatabaseProvider.php
/var/www/promaturak.cz/test/app/model/daos/TranslationDao.php
/var/www/promaturak.cz/test/vendor/others/Innetic/Nette/Translator/Filters/PluralFilter.php
/var/www/promaturak.cz/test/vendor/others/Innetic/Nette/Translator/IFilter.php
/var/www/promaturak.cz/test/vendor/others/Innetic/Nette/Translator/Filters/LinkFilter.php
/var/www/promaturak.cz/test/vendor/others/Innetic/Nette/Translator/Filters/ExpandParamsFilter.php
/var/www/promaturak.cz/test/app/model/Language.php
/var/www/promaturak.cz/test/vendor/icaine/flunorette/src/Selections/Selection.php
/var/www/promaturak.cz/test/vendor/icaine/flunorette/src/IQueryObject.php
/var/www/promaturak.cz/test/vendor/icaine/flunorette/src/Queries/QueryContext.php
/var/www/promaturak.cz/test/vendor/icaine/flunorette/src/Reflections/DiscoveredReflection.php
/var/www/promaturak.cz/test/vendor/icaine/flunorette/src/Reflections/IReflection.php
/var/www/promaturak.cz/test/vendor/icaine/flunorette/src/Queries/SelectQuery.php
/var/www/promaturak.cz/test/vendor/icaine/flunorette/src/Queries/JoinableQuery.php
/var/www/promaturak.cz/test/vendor/icaine/flunorette/src/Queries/Query.php
/var/www/promaturak.cz/test/vendor/icaine/flunorette/src/Helpers.php
/var/www/promaturak.cz/test/vendor/icaine/flunorette/src/exceptions.php
/var/www/promaturak.cz/test/vendor/tracy/tracy/src/Tracy/assets/BlueScreen/bluescreen.phtml
/var/www/promaturak.cz/test/vendor/icaine/flunorette/src/Bridges/Nette/Diagnostics/ConnectionPanel.php
/var/www/promaturak.cz/test/vendor/nette/deprecated/src/Diagnostics/IBarPanel.php
/var/www/promaturak.cz/test/vendor/nette/deprecated/src/Diagnostics/Helpers.php

Configuration options


Configuration

calendar

Calendar support enabled

cgi-fcgi

php-fpm active
DirectiveLocal ValueMaster Value
cgi.discard_path00
cgi.fix_pathinfo11
cgi.force_redirect11
cgi.nph00
cgi.redirect_status_envno valueno value
cgi.rfc2616_headers00
fastcgi.error_headerno valueno value
fastcgi.logging11
fpm.configno valueno value

Core

PHP Version 7.1.33-44+0~20211119.61+debian11~1.gbp448fbe
DirectiveLocal ValueMaster Value
allow_url_fopenOnOn
allow_url_includeOffOff
arg_separator.input&&
arg_separator.output&&
auto_append_fileno valueno value
auto_globals_jitOnOn
auto_prepend_fileno valueno value
browscapno valueno value
default_charsetUTF-8UTF-8
default_mimetypetext/htmltext/html
disable_classesno valueno value
disable_functionspcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,
display_errorsOffOff
display_startup_errorsOffOff
doc_rootno valueno value
docref_extno valueno value
docref_rootno valueno value
enable_dlOffOff
enable_post_data_readingOnOn
error_append_stringno valueno value
error_logno valueno value
error_prepend_stringno valueno value
error_reporting3276722527
expose_phpOffOff
extension_dir/usr/lib/php/20160303/usr/lib/php/20160303
file_uploadsOnOn
hard_timeout22
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_errorsOffOn
ignore_repeated_errorsOffOff
ignore_repeated_sourceOffOff
ignore_user_abortOffOff
implicit_flushOffOff
include_path.:/usr/share/php.:/usr/share/php
input_encodingno valueno value
internal_encodingno valueno value
log_errorsOffOn
log_errors_max_len10241024
mail.add_x_headerOffOff
mail.force_extra_parametersno valueno value
mail.logno valueno value
max_execution_time3030
max_file_uploads2020
max_input_nesting_level6464
max_input_time6060
max_input_vars10001000
memory_limit128M128M
open_basedirno valueno value
output_buffering40964096
output_encodingno valueno value
output_handlerno valueno value
post_max_size8M8M
precision1414
realpath_cache_size4096K4096K
realpath_cache_ttl120120
register_argc_argvOffOff
report_memleaksOnOn
report_zend_debugOnOn
request_orderGPGP
sendmail_fromno valueno value
sendmail_path/usr/sbin/sendmail -t -i /usr/sbin/sendmail -t -i 
serialize_precision-1-1
short_open_tagOffOff
SMTPlocalhostlocalhost
smtp_port2525
sql.safe_modeOffOff
sys_temp_dirno valueno value
track_errorsOffOff
unserialize_callback_funcno valueno value
upload_max_filesize2M2M
upload_tmp_dirno valueno value
user_dirno valueno value
user_ini.cache_ttl300300
user_ini.filename.user.ini.user.ini
variables_orderGPCSGPCS
xmlrpc_error_number00
xmlrpc_errorsOffOff
zend.assertions-1-1
zend.detect_unicodeOnOn
zend.enable_gcOnOn
zend.multibyteOffOff
zend.script_encodingno valueno value
zend.signal_checkOffOff

ctype

ctype functions enabled

curl

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
HTTP2 Yes
GSSAPI Yes
KERBEROS5 Yes
UNIX_SOCKETS Yes
PSL 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 OpenSSL/1.1.1k
ZLib Version 1.2.11
libSSH Version libssh2/1.9.0

date

date/time support enabled
timelib version 2016.05
"Olson" Timezone Database Version 0.system
Timezone Database internal
Default timezone Europe/Prague
DirectiveLocal ValueMaster Value
date.default_latitude31.766731.7667
date.default_longitude35.233335.2333
date.sunrise_zenith90.58333390.583333
date.sunset_zenith90.58333390.583333
date.timezoneno valueno value

dom

DOM/XML enabled
DOM/XML API Version 20031129
libxml Version 2.9.12
HTML Support enabled
XPath Support enabled
XPointer Support enabled
Schema Support enabled
RelaxNG Support enabled

exif

EXIF Support enabled
EXIF Version 7.1.33-44+0~20211119.61+debian11~1.gbp448fbe
Supported EXIF Version 0220
Supported filetypes JPEG,TIFF
DirectiveLocal ValueMaster Value
exif.decode_jis_intelJISJIS
exif.decode_jis_motorolaJISJIS
exif.decode_unicode_intelUCS-2LEUCS-2LE
exif.decode_unicode_motorolaUCS-2BEUCS-2BE
exif.encode_jisno valueno value
exif.encode_unicodeISO-8859-15ISO-8859-15

fileinfo

fileinfo support enabled
version 1.0.5
libmagic 522

filter

Input Validation and Filtering enabled
Revision $Id: 5a34caaa246b9df197f4b43af8ac66a07464fe4b $
DirectiveLocal ValueMaster Value
filter.defaultunsafe_rawunsafe_raw
filter.default_flagsno valueno value

ftp

FTP support enabled
FTPS support enabled

gd

GD Support enabled
GD headers Version 2.3.0
GD library Version 2.3.0
FreeType Support enabled
FreeType Linkage with freetype
FreeType Version 2.10.4
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
XPM Support enabled
libXpm Version 30411
XBM Support enabled
WebP Support enabled
DirectiveLocal ValueMaster Value
gd.jpeg_ignore_warning11

gettext

GetText Support enabled

hash

hash support enabled
Hashing Engines md2 md4 md5 sha1 sha224 sha256 sha384 sha512/224 sha512/256 sha512 sha3-224 sha3-256 sha3-384 sha3-512 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
MHASH support Enabled
MHASH API Version Emulated Support

iconv

iconv support enabled
iconv implementation glibc
iconv library version 2.31
DirectiveLocal ValueMaster Value
iconv.input_encodingno valueno value
iconv.internal_encodingno valueno value
iconv.output_encodingno valueno value

igbinary

igbinary support enabled
igbinary version 3.2.6
igbinary APCu serializer ABI 0
igbinary session support yes
DirectiveLocal ValueMaster Value
igbinary.compact_stringsOnOn

imagick

imagick moduleenabled
imagick module version 3.5.1
imagick classes Imagick, ImagickDraw, ImagickPixel, ImagickPixelIterator, ImagickKernel
Imagick compiled with ImageMagick version ImageMagick 6.9.11-60 Q16 x86_64 2021-01-25 https://imagemagick.org
Imagick using ImageMagick library 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: 237
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, DNG, DPX, DXT1, DXT5, EPDF, EPI, EPS, EPS2, EPS3, EPSF, EPSI, EPT, EPT2, EPT3, ERF, FAX, FILE, FITS, FRACTAL, FTP, FTS, G3, G4, GIF, GIF87, GRADIENT, GRAY, GRAYA, GROUP4, 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, MTV, MVG, NEF, NRW, NULL, ORF, OTB, OTF, PAL, PALM, PAM, 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, TEXT, TGA, THUMBNAIL, TIFF, TIFF64, TILE, TIM, TTC, TTF, TXT, UBRL, UBRL6, UIL, UYVY, VDA, VICAR, VID, VIDEO, VIFF, VIPS, VST, WBMP, WEBM, WEBP, WMV, WPG, X, X3F, XBM, XC, XCF, XPM, XPS, XV, XWD, YCbCr, YCbCrA, YUV
DirectiveLocal ValueMaster Value
imagick.allow_zero_dimension_images00
imagick.locale_fix00
imagick.progress_monitor00
imagick.set_single_thread11
imagick.shutdown_sleep_count1010
imagick.skip_version_check11

imap

IMAP c-Client Version 2007f
SSL Support enabled
Kerberos Support enabled
DirectiveLocal ValueMaster Value
imap.enable_insecure_rshOffOff

json

json support enabled
json version 1.5.0

libxml

libXML support active
libXML Compiled Version 2.9.12
libXML Loaded Version 20910
libXML streams enabled

mbstring

Multibyte Support enabled
Multibyte string engine libmbfl
HTTP input encoding translation disabled
libmbfl version 1.3.2
oniguruma version 5.9.6
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.6
DirectiveLocal ValueMaster Value
mbstring.detect_orderno valueno value
mbstring.encoding_translationOffOff
mbstring.func_overload00
mbstring.http_inputno valueno value
mbstring.http_outputno valueno value
mbstring.http_output_conv_mimetypes^(text/|application/xhtml\+xml)^(text/|application/xhtml\+xml)
mbstring.internal_encodingno valueno value
mbstring.languageneutralneutral
mbstring.strict_detectionOffOff
mbstring.substitute_characterno valueno value

mcrypt

mcrypt supportenabled
mcrypt_filter supportenabled
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
DirectiveLocal ValueMaster Value
mcrypt.algorithms_dirno valueno value
mcrypt.modes_dirno valueno value

memcache

memcache supportenabled
Version 4.0.5.2
Revision $Revision$
DirectiveLocal ValueMaster Value
memcache.allow_failover11
memcache.chunk_size3276832768
memcache.compress_threshold2000020000
memcache.default_port1121111211
memcache.hash_functioncrc32crc32
memcache.hash_strategyconsistentconsistent
memcache.lock_timeout1515
memcache.max_failover_attempts2020
memcache.prefix_host_key00
memcache.prefix_host_key_remove_subdomain00
memcache.prefix_host_key_remove_www11
memcache.prefix_static_keyno valueno value
memcache.protocolasciiascii
memcache.redundancy11
memcache.session_prefix_host_key00
memcache.session_prefix_host_key_remove_subdomain00
memcache.session_prefix_host_key_remove_www11
memcache.session_prefix_static_keyno valueno value
memcache.session_redundancy22
memcache.session_save_pathno valueno value

mysqli

MysqlI Supportenabled
Client API library version mysqlnd 5.0.12-dev - 20150407 - $Id: 38fea24f2847fa7519001be390c98ae0acafe387 $
Active Persistent Links 0
Inactive Persistent Links 0
Active Links 0
DirectiveLocal ValueMaster Value
mysqli.allow_local_infileOnOn
mysqli.allow_persistentOnOn
mysqli.default_hostno valueno value
mysqli.default_port33063306
mysqli.default_pwno valueno value
mysqli.default_socketno valueno value
mysqli.default_userno valueno value
mysqli.max_linksUnlimitedUnlimited
mysqli.max_persistentUnlimitedUnlimited
mysqli.reconnectOffOff
mysqli.rollback_on_cached_plinkOffOff

mysqlnd

mysqlndenabled
Version mysqlnd 5.0.12-dev - 20150407 - $Id: 38fea24f2847fa7519001be390c98ae0acafe387 $
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
mysqlnd statistics
bytes_sent 0
bytes_received 184
packets_sent 0
packets_received 46
protocol_overhead_in 184
protocol_overhead_out 0
bytes_received_ok_packet 0
bytes_received_eof_packet 0
bytes_received_rset_header_packet 0
bytes_received_rset_field_meta_packet 0
bytes_received_rset_row_packet 0
bytes_received_prepare_response_packet 0
bytes_received_change_user_packet 0
packets_sent_command 0
packets_received_ok 0
packets_received_eof 0
packets_received_rset_header 0
packets_received_rset_field_meta 0
packets_received_rset_row 0
packets_received_prepare_response 0
packets_received_change_user 0
result_set_queries 0
non_result_set_queries 0
no_index_used 0
bad_index_used 0
slow_queries 0
buffered_sets 0
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 0
rows_fetched_from_server_ps 0
rows_buffered_from_client_normal 0
rows_buffered_from_client_ps 0
rows_fetched_from_client_normal_buffered 0
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 0
rows_affected_ps 0
rows_skipped_normal 0
rows_skipped_ps 0
copy_on_write_saved 0
copy_on_write_performed 0
command_buffer_too_small 0
connect_success 0
connect_failure 47
connection_reused 0
reconnect 0
pconnect_success 0
active_connections 18446744073709551523
active_persistent_connections 0
explicit_close 46
implicit_close 0
disconnect_close 0
in_middle_of_command_close 0
explicit_free_result 0
implicit_free_result 0
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_estrdup_count 0
mem_strdup_count 0
mem_edupl_count 0
mem_dupl_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 0
proto_text_fetched_bigint 0
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 0
proto_text_fetched_blob 0
proto_text_fetched_enum 0
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 0
com_init_db 0
com_query 0
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 0
bytes_received_real_data_ps 0

openssl

OpenSSL support enabled
OpenSSL Library Version OpenSSL 1.1.1k 25 Mar 2021
OpenSSL Header Version OpenSSL 1.1.1k 25 Mar 2021
Openssl default config /usr/lib/ssl/openssl.cnf
DirectiveLocal ValueMaster Value
openssl.cafileno valueno value
openssl.capathno valueno value

pcre

PCRE (Perl Compatible Regular Expressions) Support enabled
PCRE Library Version 8.44 2020-02-12
PCRE JIT Support enabled
DirectiveLocal ValueMaster Value
pcre.backtrack_limit10000001000000
pcre.jit11
pcre.recursion_limit100000100000

PDO

PDO supportenabled
PDO drivers mysql

pdo_mysql

PDO Driver for MySQLenabled
Client API version mysqlnd 5.0.12-dev - 20150407 - $Id: 38fea24f2847fa7519001be390c98ae0acafe387 $
DirectiveLocal ValueMaster Value
pdo_mysql.default_socket/var/run/mysqld/mysqld.sock/var/run/mysqld/mysqld.sock

Phar

Phar: PHP Archive supportenabled
Phar EXT version 2.0.2
Phar API version 1.1.1
SVN revision $Id: e117ab0dc068703c55b505e78a0d3b3752e9c0b7 $
Phar-based phar archives enabled
Tar-based phar archives enabled
ZIP-based phar archives enabled
gzip compression enabled
bzip2 compression disabled (install pecl/bz2)
Native 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.
DirectiveLocal ValueMaster Value
phar.cache_listno valueno value
phar.readonlyOnOn
phar.require_hashOnOn

posix

Revision $Id: e3a2bc739dee8e0d29094e30e1cfbe3e87e2ceb4 $

readline

Readline Supportenabled
Readline library EditLine wrapper
DirectiveLocal ValueMaster Value
cli.pagerno valueno value
cli.prompt\b \> \b \> 

redis

Redis Supportenabled
Redis Version 5.3.4
Redis Sentinel Version 0.1
Available serializers php, json, igbinary
Available compression lzf, zstd, lz4
DirectiveLocal ValueMaster Value
redis.arrays.algorithmno valueno value
redis.arrays.authno valueno value
redis.arrays.autorehash00
redis.arrays.connecttimeout00
redis.arrays.consistent00
redis.arrays.distributorno valueno value
redis.arrays.functionsno valueno value
redis.arrays.hostsno valueno value
redis.arrays.index00
redis.arrays.lazyconnect00
redis.arrays.namesno valueno value
redis.arrays.pconnect00
redis.arrays.previousno valueno value
redis.arrays.readtimeout00
redis.arrays.retryinterval00
redis.clusters.authno valueno value
redis.clusters.cache_slots00
redis.clusters.persistent00
redis.clusters.read_timeout00
redis.clusters.seedsno valueno value
redis.clusters.timeout00
redis.pconnect.connection_limit00
redis.pconnect.echo_check_liveness11
redis.pconnect.pool_patternno valueno value
redis.pconnect.pooling_enabled11
redis.session.lock_expire00
redis.session.lock_retries1010
redis.session.lock_wait_time20002000
redis.session.locking_enabled00

Reflection

Reflectionenabled
Version $Id: 279be19a9e466fb7cfea9841a630521f99644504 $

session

Session Support enabled
Registered save handlers files user memcache redis rediscluster
Registered serializer handlers php_serialize php php_binary igbinary wddx
DirectiveLocal ValueMaster Value
session.auto_startOffOff
session.cache_expire180180
session.cache_limiternocachenocache
session.cookie_domainno valueno value
session.cookie_httponlyOffOff
session.cookie_lifetime00
session.cookie_path//
session.cookie_secureOffOff
session.gc_divisor1000010000
session.gc_maxlifetime14401440
session.gc_probability11
session.lazy_writeOnOn
session.namePHPSESSIDPHPSESSID
session.referer_checkno valueno value
session.save_handlerfilesfiles
session.save_path/var/lib/php/sessions/var/lib/php/sessions
session.serialize_handlerphpphp
session.sid_bits_per_character55
session.sid_length2626
session.upload_progress.cleanupOnOn
session.upload_progress.enabledOnOn
session.upload_progress.freq1%1%
session.upload_progress.min_freq11
session.upload_progress.namePHP_SESSION_UPLOAD_PROGRESSPHP_SESSION_UPLOAD_PROGRESS
session.upload_progress.prefixupload_progress_upload_progress_
session.use_cookiesOnOn
session.use_only_cookiesOnOn
session.use_strict_modeOffOff
session.use_trans_sid00

shmop

shmop support enabled

SimpleXML

Simplexml supportenabled
Revision $Id: ae067cdcddf424d6e762603905b98798bc924a00 $
Schema support enabled

soap

Soap Client enabled
Soap Server enabled
DirectiveLocal ValueMaster Value
soap.wsdl_cache11
soap.wsdl_cache_dir/tmp/tmp
soap.wsdl_cache_enabled11
soap.wsdl_cache_limit55
soap.wsdl_cache_ttl8640086400

sockets

Sockets Support enabled

SPL

SPL supportenabled
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

standard

Dynamic Library Support enabled
Path to sendmail /usr/sbin/sendmail -t -i
DirectiveLocal ValueMaster Value
assert.active11
assert.bail00
assert.callbackno valueno value
assert.exception00
assert.quiet_eval00
assert.warning11
auto_detect_line_endings00
default_socket_timeout6060
fromno valueno value
session.trans_sid_hostsno valueno value
session.trans_sid_tagsa=href,area=href,frame=src,form=a=href,area=href,frame=src,form=
url_rewriter.hostsno valueno value
url_rewriter.tagsform=form=
user_agentno valueno value

sysvmsg

sysvmsg support enabled
Revision $Id: 483c70b5c54718693a4b95633a097e33d1120ba9 $

sysvsem

Version 7.1.33-44+0~20211119.61+debian11~1.gbp448fbe

sysvshm

Version 7.1.33-44+0~20211119.61+debian11~1.gbp448fbe

tokenizer

Tokenizer Support enabled

wddx

WDDX Supportenabled
WDDX Session Serializer enabled

xml

XML Support active
XML Namespace Support active
libxml2 Version 2.9.12

xmlreader

XMLReader enabled

xmlwriter

XMLWriter enabled

xsl

XSL enabled
libxslt Version 1.1.34
libxslt compiled against libxml Version 2.9.10
EXSLT enabled
libexslt Version 1.1.34

Zend OPcache

Opcode Caching Up and Running
Optimization Enabled
SHM Cache Enabled
File Cache Disabled
Startup OK
Shared memory model mmap
Cache hits 19874
Cache misses 860
Used memory 36107712
Free memory 98110016
Wasted memory 0
Interned Strings Used memory 1974640
Interned Strings Free memory 6413968
Cached scripts 860
Cached keys 1356
Max keys 16229
OOM restarts 0
Hash keys restarts 0
Manual restarts 0
DirectiveLocal ValueMaster Value
opcache.blacklist_filenameno valueno value
opcache.consistency_checks00
opcache.dups_fixOffOff
opcache.enableOnOn
opcache.enable_cliOffOff
opcache.enable_file_overrideOffOff
opcache.error_logno valueno value
opcache.fast_shutdown00
opcache.file_cacheno valueno value
opcache.file_cache_consistency_checks11
opcache.file_cache_only00
opcache.file_update_protection22
opcache.force_restart_timeout180180
opcache.huge_code_pagesOffOff
opcache.inherited_hackOnOn
opcache.interned_strings_buffer88
opcache.lockfile_path/tmp/tmp
opcache.log_verbosity_level11
opcache.max_accelerated_files1000010000
opcache.max_file_size00
opcache.max_wasted_percentage55
opcache.memory_consumption128128
opcache.opt_debug_level00
opcache.optimization_level0x7FFFBFFF0x7FFFBFFF
opcache.preferred_memory_modelno valueno value
opcache.protect_memory00
opcache.restrict_apino valueno value
opcache.revalidate_freq22
opcache.revalidate_pathOffOff
opcache.save_comments11
opcache.use_cwdOnOn
opcache.validate_permissionOffOff
opcache.validate_rootOffOff
opcache.validate_timestampsOnOn

zip

Zip enabled
Zip version 1.13.5
Libzip version 1.7.3

zlib

ZLib Supportenabled
Stream Wrapper compress.zlib://
Stream Filter zlib.inflate, zlib.deflate
Compiled Version 1.2.11
Linked Version 1.2.11
DirectiveLocal ValueMaster Value
zlib.output_compressionOffOff
zlib.output_compression_level-1-1
zlib.output_handlerno valueno value

Additional Modules

Module Name

HTTP request

Headers

Connectionclose
Accept-Encodinggzip
User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36
Host82.208.28.248:443

$_GET

empty

$_POST

empty

$_COOKIE

empty

HTTP response

Headers

X-Frame-Options: SAMEORIGIN
X-Powered-By: InnPress & Nette Framework
Content-Type: text/html; charset=UTF-8