App\RecordNotFoundException

product: search►

Source file

File: /var/www/promaturak.cz/test/app/model/daos/Dao.php:70

60: } 61: 62: /** 63: * @param int $id 64: * @return ActiveRow 65: * @throws RecordNotFoundException 66: */ 67: public function need($id) { 68: $activeRow = $this->find($id)->fetch(); 69: if ($activeRow === false) { 70: throw new RecordNotFoundException("$this->tableName: $id"); 71: } 72: return $activeRow; 73: } 74:

Call stack

  1. .../www/promaturak.cz/test/app/FrontModule/Routes.php:76 source  Daos\Dao-> need (arguments)

    66: $presenter = &$params['presenter']; 67: $action = &$params['action']; 68: $id = &$params['id']; 69: if ($action === 'view' && in_array($presenter, $havingViewAsDetail, true)) { // converts view -> detail so it matches this route 70: $action = 'detail'; 71: } 72: if (!in_array($presenter, $havingDetail) || $action !== 'detail') { // skip when in detail-less presenter or action is not detail 73: return null; 74: } 75: if ($presenter === 'Product') { 76: $id = $this->productDao->need($id)->_('url', $this->languages->getLangIdByIdent($params['lang'])); // TODO: better & faster? 77: } elseif ($presenter === 'Category') { 78: $id = $this->categoryDao->need($id)->_('url', $this->languages->getLangIdByIdent($params['lang'])); // TODO: better & faster? 79: } elseif ($presenter === 'Article') { // article and page atm dont need special treatment (their idents/urls are used for linking directly) 80: } elseif ($presenter === 'Page') {
    $id
    NULL
    
  2. .../Innetic/Nette/Application/Routers/FilterRoute.php:47 source  FrontModule\Routes-> FrontModule\{closure} (arguments)

    37: $newValue = $filter($value, $params); 38: if ($newValue === null) { 39: return null; 40: } 41: $params[$param] = $newValue; 42: } 43: } 44: } 45: if (isset($filters[null])) { 46: foreach ($filters[null] as $filter) { 47: $params = $filter($params); 48: } 49: } 50: } 51: return $params;
    #0
    
    
  3. .../Innetic/Nette/Application/Routers/FilterRoute.php:26 source  Innetic\Nette\Application\Routers\FilterRoute-> processParams (arguments)

    16: * @param string $mask URL mask, e.g. '<presenter>/<action>/<id \d{1,3}>' 17: * @param array $metadata default values or metadata 18: * @param int $flags 19: */ 20: public function __construct($mask, $metadata = array(), $flags = 0) { 21: $metadata[null] = [ 22: self::FILTER_IN => function (array $params = []) { 23: return $this->processParams($params, $this->inFilters); 24: }, 25: self::FILTER_OUT => function (array $params = []) { 26: return $this->processParams($params, $this->outFilters); 27: } 28: ]; 29: parent::__construct($mask, $metadata, $flags); 30: }
    $params
    
    
    $filters
    
    
  4. inner-code Innetic\Nette\Application\Routers\FilterRoute-> Innetic\Nette\Application\Routers\{closure} (arguments)

    #0
    
    
  5. .../application/src/Application/Routers/Route.php:281 source  call_user_func (arguments)

    271: return NULL; 272: } 273: 274: $params = $appRequest->getParameters(); 275: $metadata = $this->metadata; 276: 277: $presenter = $appRequest->getPresenterName(); 278: $params[self::PRESENTER_KEY] = $presenter; 279: 280: if (isset($metadata[NULL][self::FILTER_OUT])) { 281: $params = call_user_func($metadata[NULL][self::FILTER_OUT], $params); 282: if ($params === NULL) { 283: return NULL; 284: } 285: }
    $function_name
    
    
    $parameters
    
    
  6. .../application/src/Application/Routers/RouteList.php:91 source  Nette\Application\Routers\Route-> constructUrl (arguments)

    81: return NULL; 82: } 83: } 84: 85: $presenter = $appRequest->getPresenterName(); 86: if (!isset($this->cachedRoutes[$presenter])) { 87: $presenter = '*'; 88: } 89: 90: foreach ($this->cachedRoutes[$presenter] as $route) { 91: $url = $route->constructUrl($appRequest, $refUrl); 92: if ($url !== NULL) { 93: return $url; 94: } 95: }
    $appRequest
    
    
    $refUrl
    
    
  7. .../test/app/model/routes/LangRouteList.php:44 source  Nette\Application\Routers\RouteList-> constructUrl (arguments)

    34: parent::__construct($module); 35: } 36: 37: public function match(IRequest $httpRequest) { 38: $this->callSetup(); 39: return parent::match($httpRequest); 40: } 41: 42: public function constructUrl(Request $appRequest, Url $refUrl) { 43: $this->callSetup(); 44: return parent::constructUrl($appRequest, $refUrl); 45: } 46: 47: private function callSetup() { 48: if ($this->setupCalled === false) {
    $appRequest
    
    
    $refUrl
    
    
  8. .../application/src/Application/Routers/RouteList.php:91 source  App\LangRouteList-> constructUrl (arguments)

    81: return NULL; 82: } 83: } 84: 85: $presenter = $appRequest->getPresenterName(); 86: if (!isset($this->cachedRoutes[$presenter])) { 87: $presenter = '*'; 88: } 89: 90: foreach ($this->cachedRoutes[$presenter] as $route) { 91: $url = $route->constructUrl($appRequest, $refUrl); 92: if ($url !== NULL) { 93: return $url; 94: } 95: }
    $appRequest
    
    
    $refUrl
    
    
  9. .../nette/application/src/Application/UI/Presenter.php:983 source  Nette\Application\Routers\RouteList-> constructUrl (arguments)

    973: 974: // CONSTRUCT URL 975: static $refUrl; 976: if ($refUrl === NULL) { 977: $refUrl = new Http\Url($this->httpRequest->getUrl()); 978: $refUrl->setPath($this->httpRequest->getUrl()->getScriptPath()); 979: } 980: if (!$this->router) { 981: throw new Nette\InvalidStateException('Unable to generate URL, service Router has not been set.'); 982: } 983: $url = $this->router->constructUrl($this->lastCreatedRequest, $refUrl); 984: if ($url === NULL) { 985: unset($args[self::ACTION_KEY]); 986: $params = urldecode(http_build_query($args, NULL, ', ')); 987: throw new InvalidLinkException("No route for $presenter:$action($params)");
    $appRequest
    
    
    $refUrl
    
    
  10. .../src/Application/UI/PresenterComponent.php:351 source  Nette\Application\UI\Presenter-> createRequest (arguments)

    341: if (!is_numeric($code)) { // first parameter is optional 342: $args = is_array($destination) ? $destination : array_slice(func_get_args(), 1); 343: $destination = $code; 344: $code = NULL; 345: 346: } elseif (!is_array($args)) { 347: $args = array_slice(func_get_args(), 2); 348: } 349: 350: $presenter = $this->getPresenter(); 351: $presenter->redirectUrl($presenter->createRequest($this, $destination, $args, 'redirect'), $code); 352: } 353: 354: 355: /********************* interface \ArrayAccess ****************d*g**/
    $component
    
    
    $destination
    ":Front:Product:detail" (21)
    
    $args
    
    
    $mode
    "redirect" (8)
    
  11. .../app/FrontModule/presenters/ProductPresenter.php:104 source  Nette\Application\UI\PresenterComponent-> redirect (arguments)

    94: $this->redirect(':Front:Product:detail', [$productRowId, $cartItemId, true]); 95: }; 96: 97: $control->onSavedAndRedirectToStudents[] = function ($productRowId, $cartItemId) { 98: if ($this->cartItemId && !$this->addingSpecialProduct) { 99: if ($this->checkCartItem($this->cartItemId)) { 100: $this->cartItemDao->delete($this->cartItemId); 101: } 102: } 103: 104: $this->redirect(':Front:Product:detail', [$productRowId, $cartItemId, false]); 105: }; 106: 107: $control->onSavedAndRedirectToSpecial[] = function ($productRowId, $cartItemId) { 108: if ($this->cartItemId && !$this->addingSpecialProduct) {
    $code
    NULL
    
    $destination
    ":Front:Product:detail" (21)
    
  12. inner-code FrontModule\ProductPresenter-> FrontModule\{closure} (arguments)

    #0
    NULL
    
    #1
    NULL
    
  13. .../test/vendor/nette/utils/src/Utils/Callback.php:76 source  call_user_func_array (arguments)

    66: } 67: 68: 69: /** 70: * Invokes callback with an array of parameters. 71: * @return mixed 72: */ 73: public static function invokeArgs($callable, array $args = array()) 74: { 75: self::check($callable); 76: return call_user_func_array($callable, $args); 77: } 78: 79: 80: /**
    $function_name
    
    
    $parameters
    
    
  14. .../test/vendor/nette/utils/src/Utils/ObjectMixin.php:60 source  Nette\Utils\Callback:: invokeArgs (arguments)

    50: 51: if ($name === '') { 52: throw new MemberAccessException("Call to class '$class' method without name."); 53: 54: } elseif ($isProp && $_this->$name instanceof \Closure) { // closure in property 55: return call_user_func_array($_this->$name, $args); 56: 57: } elseif ($isProp === 'event') { // calling event handlers 58: if (is_array($_this->$name) || $_this->$name instanceof \Traversable) { 59: foreach ($_this->$name as $handler) { 60: Callback::invokeArgs($handler, $args); 61: } 62: } elseif ($_this->$name !== NULL) { 63: throw new Nette\UnexpectedValueException("Property $class::$$name must be array or NULL, " . gettype($_this->$name) . ' given.'); 64: }
    $callable
    
    
    $args
    
    
  15. .../test/vendor/nette/utils/src/Utils/Object.php:75 source  Nette\Utils\ObjectMixin:: call (arguments)

    65: 66: /** 67: * Call to undefined method. 68: * @param string method name 69: * @param array arguments 70: * @return mixed 71: * @throws MemberAccessException 72: */ 73: public function __call($name, $args) 74: { 75: return ObjectMixin::call($this, $name, $args); 76: } 77: 78: 79: /**
    $_this
    
    
    $name
    "onSavedAndRedirectToStudents" (28)
    
    $args
    
    
  16. .../Products/ProductDetail/ProductDetailControl.php:309 source  Nette\Object-> __call (arguments)

    299: $this->selectedProperties = $properties; 300: $this->calculatedProductPrice = $this->products->calculateProductPrice($productRow, $properties, null, $amount); 301: try { 302: $this->cart->addItem($productRow->id, $amount, $properties); 303: 304: foreach ($this->cart->getItems() as $cartItemRow) { /* @var CartItemRow $cartItemRow */ 305: if ($productRow->product_id == $cartItemRow->product_id) { 306: $cartItem = $cartItemRow; 307: } 308: } 309: $this->onSavedAndRedirectToStudents($cartItem->product->id, $cartItem->id); 310: } catch (StockException $e) { 311: $this->onStockError($e->getMessage()); 312: } 313: };
    $name
    "onSavedAndRedirectToStudents" (28)
    
    $args
    
    
  17. inner-code FrontModule\Products\ProductDetailControl-> FrontModule\Products\{closure} (arguments)

    #0
    
    
    #1
    
    
    #2
    15
    
  18. .../test/vendor/nette/utils/src/Utils/Callback.php:76 source  call_user_func_array (arguments)

    66: } 67: 68: 69: /** 70: * Invokes callback with an array of parameters. 71: * @return mixed 72: */ 73: public static function invokeArgs($callable, array $args = array()) 74: { 75: self::check($callable); 76: return call_user_func_array($callable, $args); 77: } 78: 79: 80: /**
    $function_name
    
    
    $parameters
    
    
  19. .../test/vendor/nette/utils/src/Utils/ObjectMixin.php:60 source  Nette\Utils\Callback:: invokeArgs (arguments)

    50: 51: if ($name === '') { 52: throw new MemberAccessException("Call to class '$class' method without name."); 53: 54: } elseif ($isProp && $_this->$name instanceof \Closure) { // closure in property 55: return call_user_func_array($_this->$name, $args); 56: 57: } elseif ($isProp === 'event') { // calling event handlers 58: if (is_array($_this->$name) || $_this->$name instanceof \Traversable) { 59: foreach ($_this->$name as $handler) { 60: Callback::invokeArgs($handler, $args); 61: } 62: } elseif ($_this->$name !== NULL) { 63: throw new Nette\UnexpectedValueException("Property $class::$$name must be array or NULL, " . gettype($_this->$name) . ' given.'); 64: }
    $callable
    
    
    $args
    
    
  20. .../test/vendor/nette/utils/src/Utils/Object.php:75 source  Nette\Utils\ObjectMixin:: call (arguments)

    65: 66: /** 67: * Call to undefined method. 68: * @param string method name 69: * @param array arguments 70: * @return mixed 71: * @throws MemberAccessException 72: */ 73: public function __call($name, $args) 74: { 75: return ObjectMixin::call($this, $name, $args); 76: } 77: 78: 79: /**
    $_this
    
    
    $name
    "onSaveAndGoToStudents" (21)
    
    $args
    
    
  21. .../Products/ProductDetail/ProductBuyForm.php:229 source  Nette\Object-> __call (arguments)

    219: $this->onRecalculate($this->productRow, $properties, $values['bf_amount']); 220: } else { 221: 222: $properties = $this->filterUnwantedProperties($properties); 223: 224: if ($form['bf_save_and_add_special']->isSubmittedBy()) { 225: $this->presenter->getSession('buyFormUploadedDocument')->remove(); 226: $this->onBuyAndAddRelated($this->productRow, $properties, $values['bf_amount']); 227: } else if ($form['bf_save_and_go_to_students']->isSubmittedBy()) { 228: $this->presenter->getSession('buyFormUploadedDocument')->remove(); 229: $this->onSaveAndGoToStudents($this->productRow, $properties, $values['bf_amount']); 230: } else if ($form['bf_save_and_go_to_special']->isSubmittedBy()) { 231: $this->presenter->getSession('buyFormUploadedDocument')->remove(); 232: $this->onSaveAndGoToSpecial($this->productRow, $properties, $values['bf_amount'], $values['bf_special_id']); 233: } else if ($form['bf_buy']->isSubmittedBy()) {
    $name
    "onSaveAndGoToStudents" (21)
    
    $args
    
    
  22. inner-code FrontModule\Products\ProductBuyForm-> formSent (arguments)

    $form
    
    
    #1
    NULL
    
  23. .../test/vendor/nette/utils/src/Utils/Callback.php:65 source  call_user_func_array (arguments)

    55: } 56: 57: 58: /** 59: * Invokes callback. 60: * @return mixed 61: */ 62: public static function invoke($callable) 63: { 64: self::check($callable); 65: return call_user_func_array($callable, array_slice(func_get_args(), 1)); 66: } 67: 68: 69: /**
    $function_name
    
    
    $parameters
    
    
  24. .../test/vendor/nette/forms/src/Forms/Form.php:411 source  Nette\Utils\Callback:: invoke (arguments)

    401: if (!$this->isValid()) { 402: $this->onError($this); 403: 404: } elseif ($this->onSuccess !== NULL) { 405: if (!is_array($this->onSuccess) && !$this->onSuccess instanceof \Traversable) { 406: throw new Nette\UnexpectedValueException('Property Form::$onSuccess must be array or Traversable, ' . gettype($this->onSuccess) . ' given.'); 407: } 408: foreach ($this->onSuccess as $handler) { 409: $params = Nette\Utils\Callback::toReflection($handler)->getParameters(); 410: $values = isset($params[1]) ? $this->getValues($params[1]->isArray()) : NULL; 411: Nette\Utils\Callback::invoke($handler, $this, $values); 412: if (!$this->isValid()) { 413: $this->onError($this); 414: break; 415: }
    $callable
    
    
    #1
    
    
    #2
    NULL
    
  25. .../nette/application/src/Application/UI/Form.php:133 source  Nette\Forms\Form-> fireEvents ()

    123: 124: /** 125: * This method is called by presenter. 126: * @param string 127: * @return void 128: */ 129: public function signalReceived($signal) 130: { 131: if ($signal === 'submit') { 132: if (!$this->getPresenter()->getRequest()->hasFlag(Nette\Application\Request::RESTORED)) { 133: $this->fireEvents(); 134: } 135: } else { 136: $class = get_class($this); 137: throw new BadSignalException("Missing handler for signal '$signal' in $class.");
  26. .../nette/application/src/Application/UI/Presenter.php:324 source  Nette\Application\UI\Form-> signalReceived (arguments)

    314: } catch (Nette\InvalidArgumentException $e) { 315: } 316: 317: if (isset($e) || $component === NULL) { 318: throw new BadSignalException("The signal receiver component '$this->signalReceiver' is not found.", NULL, isset($e) ? $e : NULL); 319: 320: } elseif (!$component instanceof ISignalReceiver) { 321: throw new BadSignalException("The signal receiver component '$this->signalReceiver' is not ISignalReceiver implementor."); 322: } 323: 324: $component->signalReceived($this->signal); 325: $this->signal = NULL; 326: } 327: 328:
    $signal
    "submit" (6)
    
  27. .../nette/application/src/Application/UI/Presenter.php:201 source  Nette\Application\UI\Presenter-> processSignal ()

    191: 192: if ($this->autoCanonicalize) { 193: $this->canonicalize(); 194: } 195: if ($this->httpRequest->isMethod('head')) { 196: $this->terminate(); 197: } 198: 199: // SIGNAL HANDLING 200: // calls $this->handle<Signal>() 201: $this->processSignal(); 202: 203: // RENDERING VIEW 204: $this->beforeRender(); 205: // calls $this->render<View>()
  28. .../others/InnPress/Application/UI/Presenter.php:45 source  Nette\Application\UI\Presenter-> run (arguments)

    35: /** @var int @persistent */ 36: public $lang; 37: 38: /** @var string @persistent */ 39: public $backlink; 40: 41: public function run(Request $request) { 42: if ($this->errorPresenter) { 43: $this->application->errorPresenter = $this->errorPresenter; 44: } 45: return parent::run($request); 46: } 47: 48: /** 49: * @param string|array $message if array it must contain [$message, $args] for translator
    $request
    
    
  29. .../nette/application/src/Application/Application.php:141 source  InnPress\Application\UI\Presenter-> run (arguments)

    131: { 132: if (count($this->requests) > self::$maxLoop) { 133: throw new ApplicationException('Too many loops detected in application life cycle.'); 134: } 135: 136: $this->requests[] = $request; 137: $this->onRequest($this, $request); 138: 139: $this->presenter = $this->presenterFactory->createPresenter($request->getPresenterName()); 140: $this->onPresenter($this, $this->presenter); 141: $response = $this->presenter->run($request); 142: 143: if ($response instanceof Responses\ForwardResponse) { 144: $this->processRequest($response->getRequest()); 145:
    $request
    
    
  30. .../nette/application/src/Application/Application.php:81 source  Nette\Application\Application-> processRequest (arguments)

    71: 72: 73: /** 74: * Dispatch a HTTP request to a front controller. 75: * @return void 76: */ 77: public function run() 78: { 79: try { 80: $this->onStartup($this); 81: $this->processRequest($this->createInitialRequest()); 82: $this->onShutdown($this); 83: 84: } catch (\Exception $e) { 85: $this->onError($this, $e);
    $request
    
    
  31. /var/www/promaturak.cz/test/www/index.php:8 source  Nette\Application\Application-> run ()

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

Nette Application

Requests


Presenter


		

Environment

$_SERVER

REDIRECT_SCRIPT_URL
"/cs/produkty/cervene-satenove-serpy" (35)
REDIRECT_SCRIPT_URI
"https://test.promaturak.cz/cs/produkty/cervene-satenove-serpy" (61)
REDIRECT_HTTPS
"on" (2)
REDIRECT_SSL_TLS_SNI
"test.promaturak.cz" (18)
REDIRECT_STATUS
"200" (3)
SCRIPT_URL
"/cs/produkty/cervene-satenove-serpy" (35)
SCRIPT_URI
"https://test.promaturak.cz/cs/produkty/cervene-satenove-serpy" (61)
HTTPS
"on" (2)
SSL_TLS_SNI
"test.promaturak.cz" (18)
HTTP_HOST
"test.promaturak.cz" (18)
HTTP_ACCEPT
"*/*" (3)
HTTP_X_REQUESTED_WITH
"XMLHttpRequest" (14)
HTTP_ACCEPT_LANGUAGE
"cs-cz" (5)
HTTP_ACCEPT_ENCODING
"br, gzip, deflate" (17)
CONTENT_TYPE
"multipart/form-data; boundary=----WebKitFormBoundaryKokZW9CJCNpFkggL" (68)
HTTP_ORIGIN
"https://test.promaturak.cz" (26)
HTTP_USER_AGENT
"Mozilla/5.0 (iPhone; CPU iPhone OS 12_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.1.2 Mobile/15E148 Safari/604.1" (137)
HTTP_CONNECTION
"keep-alive" (10)
HTTP_REFERER
"https://test.promaturak.cz/cs/produkty/cervene-satenove-serpy" (61)
CONTENT_LENGTH
"1722" (4)
HTTP_COOKIE
"_ga=GA1.2.1177461416.1567501427; _gid=GA1.2.1711581064.1567501427; PHPSESSID=8nlogg77cs6e54ueddkfh9prhn; nette-browser=gjk58tqg25; _gat_UA-1361214-27= ... " (187)
PATH
"/sbin:/usr/sbin:/bin:/usr/bin" (29)
SERVER_SIGNATURE
"<address>Apache/2.2.15 (CentOS) Server at test.promaturak.cz Port 443</address>
" (80)
SERVER_SOFTWARE
"Apache/2.2.15 (CentOS)" (22)
SERVER_NAME
"test.promaturak.cz" (18)
SERVER_ADDR
"81.0.239.107" (12)
SERVER_PORT
"443" (3)
REMOTE_ADDR
"37.221.248.219" (14)
DOCUMENT_ROOT
"/var/www/promaturak.cz/test/www" (31)
SERVER_ADMIN
"root@localhost" (14)
SCRIPT_FILENAME
"/var/www/promaturak.cz/test/www/index.php" (41)
REMOTE_PORT
"52641" (5)
REDIRECT_URL
"/cs/produkty/cervene-satenove-serpy" (35)
GATEWAY_INTERFACE
"CGI/1.1" (7)
SERVER_PROTOCOL
"HTTP/1.1" (8)
REQUEST_METHOD
"POST" (4)
QUERY_STRING
""
REQUEST_URI
"/cs/produkty/cervene-satenove-serpy" (35)
SCRIPT_NAME
"/index.php" (10)
PHP_SELF
"/index.php" (10)
REQUEST_TIME_FLOAT
1567501571.114
REQUEST_TIME
1567501571

$_SESSION

__NFNette Session

Nette Session

dev-module

currency

Nette.Http.UserStorage/

cart

buyFormUploadedDocument
NULL

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 (383)

/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/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/Statement.php
/var/www/promaturak.cz/test/vendor/icaine/flunorette/src/TransactionCounter.php
/var/www/promaturak.cz/test/vendor/icaine/flunorette/src/Drivers/MySqlDriver.php
/var/www/promaturak.cz/test/vendor/icaine/flunorette/src/Drivers/IDriver.php
/var/www/promaturak.cz/test/vendor/icaine/flunorette/src/Row.php
/var/www/promaturak.cz/test/vendor/icaine/flunorette/src/Hydrators/HydratorSelection.php
/var/www/promaturak.cz/test/vendor/icaine/flunorette/src/Hydrators/Hydrator.php
/var/www/promaturak.cz/test/vendor/others/InnPress/Utils/Strings.php
/var/www/promaturak.cz/test/app/model/rows/LangRow.php
/var/www/promaturak.cz/test/vendor/others/InnPress/Database/ActiveRow.php
/var/www/promaturak.cz/test/vendor/icaine/flunorette/src/Selections/ActiveRow.php
/var/www/promaturak.cz/test/app/GopayModule/Routes.php
/var/www/promaturak.cz/test/vendor/nette/application/src/Application/Routers/Route.php
/var/www/promaturak.cz/test/app/AdminModule/Routes.php
/var/www/promaturak.cz/test/app/FrontModule/Routes.php
/var/www/promaturak.cz/test/app/model/daos/ProductDao.php
/var/www/promaturak.cz/test/app/model/daos/CategoryDao.php
/var/www/promaturak.cz/test/vendor/webchemistry/images/src/Router/Factory.php
/var/www/promaturak.cz/test/app/FrontModule/OldPromaturakRouter.php
/var/www/promaturak.cz/test/vendor/innetic/dev-module/src/DevModule/model/Config.php
/var/www/promaturak.cz/test/vendor/nette/http/src/Http/SessionSection.php
/var/www/promaturak.cz/test/vendor/nette/application/src/Application/Application.php
/var/www/promaturak.cz/test/vendor/others/InnPress/Application/PresenterFactory.php
/var/www/promaturak.cz/test/vendor/nette/application/src/Application/PresenterFactory.php
/var/www/promaturak.cz/test/vendor/nette/application/src/Application/IPresenterFactory.php
/var/www/promaturak.cz/test/vendor/nette/application/src/Bridges/ApplicationDI/PresenterFactoryCallback.php
/var/www/promaturak.cz/test/vendor/nette/application/src/Bridges/ApplicationTracy/RoutingPanel.php
/var/www/promaturak.cz/test/app/model/routes/LocalizedRoute.php
/var/www/promaturak.cz/test/vendor/others/Innetic/Nette/Application/Routers/FilterRoute.php
/var/www/promaturak.cz/test/vendor/others/Innetic/Nette/Translator/Catalogue.php
/var/www/promaturak.cz/test/vendor/others/Innetic/Nette/Utils/Arrays.php
/var/www/promaturak.cz/test/vendor/nette/utils/src/Utils/Arrays.php
/var/www/promaturak.cz/test/vendor/nette/application/src/Application/Request.php
/var/www/promaturak.cz/test/app/FrontModule/presenters/ProductPresenter.php
/var/www/promaturak.cz/test/app/FrontModule/presenters/FrontPresenter.php
/var/www/promaturak.cz/test/app/presenters/Presenter.php
/var/www/promaturak.cz/test/vendor/others/InnPress/Application/UI/Presenter.php
/var/www/promaturak.cz/test/vendor/nette/application/src/Application/UI/Presenter.php
/var/www/promaturak.cz/test/vendor/nette/application/src/Application/IPresenter.php
/var/www/promaturak.cz/test/vendor/kdyby/autowired/src/Kdyby/Autowired/AutowireProperties.php
/var/www/promaturak.cz/test/vendor/kdyby/autowired/src/Kdyby/Autowired/AutowireComponentFactories.php
/var/www/promaturak.cz/test/vendor/webchemistry/images/src/Traits/TPresenter.php
/var/www/promaturak.cz/test/app/model/LanguagesListener.php
/var/www/promaturak.cz/test/vendor/kdyby/events/src/Kdyby/Events/Subscriber.php
/var/www/promaturak.cz/test/vendor/webchemistry/images/src/Storage.php
/var/www/promaturak.cz/test/vendor/webchemistry/images/src/Connectors/Manager.php
/var/www/promaturak.cz/test/vendor/webchemistry/images/src/Connectors/Localhost.php
/var/www/promaturak.cz/test/vendor/webchemistry/images/src/Connectors/IConnector.php
/var/www/promaturak.cz/test/vendor/nette/reflection/src/Reflection/ClassType.php
/var/www/promaturak.cz/test/vendor/nette/security/src/Security/User.php
/var/www/promaturak.cz/test/vendor/nette/security/src/Security/IUserStorage.php
/var/www/promaturak.cz/test/vendor/nette/http/src/Http/UserStorage.php
/var/www/promaturak.cz/test/app/model/TemplateFactory.php
/var/www/promaturak.cz/test/vendor/nette/application/src/Bridges/ApplicationLatte/TemplateFactory.php
/var/www/promaturak.cz/test/vendor/nette/application/src/Application/UI/ITemplateFactory.php
/var/www/promaturak.cz/test/app/model/services/Currencies.php
/var/www/promaturak.cz/test/app/model/daos/CurrencyDao.php
/var/www/promaturak.cz/test/app/model/Currency.php
/var/www/promaturak.cz/test/app/model/rows/CurrencyRow.php
/var/www/promaturak.cz/test/app/model/services/Vats.php
/var/www/promaturak.cz/test/app/model/daos/VatDao.php
/var/www/promaturak.cz/test/app/model/Calculators/PriceStrategies/VatPriceStrategy.php
/var/www/promaturak.cz/test/app/model/Calculators/PriceStrategies/IPriceStrategy.php
/var/www/promaturak.cz/test/vendor/others/InnPress/Application/LinkGenerator.php
/var/www/promaturak.cz/test/vendor/nette/application/src/Application/UI/PresenterComponentReflection.php
/var/www/promaturak.cz/test/app/FrontModule/components/Form.php
/var/www/promaturak.cz/test/app/controls/Forms/Form.php
/var/www/promaturak.cz/test/vendor/others/InnPress/Application/UI/Form.php
/var/www/promaturak.cz/test/vendor/nette/application/src/Application/UI/Form.php
/var/www/promaturak.cz/test/vendor/nette/forms/src/Forms/Form.php
/var/www/promaturak.cz/test/vendor/nette/utils/src/Utils/IHtmlString.php
/var/www/promaturak.cz/test/vendor/nette/forms/src/Forms/Validator.php
/var/www/promaturak.cz/test/vendor/nette/forms/src/Forms/Controls/CsrfProtection.php
/var/www/promaturak.cz/test/vendor/nette/forms/src/Forms/Controls/HiddenField.php
/var/www/promaturak.cz/test/vendor/nette/forms/src/Forms/Controls/SelectBox.php
/var/www/promaturak.cz/test/vendor/nette/forms/src/Forms/Controls/ChoiceControl.php
/var/www/promaturak.cz/test/app/model/services/Settings.php
/var/www/promaturak.cz/test/app/model/daos/SettingDao.php
/var/www/promaturak.cz/test/app/model/Setting.php
/var/www/promaturak.cz/test/app/model/rows/SettingsRow.php
/var/www/promaturak.cz/test/app/model/rows/LocalizedRow.php
/var/www/promaturak.cz/test/vendor/latte/latte/src/Latte/Engine.php
/var/www/promaturak.cz/test/vendor/nette/utils/src/Utils/Html.php
/var/www/promaturak.cz/test/vendor/webchemistry/images/src/Macros/Macros.php
/var/www/promaturak.cz/test/vendor/latte/latte/src/Latte/Compiler.php
/var/www/promaturak.cz/test/vendor/latte/latte/src/Latte/Macros/CoreMacros.php
/var/www/promaturak.cz/test/vendor/latte/latte/src/Latte/Helpers.php
/var/www/promaturak.cz/test/vendor/latte/latte/src/Latte/Macros/BlockMacros.php
/var/www/promaturak.cz/test/vendor/nette/application/src/Bridges/ApplicationLatte/Template.php
/var/www/promaturak.cz/test/vendor/nette/application/src/Application/UI/ITemplate.php
/var/www/promaturak.cz/test/vendor/nette/application/src/Bridges/ApplicationLatte/Loader.php
/var/www/promaturak.cz/test/vendor/latte/latte/src/Latte/Loaders/FileLoader.php
/var/www/promaturak.cz/test/vendor/latte/latte/src/Latte/ILoader.php
/var/www/promaturak.cz/test/vendor/others/Innetic/WebLoader/Loader.php
/var/www/promaturak.cz/test/vendor/nette/reflection/src/Reflection/Method.php
/var/www/promaturak.cz/test/vendor/nette/reflection/src/Reflection/Parameter.php
/var/www/promaturak.cz/test/app/model/services/Products.php
/var/www/promaturak.cz/test/app/model/daos/ProductPriceDao.php
/var/www/promaturak.cz/test/app/model/daos/ProductCategoryDao.php
/var/www/promaturak.cz/test/app/model/daos/ProductPropertyDao.php
/var/www/promaturak.cz/test/app/model/daos/ProductPropertyOptionDao.php
/var/www/promaturak.cz/test/app/model/daos/ProductPropertyOptionProductImageDao.php
/var/www/promaturak.cz/test/app/model/daos/ProductPropertyOptionImpactDao.php
/var/www/promaturak.cz/test/app/model/daos/ProductPropertyOptionImpactPriceDao.php
/var/www/promaturak.cz/test/app/model/daos/ProductRulePropertyOptionDao.php
/var/www/promaturak.cz/test/app/model/services/Categories.php
/var/www/promaturak.cz/test/vendor/others/Innetic/Flunorette/MnRelationFactory.php
/var/www/promaturak.cz/test/app/model/Calculators/Product/ChainCalculator.php
/var/www/promaturak.cz/test/app/model/Calculators/Product/ICalculator.php
/var/www/promaturak.cz/test/app/model/Calculators/Product/RawProductPrice.php
/var/www/promaturak.cz/test/app/model/Calculators/Product/PriceImpactedByProperties.php
/var/www/promaturak.cz/test/app/model/Products/ProductPropertyOptionResolver.php
/var/www/promaturak.cz/test/app/model/Calculators/Product/PriceImpactedByRules.php
/var/www/promaturak.cz/test/app/model/Products/ProductRuleResolver.php
/var/www/promaturak.cz/test/app/model/Calculators/Product/PromaturakAmountFees.php
/var/www/promaturak.cz/test/app/model/Calculators/Product/PromaturakRozliseniSerpyFees.php
/var/www/promaturak.cz/test/app/model/Calculators/Product/PromaturakExpressProductionFees.php
/var/www/promaturak.cz/test/app/model/rows/ProductRow.php
/var/www/promaturak.cz/test/app/model/rows/PriceableRowTrait.php
/var/www/promaturak.cz/test/app/model/Calculators/IPriceable.php
/var/www/promaturak.cz/test/vendor/nette/di/src/DI/Helpers.php
/var/www/promaturak.cz/test/vendor/nette/di/src/DI/PhpReflection.php
/var/www/promaturak.cz/test/app/model/Cart/CartFactory.php
/var/www/promaturak.cz/test/app/model/services/Carts.php
/var/www/promaturak.cz/test/app/model/daos/CartDao.php
/var/www/promaturak.cz/test/app/model/daos/CartItemDao.php
/var/www/promaturak.cz/test/app/model/daos/CartItemPropertyOptionDao.php
/var/www/promaturak.cz/test/app/model/daos/OrderDao.php
/var/www/promaturak.cz/test/app/model/Products/StockManager.php
/var/www/promaturak.cz/test/app/model/exceptions.php
/var/www/promaturak.cz/test/app/model/rows/CartRow.php
/var/www/promaturak.cz/test/app/model/Cart/Cart.php
/var/www/promaturak.cz/test/app/model/services/Images.php
/var/www/promaturak.cz/test/app/model/daos/ImageDao.php
/var/www/promaturak.cz/test/app/model/daos/ProductImageDao.php
/var/www/promaturak.cz/test/app/model/daos/GalleryDao.php
/var/www/promaturak.cz/test/app/model/daos/GalleryImageDao.php
/var/www/promaturak.cz/test/app/FrontModule/components/Products/ProductRenderer/PromaturakProductRenderer.php
/var/www/promaturak.cz/test/app/FrontModule/components/Products/ProductRenderer/AbstractProductRenderer.php
/var/www/promaturak.cz/test/app/FrontModule/components/Products/ProductRenderer/IProductRenderer.php
/var/www/promaturak.cz/test/vendor/icaine/flunorette/src/Selections/GroupedSelection.php
/var/www/promaturak.cz/test/vendor/icaine/flunorette/src/Reflections/ReflectionException.php
/var/www/promaturak.cz/test/vendor/icaine/flunorette/src/exceptions.php
/var/www/promaturak.cz/test/app/model/rows/ProductCategoryRow.php
/var/www/promaturak.cz/test/app/model/rows/CategoryRow.php
/var/www/promaturak.cz/test/app/FrontModule/components/Products/ProductDetail/MaturitniSerpySatenoveBuyFormRenderer.php
/var/www/promaturak.cz/test/app/FrontModule/components/Products/ProductDetail/SpecialProductBuyFormRenderer.php
/var/www/promaturak.cz/test/app/FrontModule/components/Products/ProductDetail/DefaultBuyFormRenderer.php
/var/www/promaturak.cz/test/vendor/others/InnPress/Application/UI/ITemplateRenderer.php
/var/www/promaturak.cz/test/vendor/nette/component-model/src/ComponentModel/RecursiveComponentIterator.php
/var/www/promaturak.cz/test/vendor/nextras/forms/src/Rendering/Bs3FormRenderer.php
/var/www/promaturak.cz/test/vendor/nette/forms/src/Forms/Rendering/DefaultFormRenderer.php
/var/www/promaturak.cz/test/vendor/nette/forms/src/Forms/IFormRenderer.php
/var/www/promaturak.cz/test/vendor/nette/forms/src/Forms/Controls/TextInput.php
/var/www/promaturak.cz/test/vendor/nette/forms/src/Forms/Controls/TextBase.php
/var/www/promaturak.cz/test/vendor/nette/forms/src/Forms/Rules.php
/var/www/promaturak.cz/test/vendor/nette/forms/src/Forms/Rule.php
/var/www/promaturak.cz/test/app/model/rows/ProductPropertyRow.php
/var/www/promaturak.cz/test/app/model/rows/PropertyRow.php
/var/www/promaturak.cz/test/app/model/rows/PropertyOptionRow.php
/var/www/promaturak.cz/test/vendor/nette/forms/src/Forms/Controls/RadioList.php
/var/www/promaturak.cz/test/vendor/nette/forms/src/Forms/Controls/CheckboxList.php
/var/www/promaturak.cz/test/vendor/nette/forms/src/Forms/Controls/MultiChoiceControl.php
/var/www/promaturak.cz/test/vendor/nette/forms/src/Forms/Controls/TextArea.php
/var/www/promaturak.cz/test/app/model/rows/ImageRow.php
/var/www/promaturak.cz/test/vendor/webchemistry/images/src/Image/Image.php
/var/www/promaturak.cz/test/vendor/webchemistry/images/src/Image/Container.php
/var/www/promaturak.cz/test/vendor/webchemistry/images/src/Image/PropertyAccess.php
/var/www/promaturak.cz/test/vendor/webchemistry/images/src/Image/IImage.php
/var/www/promaturak.cz/test/vendor/webchemistry/images/src/Image/Info.php
/var/www/promaturak.cz/test/vendor/nette/forms/src/Forms/Controls/SubmitButton.php
/var/www/promaturak.cz/test/vendor/nette/forms/src/Forms/Controls/Button.php
/var/www/promaturak.cz/test/vendor/nette/forms/src/Forms/ISubmitterControl.php
/var/www/promaturak.cz/test/vendor/nette/forms/src/Forms/Helpers.php
/var/www/promaturak.cz/test/vendor/nette/application/src/Application/UI/Link.php
/var/www/promaturak.cz/test/vendor/nette/utils/src/Utils/Validators.php
/var/www/promaturak.cz/test/app/model/rows/ProductPriceRow.php
/var/www/promaturak.cz/test/app/model/rows/ProductPropertyOptionRow.php
/var/www/promaturak.cz/test/app/model/rows/ProductPropertyOptionImpactRow.php
/var/www/promaturak.cz/test/app/model/rows/ProductPropertyOptionImpactPriceRow.php
/var/www/promaturak.cz/test/app/model/rows/CartItemRow.php
/var/www/promaturak.cz/test/vendor/icaine/flunorette/src/Hydrators/HydratorField.php
/var/www/promaturak.cz/test/app/model/rows/VatRow.php
/var/www/promaturak.cz/test/vendor/icaine/flunorette/src/Queries/InsertQuery.php
/var/www/promaturak.cz/test/app/model/rows/CartItemPropertyOptionRow.php
/var/www/promaturak.cz/test/vendor/others/Innetic/Nette/Utils/DateTime.php
/var/www/promaturak.cz/test/vendor/icaine/flunorette/src/Queries/UpdateQuery.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

Configuration options


Configuration

apache2handler

Apache Version Apache/2.2.15 (CentOS)
Apache API Version 20051115
Server Administrator root@localhost
Hostname:Port test.promaturak.cz:0
User/Group apache(48)/48
Max Requests Per Child: 4000 - Keep Alive: off - Max Per Connection: 100
Timeouts Connection: 60 - Keep-Alive: 15
Virtual Server Yes
Server Root /etc/httpd
Loaded Modules core prefork http_core mod_so mod_auth_basic mod_auth_digest mod_authn_file mod_authn_alias mod_authn_anon mod_authn_dbm mod_authn_default mod_authz_host mod_authz_user mod_authz_owner mod_authz_groupfile mod_authz_dbm mod_authz_default util_ldap mod_authnz_ldap mod_include mod_log_config mod_logio mod_env mod_ext_filter mod_mime_magic mod_expires mod_deflate mod_headers mod_usertrack mod_setenvif mod_mime mod_dav mod_status mod_autoindex mod_info mod_dav_fs mod_vhost_alias mod_negotiation mod_dir mod_actions mod_speling mod_userdir mod_alias mod_substitute mod_rewrite mod_proxy mod_proxy_balancer mod_proxy_ftp mod_proxy_http mod_proxy_ajp mod_proxy_connect mod_cache mod_suexec mod_disk_cache mod_cgi mod_version mod_php7 mod_ssl
DirectiveLocal ValueMaster Value
engine11
last_modified00
xbithack00

Apache Environment

VariableValue
REDIRECT_SCRIPT_URL /cs/produkty/cervene-satenove-serpy
REDIRECT_SCRIPT_URI https://test.promaturak.cz/cs/produkty/cervene-satenove-serpy
REDIRECT_HTTPS on
REDIRECT_SSL_TLS_SNI test.promaturak.cz
REDIRECT_STATUS 200
SCRIPT_URL /cs/produkty/cervene-satenove-serpy
SCRIPT_URI https://test.promaturak.cz/cs/produkty/cervene-satenove-serpy
HTTPS on
SSL_TLS_SNI test.promaturak.cz
HTTP_HOST test.promaturak.cz
HTTP_ACCEPT */*
HTTP_X_REQUESTED_WITH XMLHttpRequest
HTTP_ACCEPT_LANGUAGE cs-cz
HTTP_ACCEPT_ENCODING br, gzip, deflate
CONTENT_TYPE multipart/form-data; boundary=----WebKitFormBoundaryKokZW9CJCNpFkggL
HTTP_ORIGIN https://test.promaturak.cz
HTTP_USER_AGENT Mozilla/5.0 (iPhone; CPU iPhone OS 12_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.1.2 Mobile/15E148 Safari/604.1
HTTP_CONNECTION keep-alive
HTTP_REFERER https://test.promaturak.cz/cs/produkty/cervene-satenove-serpy
CONTENT_LENGTH 1722
HTTP_COOKIE _ga=GA1.2.1177461416.1567501427; _gid=GA1.2.1711581064.1567501427; PHPSESSID=8nlogg77cs6e54ueddkfh9prhn; nette-browser=gjk58tqg25; _gat_UA-1361214-27=1; _fbp=fb.1.1567501427165.1109289404
PATH /sbin:/usr/sbin:/bin:/usr/bin
SERVER_SIGNATURE <address>Apache/2.2.15 (CentOS) Server at test.promaturak.cz Port 443</address>
SERVER_SOFTWARE Apache/2.2.15 (CentOS)
SERVER_NAME test.promaturak.cz
SERVER_ADDR 81.0.239.107
SERVER_PORT 443
REMOTE_ADDR 37.221.248.219
DOCUMENT_ROOT /var/www/promaturak.cz/test/www
SERVER_ADMIN root@localhost
SCRIPT_FILENAME /var/www/promaturak.cz/test/www/index.php
REMOTE_PORT 52641
REDIRECT_URL /cs/produkty/cervene-satenove-serpy
GATEWAY_INTERFACE CGI/1.1
SERVER_PROTOCOL HTTP/1.1
REQUEST_METHOD POST
QUERY_STRING no value
REQUEST_URI /cs/produkty/cervene-satenove-serpy
SCRIPT_NAME /index.php

HTTP Headers Information

HTTP Request Headers
HTTP Request POST /cs/produkty/cervene-satenove-serpy HTTP/1.1
Host test.promaturak.cz
Accept */*
X-Requested-With XMLHttpRequest
Accept-Language cs-cz
Accept-Encoding br, gzip, deflate
Content-Type multipart/form-data; boundary=----WebKitFormBoundaryKokZW9CJCNpFkggL
Origin https://test.promaturak.cz
User-Agent Mozilla/5.0 (iPhone; CPU iPhone OS 12_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.1.2 Mobile/15E148 Safari/604.1
Connection keep-alive
Referer https://test.promaturak.cz/cs/produkty/cervene-satenove-serpy
Content-Length 1722
Cookie _ga=GA1.2.1177461416.1567501427; _gid=GA1.2.1711581064.1567501427; PHPSESSID=8nlogg77cs6e54ueddkfh9prhn; nette-browser=gjk58tqg25; _gat_UA-1361214-27=1; _fbp=fb.1.1567501427165.1109289404
HTTP Response Headers
X-Powered-By InnPress & Nette Framework
X-Frame-Options SAMEORIGIN
Expires Thu, 19 Nov 1981 08:52:00 GMT
Cache-Control no-store, no-cache, must-revalidate
Pragma no-cache
Set-Cookie PHPSESSID=8nlogg77cs6e54ueddkfh9prhn; expires=Thu, 03-Oct-2019 09:06:11 GMT; Max-Age=2592000; path=/; HttpOnly
Set-Cookie nette-browser=gjk58tqg25; path=/; HttpOnly
Vary X-Requested-With

bz2

BZip2 Support Enabled
Stream Wrapper support compress.bzip2://
Stream Filter support bzip2.decompress, bzip2.compress
BZip2 Version 1.0.5, 10-Dec-2007

calendar

Calendar support enabled

Core

PHP Version 7.1.22
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_functionsno valueno value
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_phpOnOn
extension_dir/usr/lib64/php/modules/usr/lib64/php/modules
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/pear:/usr/share/php.:/usr/share/pear:/usr/share/php
input_encodingno valueno value
internal_encodingno valueno value
log_errorsOffOn
log_errors_max_len10241024
mail.add_x_headerOnOn
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_basedir.:/tmp:/dev/urandom:/var/www/promaturak.cz:/var/lib/php/promaturak.czno value
output_buffering40964096
output_encodingno valueno value
output_handlerno valueno value
post_max_size32M32M
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 -f apache@promaturak.cz/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_filesize32M32M
upload_tmp_dir/var/www/promaturak.cz/upload-tmpno 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.19.7
Age 3
Features
AsynchDNS No
CharConv No
Debug No
GSS-Negotiate Yes
IDN Yes
IPv6 Yes
krb4 No
Largefile Yes
libz Yes
NTLM Yes
SPNEGO No
SSL Yes
SSPI No
Protocols tftp, ftp, telnet, dict, ldap, ldaps, http, file, https, ftps, scp, sftp
Host x86_64-redhat-linux-gnu
SSL Version NSS/3.27.1
ZLib Version 1.2.3
libSSH Version libssh2/1.4.2

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.7.6
HTML Support enabled
XPath Support enabled
XPointer Support enabled
Schema Support enabled
RelaxNG Support enabled

exif

EXIF Support enabled
EXIF Version 7.1.22
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.2.5
GD library Version 2.2.5
FreeType Support enabled
FreeType Linkage with freetype
FreeType Version 2.3.11
GIF Read Support enabled
GIF Create Support enabled
JPEG Support enabled
libJPEG Version 6b
PNG Support enabled
libPNG Version 1.2.49
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.12
DirectiveLocal ValueMaster Value
iconv.input_encodingno valueno value
iconv.internal_encodingno valueno value
iconv.output_encodingno valueno value

imagick

imagick moduleenabled
imagick module version 3.4.3
imagick classes Imagick, ImagickDraw, ImagickPixel, ImagickPixelIterator, ImagickKernel
Imagick compiled with ImageMagick version ImageMagick 6.9.9-50 Q16 x86_64 2018-06-04 https://www.imagemagick.org
Imagick using ImageMagick library version ImageMagick 6.9.10-11 Q16 x86_64 2018-08-30 https://www.imagemagick.org
ImageMagick copyright © 1999-2018 ImageMagick Studio LLC
ImageMagick release date 2018-08-30
ImageMagick number of supported formats: 237
ImageMagick supported formats 3FR, 3G2, 3GP, AAI, AI, ART, ARW, AVI, AVS, BGR, BGRA, BGRO, BMP, BMP2, BMP3, BRF, CAL, CALS, CANVAS, CAPTION, CIN, CIP, CLIP, CMYK, CMYKA, CR2, CRW, CUR, CUT, DATA, DCM, DCR, DCX, DDS, DFONT, DNG, DOT, DPX, DXT1, DXT5, EPDF, EPI, EPS, EPS2, EPS3, EPSF, EPSI, EPT, EPT2, EPT3, ERF, EXR, FAX, FILE, FITS, FRACTAL, FTP, FTS, G3, G4, GIF, GIF87, GRADIENT, GRAY, GRAYA, GROUP4, GV, H, HALD, HDR, HISTOGRAM, HRZ, HTM, HTML, HTTP, HTTPS, ICB, ICO, ICON, IIQ, INFO, INLINE, IPL, ISOBRL, ISOBRL6, J2C, J2K, 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, MPEG, MPG, MRW, MSL, MSVG, MTV, MVG, NEF, NRW, NULL, ORF, OTB, OTF, PAL, PALM, PAM, PANGO, PATTERN, PBM, PCD, PCDS, PCL, PCT, PCX, PDB, PDF, PDFA, PEF, PES, PFA, PFB, PFM, PGM, PGX, PICON, PICT, PIX, PJPEG, PLASMA, PNG, PNG00, PNG24, PNG32, PNG48, PNG64, PNG8, PNM, PPM, PREVIEW, PS, PS2, PS3, PSB, PSD, PTIF, PWP, RADIAL-GRADIENT, RAF, RAS, RAW, RGB, RGBA, RGBO, RGF, RLA, RLE, RMF, RW2, SCR, SCT, SFW, SGI, SHTML, SIX, SIXEL, SPARSE-COLOR, SR2, SRF, STEGANO, SUN, SVG, SVGZ, TEXT, TGA, THUMBNAIL, TIFF, TIFF64, TILE, TIM, TTC, TTF, TXT, UBRL, UBRL6, UIL, UYVY, VDA, VICAR, VID, VIFF, VIPS, VST, WBMP, WEBP, WMF, WMV, WMZ, WPG, X, X3F, XBM, XC, XCF, XPM, XPS, XV, XWD, YCbCr, YCbCrA, YUV
DirectiveLocal ValueMaster Value
imagick.locale_fix00
imagick.progress_monitor00
imagick.skip_version_check11

imap

IMAP c-Client Version 2007e
SSL Support enabled
Kerberos Support enabled

json

json support enabled
json version 1.5.0

libxml

libXML support active
libXML Compiled Version 2.7.6
libXML Loaded Version 20706
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

memcache

memcache supportenabled
Version 3.0.9-dev
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.protocolasciiascii
memcache.redundancy11
memcache.session_redundancy22

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_socket/var/lib/mysql/mysql.sock/var/lib/mysql/mysql.sock
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_caching_sha2_password,auth_plugin_sha256_password
API Extensions mysqli,pdo_mysql
mysqlnd statistics
bytes_sent 1082547
bytes_received 26040973
packets_sent 21986
packets_received 154287
protocol_overhead_in 617148
protocol_overhead_out 87944
bytes_received_ok_packet 0
bytes_received_eof_packet 0
bytes_received_rset_header_packet 94059
bytes_received_rset_field_meta_packet 0
bytes_received_rset_row_packet 55246
bytes_received_prepare_response_packet 6905432
bytes_received_change_user_packet 18919385
packets_sent_command 10829
packets_received_ok 0
packets_received_eof 0
packets_received_rset_header 10451
packets_received_rset_field_meta 0
packets_received_rset_row 10666
packets_received_prepare_response 94740
packets_received_change_user 38102
result_set_queries 10451
non_result_set_queries 215
no_index_used 854
bad_index_used 0
slow_queries 0
buffered_sets 10451
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 27651
rows_fetched_from_server_ps 0
rows_buffered_from_client_normal 27651
rows_buffered_from_client_ps 0
rows_fetched_from_client_normal_buffered 27651
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 92
rows_affected_ps 0
rows_skipped_normal 27651
rows_skipped_ps 0
copy_on_write_saved 0
copy_on_write_performed 0
command_buffer_too_small 0
connect_success 164
connect_failure 0
connection_reused 0
reconnect 0
pconnect_success 0
active_connections 18446744073709551454
active_persistent_connections 0
explicit_close 163
implicit_close 0
disconnect_close 0
in_middle_of_command_close 0
explicit_free_result 10322
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 17231
proto_text_fetched_short 0
proto_text_fetched_int24 0
proto_text_fetched_int 102055
proto_text_fetched_bigint 12
proto_text_fetched_decimal 1214
proto_text_fetched_float 0
proto_text_fetched_double 1374
proto_text_fetched_date 2
proto_text_fetched_year 0
proto_text_fetched_time 0
proto_text_fetched_datetime 1528
proto_text_fetched_timestamp 0
proto_text_fetched_string 55347
proto_text_fetched_blob 0
proto_text_fetched_enum 11866
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 163
com_init_db 0
com_query 10666
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 18507535
bytes_received_real_data_ps 0

openssl

OpenSSL support enabled
OpenSSL Library Version OpenSSL 1.0.1e-fips 11 Feb 2013
OpenSSL Header Version OpenSSL 1.0.1e 11 Feb 2013
Openssl default config /etc/pki/tls/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.38 2015-11-23
PCRE JIT Support enabled
DirectiveLocal ValueMaster Value
pcre.backtrack_limit10000001000000
pcre.jit00
pcre.recursion_limit100000100000

PDO

PDO supportenabled
PDO drivers mysql, pgsql, sqlite

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/lib/mysql/mysql.sock/var/lib/mysql/mysql.sock

pdo_pgsql

PDO Driver for PostgreSQLenabled
PostgreSQL(libpq) Version 8.4.20
Module version 7.1.22
Revision $Id: 9c5f356c77143981d2e905e276e439501fe0f419 $

pdo_sqlite

PDO Driver for SQLite 3.xenabled
SQLite Library 3.6.20

pgsql

PostgreSQL Supportenabled
PostgreSQL(libpq) Version 8.4.20
PostgreSQL(libpq) PostgreSQL 8.4.20 on x86_64-redhat-linux-gnu, compiled by GCC gcc (GCC) 4.4.7 20120313 (Red Hat 4.4.7-18), 64-bit
Multibyte character support enabled
SSL support enabled
Active Persistent Links 0
Active Links 0
DirectiveLocal ValueMaster Value
pgsql.allow_persistentOnOn
pgsql.auto_reset_persistentOffOff
pgsql.ignore_noticeOffOff
pgsql.log_noticeOffOff
pgsql.max_linksUnlimitedUnlimited
pgsql.max_persistentUnlimitedUnlimited

Phar

Phar: PHP Archive supportenabled
Phar EXT version 2.0.2
Phar API version 1.1.1
SVN revision $Id: 56fa253a6fef2a07ac702a358f778eddc01a09ea $
Phar-based phar archives enabled
Tar-based phar archives enabled
ZIP-based phar archives enabled
gzip compression enabled
bzip2 compression enabled
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: 066139df29f2b6954fc80149a0ba49dd7845ef7b $

Reflection

Reflectionenabled
Version $Id: 690aaa0fe623291dccc8a94b689287af4ca1145b $

session

Session Support enabled
Registered save handlers files user memcache
Registered serializer handlers php_serialize php php_binary wddx
DirectiveLocal ValueMaster Value
session.auto_startOffOff
session.cache_expire180180
session.cache_limiternocachenocache
session.cookie_domainno valueno value
session.cookie_httponlyOnOff
session.cookie_lifetime25920000
session.cookie_path//
session.cookie_secureOffOff
session.gc_divisor10001000
session.gc_maxlifetime25920001440
session.gc_probability11
session.lazy_writeOnOn
session.namePHPSESSIDPHPSESSID
session.referer_checkno valueno value
session.save_handlerfilesfiles
session.save_path/var/lib/php/promaturak.czno value
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/var/lib/php/wsdlcache/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

sqlite3

SQLite3 supportenabled
SQLite3 module version 7.1.22
SQLite Library 3.6.20
DirectiveLocal ValueMaster Value
sqlite3.extension_dirno valueno value

standard

Dynamic Library Support enabled
Path to sendmail /usr/sbin/sendmail -t -i -f apache@promaturak.cz
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.22

sysvshm

Version 7.1.22

tokenizer

Tokenizer Support enabled

wddx

WDDX Supportenabled
WDDX Session Serializer enabled

xml

XML Support active
XML Namespace Support active
libxml2 Version 2.7.6

xmlreader

XMLReader enabled

xmlwriter

XMLWriter enabled

xsl

XSL enabled
libxslt Version 1.1.26
libxslt compiled against libxml Version 2.7.6
EXSLT enabled
libexslt Version 1.1.26

zip

Zip enabled
Zip version 1.15.3
Libzip headers version 1.5.1
Libzip library version 1.5.1

zlib

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

Additional Modules

Module Name

HTTP request

Headers

Hosttest.promaturak.cz
Accept*/*
X-Requested-WithXMLHttpRequest
Accept-Languagecs-cz
Accept-Encodingbr, gzip, deflate
Content-Typemultipart/form-data; boundary=----WebKitFormBoundaryKokZW9CJCNpFkggL
Originhttps://test.promaturak.cz
User-AgentMozilla/5.0 (iPhone; CPU iPhone OS 12_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.1.2 Mobile/15E148 Safari/604.1
Connectionkeep-alive
Refererhttps://test.promaturak.cz/cs/produkty/cervene-satenove-serpy
Content-Length1722
Cookie_ga=GA1.2.1177461416.1567501427; _gid=GA1.2.1711581064.1567501427; PHPSESSID=8nlogg77cs6e54ueddkfh9prhn; nette-browser=gjk58tqg25; _gat_UA-1361214-27=1; _fbp=fb.1.1567501427165.1109289404

$_GET

empty

$_POST

bf_amount
"15" (2)
bf_properties
array (11)
6569 => "" 6570 => "" 6562 => "18" (2) 6571 => "732" (3) 6563 => array (1)
| 0 => "19" (2)
6683 => "669" (3) 6565 => "25" (2) 6572 => "513" (3) 6567 => "Maturant 2020" (13) 6568 => "----- jméno -----" (18) 6566 => "Ludva" (5)
bf_special_id
""
do
"productDetail-buyForm-buyForm-submit" (36)
bf_save_and_go_to_students
"SAVE_AND_GO_TO_STUDENTS" (23)

$_COOKIE

_ga
"GA1.2.1177461416.1567501427" (27)
_gid
"GA1.2.1711581064.1567501427" (27)
PHPSESSID
"8nlogg77cs6e54ueddkfh9prhn" (26)
nette-browser
"gjk58tqg25" (10)
_gat_UA-1361214-27
"1"
_fbp
"fb.1.1567501427165.1109289404" (29)

HTTP response

Headers

X-Frame-Options: SAMEORIGIN
Content-Type: text/html; charset=utf-8
X-Powered-By: InnPress & Nette Framework
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Cache-Control: no-store, no-cache, must-revalidate
Pragma: no-cache
Set-Cookie: PHPSESSID=8nlogg77cs6e54ueddkfh9prhn; expires=Thu, 03-Oct-2019 09:06:11 GMT; Max-Age=2592000; path=/; HttpOnly
Set-Cookie: nette-browser=gjk58tqg25; path=/; HttpOnly
Vary: X-Requested-With