Exception #500
File: ...\vendor\abra\samm\app\models\ModulesModel.php:24
14: * Vrati seznam povolenych modulu 15: * @return array 16: */ 17: public function getAllowedModules() 18: { 19: $r = new Request(); 20: $r->type = Request::TYPE_MODULES; 21: $modules = $this->service->post($r, FALSE, Service::RETURN_PARSED); 22: if(empty($modules->data->module) || !is_array($modules->data->module)) 23: { 24: throw new \Exception('Nepodařilo se získat seznam modulů', 500); 25: } 26: $modList = array(); 27: foreach($modules->data->module as $mod) 28: {
...\vendor\abra\samm\app\presenters\SignPresenter.php:347 source ModulesModel->getAllowedModules()
337: $this->ssUser = $this->session->getSection('user'); 338: $this->ssUser['connection'] = $connection; 339: $this->ssUser['auth'] = $this->user->identity->data['auth']; 340: 341: // I SEM BYCHOM MOHLI PRIDAT TOKEN - dostupne moduly se mohou vracet podle prihlaseneho uzivatele 342: $this->abraService->setToken($this->ssUser['auth']->token); 343: 344: // nacteme povolene moduly 345: try 346: { 347: $allowedModules = $this->modulesModel->getAllowedModules(); 348: $this->ssUser['allowedModules'] = $allowedModules; 349: } 350: catch(\Exception $e) 351: {
inner-code SignPresenter->signInFormSubmitted(arguments)
| $form | |
|---|---|
| #1 | NULL
|
...\samm\libs\Nette\nette.phar\deprecated\Callback.php:28 source call_user_func_array(arguments)
18: instanceof 19: self){$this->cb=$cb->cb;return;}if(!is_callable($cb,TRUE)){throw 20: new 21: InvalidArgumentException('Invalid callback.');}$this->cb=$cb;}/** 22: @return mixed 23: **/public 24: function 25: __invoke(){if(!is_callable($this->cb)){throw 26: new 27: InvalidStateException("Callback '$this' is not callable.");}return 28: call_user_func_array($this->cb,func_get_args());}/** 29: @return mixed 30: **/public 31: function 32: invoke(){if(!is_callable($this->cb)){throw
| $function_name | |
|---|---|
| $parameters |
inner-code Nette\Callback->__invoke(arguments)
| #0 | |
|---|---|
| #1 | NULL
|
...\abra\samm\libs\Nette\nette.phar\Utils\Callback.php:20 source call_user_func_array(arguments)
10: function 11: closure($callable,$m=NULL){if($m!==NULL){$callable=array($callable,$m);}elseif(is_string($callable)&&count($tmp=explode('::',$callable))===2){$callable=$tmp;}elseif($callable 12: instanceof\Closure){return$callable;}elseif(is_object($callable)){$callable=array($callable,'__invoke');}if(PHP_VERSION_ID>=50400){if(is_string($callable)&&function_exists($callable)){$r=new\ReflectionFunction($callable);return$r->getClosure();}elseif(is_array($callable)&&method_exists($callable[0],$callable[1])){$r=new\ReflectionMethod($callable[0],$callable[1]);return$r->getClosure($callable[0]);}}self::check($callable);$_callable_=$callable;return 13: function()use($_callable_){return 14: call_user_func_array($_callable_,func_get_args());};}/** 15: @return mixed 16: **/public 17: static 18: function 19: invoke($callable){self::check($callable);return 20: call_user_func_array($callable,array_slice(func_get_args(),1));}/** 21: @return mixed 22: **/public 23: static 24: function
| $function_name | |
|---|---|
| $parameters |
...\abra\samm\libs\Nette\nette.phar\Forms\Form.php:129 source Nette\Utils\Callback::invoke(arguments)
119: Helpers::extractHttpData($this->httpData,$htmlName,$type);}/** 120: @return void 121: **/public 122: function 123: fireEvents(){if(!$this->isSubmitted()){return;}elseif(!$this->getErrors()){$this->validate();}if($this->submittedBy 124: instanceof 125: ISubmitterControl){if($this->isValid()){$this->submittedBy->onClick($this->submittedBy);}else{$this->submittedBy->onInvalidClick($this->submittedBy);}}if(!$this->isValid()){$this->onError($this);}elseif($this->onSuccess!==NULL){if(!is_array($this->onSuccess)&&!$this->onSuccess 126: instanceof\Traversable){throw 127: new 128: Nette\UnexpectedValueException('Property Form::$onSuccess must be array or Traversable, '.gettype($this->onSuccess).' given.');}foreach($this->onSuccess 129: as$handler){$params=Nette\Utils\Callback::toReflection($handler)->getParameters();$values=isset($params[1])?$this->getValues($params[1]->isArray()):NULL;Nette\Utils\Callback::invoke($handler,$this,$values);if(!$this->isValid()){$this->onError($this);break;}}}$this->onSubmit($this);}/** 130: @return array|NULL 131: **/protected 132: function 133: receiveHttpData(){$httpRequest=$this->getHttpRequest();if(strcasecmp($this->getMethod(),$httpRequest->getMethod())){return;}if($httpRequest->isMethod('post')){$data=Nette\Utils\Arrays::mergeTree($httpRequest->getPost(),$httpRequest->getFiles());}else{$data=$httpRequest->getQuery();if(!$data){return;}}if($tracker=$this->getComponent(self::TRACKER_ID,FALSE)){if(!isset($data[self::TRACKER_ID])||$data[self::TRACKER_ID]!==$tracker->getValue()){return;}}return$data;}public
| $callable | |
|---|---|
| #1 | |
| #2 | NULL
|
...\samm\libs\Nette\nette.phar\Application\UI\Form.php:41 source Nette\Forms\Form->fireEvents()
31: function 32: isAnchored(){return(bool)$this->getPresenter(FALSE);}/** 33: @return array|NULL 34: **/protected 35: function 36: receiveHttpData(){$presenter=$this->getPresenter();if(!$presenter->isSignalReceiver($this,'submit')){return;}$isPost=$this->getMethod()===self::POST;$request=$presenter->getRequest();if($request->isMethod('forward')||$request->isMethod('post')!==$isPost){return;}if($isPost){return 37: Nette\Utils\Arrays::mergeTree($request->getPost(),$request->getFiles());}else{return$request->getParameters();}}/** 38: @return void 39: **/public 40: function 41: signalReceived($signal){if($signal==='submit'){if(!$this->getPresenter()->getRequest()->hasFlag(Nette\Application\Request::RESTORED)){$this->fireEvents();}}else{$class=get_class($this);throw 42: new 43: BadSignalException("Missing handler for signal '$signal' in $class.");}}}
...\libs\Nette\nette.phar\Application\UI\Presenter.php:73 source Nette\Application\UI\Form->signalReceived(arguments)
63: Application\ForbiddenRequestException;}}/** 64: @return void 65: **/public 66: function 67: processSignal(){if($this->signal===NULL){return;}try{$component=$this->signalReceiver===''?$this:$this->getComponent($this->signalReceiver,FALSE);}catch(Nette\InvalidArgumentException$e){}if(isset($e)||$component===NULL){throw 68: new 69: BadSignalException("The signal receiver component '$this->signalReceiver' is not found.",NULL,isset($e)?$e:NULL);}elseif(!$component 70: instanceof 71: ISignalReceiver){throw 72: new 73: BadSignalException("The signal receiver component '$this->signalReceiver' is not ISignalReceiver implementor.");}$component->signalReceived($this->signal);$this->signal=NULL;}/** 74: @return array|NULL 75: **/public 76: function 77: getSignal(){return$this->signal===NULL?NULL:array($this->signalReceiver,$this->signal);}/**
| $signal | "submit" (6)
|
|---|
...\libs\Nette\nette.phar\Application\UI\Presenter.php:37 source Nette\Application\UI\Presenter->processSignal()
27: @return string 28: **/public 29: function 30: getUniqueId(){return'';}/** 31: @return Nette\Application\IResponse 32: **/public 33: function 34: run(Application\Request$request){try{$this->request=$request;$this->payload=$this->payload?:new\stdClass;$this->setParent($this->getParent(),$request->getPresenterName());if(!$this->httpResponse->isSent()){$this->httpResponse->addHeader('Vary','X-Requested-With');}$this->initGlobalParameters();$this->checkRequirements($this->getReflection());$this->startup();if(!$this->startupCheck){$class=$this->getReflection()->getMethod('startup')->getDeclaringClass()->getName();throw 35: new 36: Nette\InvalidStateException("Method $class::startup() or its descendant doesn't call parent::startup().");}$this->tryCall($this->formatActionMethod($this->action),$this->params);foreach($this->globalParams 37: as$id=>$foo){$this->getComponent($id,FALSE);}if($this->autoCanonicalize){$this->canonicalize();}if($this->httpRequest->isMethod('head')){$this->terminate();}$this->processSignal();$this->beforeRender();$this->tryCall($this->formatRenderMethod($this->view),$this->params);$this->afterRender();$this->saveGlobalState();if($this->isAjax()){$this->payload->state=$this->getGlobalState();}if($this->getTemplate()){$this->sendTemplate();}}catch(Application\AbortException$e){if($this->isAjax()){try{$hasPayload=(array)$this->payload;unset($hasPayload['state']);if($this->response 38: instanceof 39: Responses\TextResponse&&$this->isControlInvalid()){$this->snippetMode=TRUE;$this->response->send($this->httpRequest,$this->httpResponse);$this->sendPayload();}elseif(!$this->response&&$hasPayload){$this->sendPayload();}}catch(Application\AbortException$e){}}if($this->hasFlashSession()){$this->getFlashSession()->setExpiration($this->response 40: instanceof 41: Responses\RedirectResponse?'+ 30 seconds':'+ 3 seconds');}$this->onShutdown($this,$this->response);$this->shutdown($this->response);return$this->response;}}/**
...\libs\Nette\nette.phar\Application\Application.php:33 source Nette\Application\UI\Presenter->run(arguments)
23: BadRequestException('No route for HTTP request.');}elseif(strcasecmp($request->getPresenterName(),$this->errorPresenter)===0){throw 24: new 25: BadRequestException('Invalid request. Presenter is not achievable.');}try{$name=$request->getPresenterName();$this->presenterFactory->getPresenterClass($name);}catch(InvalidPresenterException$e){throw 26: new 27: BadRequestException($e->getMessage(),0,$e);}return$request;}/** 28: @return void 29: **/public 30: function 31: processRequest(Request$request){if(count($this->requests)>self::$maxLoop){throw 32: new 33: ApplicationException('Too many loops detected in application life cycle.');}$this->requests[]=$request;$this->onRequest($this,$request);$this->presenter=$this->presenterFactory->createPresenter($request->getPresenterName());$this->onPresenter($this,$this->presenter);$response=$this->presenter->run($request);if($response 34: instanceof 35: Responses\ForwardResponse){$this->processRequest($response->getRequest());}elseif($response){$this->onResponse($this,$response);$response->send($this->httpRequest,$this->httpResponse);}}/** 36: @return void 37: **/public
| $request |
|---|
...\libs\Nette\nette.phar\Application\Application.php:15 source Nette\Application\Application->processRequest(arguments)
5: Nette;class 6: Application 7: extends 8: Nette\Object{public 9: static$maxLoop=20;public$catchExceptions;public$errorPresenter;public$onStartup;public$onShutdown;public$onRequest;public$onPresenter;public$onResponse;public$onError;private$requests=array();private$presenter;private$httpRequest;private$httpResponse;private$presenterFactory;private$router;public 10: function 11: __construct(IPresenterFactory$presenterFactory,IRouter$router,Nette\Http\IRequest$httpRequest,Nette\Http\IResponse$httpResponse){$this->httpRequest=$httpRequest;$this->httpResponse=$httpResponse;$this->presenterFactory=$presenterFactory;$this->router=$router;}/** 12: @return void 13: **/public 14: function 15: run(){try{$this->onStartup($this);$this->processRequest($this->createInitialRequest());$this->onShutdown($this);}catch(\Exception$e){$this->onError($this,$e);if($this->catchExceptions&&$this->errorPresenter){try{$this->processException($e);$this->onShutdown($this,$e);return;}catch(\Exception$e){$this->onError($this,$e);}}$this->onShutdown($this,$e);throw$e;}}/** 16: @return Request 17: **/public 18: function 19: createInitialRequest(){$request=$this->router->match($this->httpRequest);if(!$request
| $request |
|---|
C:\Web\WWW\schvalovani\vendor\abra\samm\www\index.php:29 source Nette\Application\Application->run()
19: define('ABRA_SERVICE_CACHE_DIR', TEMP_DIR.'/AbraService-classes'); 20: 21: // uncomment this line if you must temporarily take down your site for maintenance 22: if(is_file(__DIR__.'/maintenance.flag') && (empty($_SERVER['REQUEST_URI']) || strpos($_SERVER['REQUEST_URI'], 'core/debug/moff') === FALSE)) 23: { 24: require APP_DIR . '/templates/maintenance.phtml'; 25: } 26: 27: $container = require APP_DIR.'/bootstrap.php'; 28: 29: $container->getService('application')->run(); 30:
| REDIRECT_STATUS | "200" (3)
|
|---|---|
| HTTP_HOST | "esd.vidox.cz:8081" (17)
|
| HTTP_CONNECTION | "keep-alive" (10)
|
| CONTENT_LENGTH | "106" (3)
|
| HTTP_CACHE_CONTROL | "max-age=0" (9)
|
| HTTP_ORIGIN | "http://esd.vidox.cz:8081" (24)
|
| CONTENT_TYPE | "application/x-www-form-urlencoded" (33)
|
| HTTP_UPGRADE_INSECURE_REQUESTS | "1"
|
| HTTP_USER_AGENT | "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.0.0 Safari/537.36" (111)
|
| HTTP_ACCEPT | "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8" (96)
|
| HTTP_SEC_GPC | "1"
|
| HTTP_ACCEPT_LANGUAGE | "cs-CZ,cs;q=0.8" (14)
|
| HTTP_REFERER | "http://esd.vidox.cz:8081/sign/in?lang=cs" (40)
|
| HTTP_ACCEPT_ENCODING | "gzip, deflate" (13)
|
| HTTP_COOKIE | "sammsessid=k8ohqj95vnfci92bsl16jm9bc4; nette-browser=f58vd67ckf" (63)
|
| PATH | "C:\Program Files (x86)\Common Files\Oracle\Java\javapath;C:\Program Files\Eclipse Adoptium\jdk-17.0.14.7-hotspot\bin;C:\Program Files (x86)\PHP\;C:\Wi ... " (886)
|
| SystemRoot | "C:\Windows" (10)
|
| COMSPEC | "C:\Windows\system32\cmd.exe" (27)
|
| PATHEXT | ".COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC" (53)
|
| WINDIR | "C:\Windows" (10)
|
| SERVER_SIGNATURE | ""
|
| SERVER_SOFTWARE | "Apache/2.2.25 (Win32) PHP/5.3.29" (32)
|
| SERVER_NAME | "esd.vidox.cz" (12)
|
| SERVER_ADDR | "192.168.200.128" (15)
|
| SERVER_PORT | "8081" (4)
|
| REMOTE_ADDR | "185.15.147.178" (14)
|
| DOCUMENT_ROOT | "C:/Web/WWW/schvalovani/vendor/abra/samm/www" (43)
|
| SERVER_ADMIN | "webmaster@dummy-host2.5tnet.cz" (30)
|
| SCRIPT_FILENAME | "C:/Web/WWW/schvalovani/vendor/abra/samm/www/index.php" (53)
|
| REMOTE_PORT | "64562" (5)
|
| REDIRECT_QUERY_STRING | "lang=cs" (7)
|
| REDIRECT_URL | "/sign/in" (8)
|
| GATEWAY_INTERFACE | "CGI/1.1" (7)
|
| SERVER_PROTOCOL | "HTTP/1.1" (8)
|
| REQUEST_METHOD | "POST" (4)
|
| QUERY_STRING | "lang=cs" (7)
|
| REQUEST_URI | "/sign/in?lang=cs" (16)
|
| SCRIPT_NAME | "/index.php" (10)
|
| PHP_SELF | "/index.php" (10)
|
| REQUEST_TIME | 1760595640
|
| __NF | Nette Session |
|---|
| user | |
|---|---|
| Nette.Http.UserStorage/ | |
| order | NULL
|
| GettextTranslator-Gettext |
| WWW_DIR | "C:\Web\WWW\schvalovani\vendor\abra\samm\www" (43)
|
|---|---|
| APP_DIR | "C:\Web\WWW\schvalovani\vendor\abra\samm\www/../app" (50)
|
| LIBS_DIR | "C:\Web\WWW\schvalovani\vendor\abra\samm\www/../libs" (51)
|
| LOG_DIR | "C:\Web\WWW\schvalovani\vendor\abra\samm\www/../log" (50)
|
| TEMP_DIR | "C:\Web\WWW\schvalovani\vendor\abra\samm\www/../temp" (51)
|
| ABRA_SERVICE_CACHE_DIR | "C:\Web\WWW\schvalovani\vendor\abra\samm\www/../temp/AbraService-classes" (71)
|
| DEBUG_ENABLED | FALSE
|
| C:\Web\WWW\schvalovani\vendor\abra\samm\www\index.php |
| C:\Web\WWW\schvalovani\vendor\abra\samm\app\bootstrap.php |
| C:\Web\WWW\schvalovani\vendor\abra\samm\libs\Nette\nette.phar |
| phar://C:/Web/WWW/schvalovani/vendor/abra/samm/libs/Nette/nette.phar/loader.php |
| phar://C:/Web/WWW/schvalovani/vendor/abra/samm/libs/Nette/nette.phar/Loaders/NetteLoader.php |
| phar://C:/Web/WWW/schvalovani/vendor/abra/samm/libs/Nette/nette.phar/Bootstrap/Configurator.php |
| phar://C:/Web/WWW/schvalovani/vendor/abra/samm/libs/Nette/nette.phar/Utils/Object.php |
| phar://C:/Web/WWW/schvalovani/vendor/abra/samm/libs/Nette/nette.phar/DI/CompilerExtension.php |
| phar://C:/Web/WWW/schvalovani/vendor/abra/samm/libs/Nette/nette.phar/Tracy/Bar.php |
| phar://C:/Web/WWW/schvalovani/vendor/abra/samm/libs/Nette/nette.phar/Tracy/BlueScreen.php |
| phar://C:/Web/WWW/schvalovani/vendor/abra/samm/libs/Nette/nette.phar/Tracy/Dumper.php |
| phar://C:/Web/WWW/schvalovani/vendor/abra/samm/libs/Nette/nette.phar/Latte/exceptions.php |
| phar://C:/Web/WWW/schvalovani/vendor/abra/samm/libs/Nette/nette.phar/Latte/IMacro.php |
| phar://C:/Web/WWW/schvalovani/vendor/abra/samm/libs/Nette/nette.phar/Latte/Macros/MacroSet.php |
| phar://C:/Web/WWW/schvalovani/vendor/abra/samm/libs/Nette/nette.phar/Latte/Object.php |
| phar://C:/Web/WWW/schvalovani/vendor/abra/samm/libs/Nette/nette.phar/Utils/ArrayHash.php |
| phar://C:/Web/WWW/schvalovani/vendor/abra/samm/libs/Nette/nette.phar/Utils/ArrayList.php |
| phar://C:/Web/WWW/schvalovani/vendor/abra/samm/libs/Nette/nette.phar/Utils/DateTime.php |
| phar://C:/Web/WWW/schvalovani/vendor/abra/samm/libs/Nette/nette.phar/Utils/Image.php |
| phar://C:/Web/WWW/schvalovani/vendor/abra/samm/libs/Nette/nette.phar/Utils/ObjectMixin.php |
| phar://C:/Web/WWW/schvalovani/vendor/abra/samm/libs/Nette/nette.phar/Neon/Exception.php |
| phar://C:/Web/WWW/schvalovani/vendor/abra/samm/libs/Nette/nette.phar/Neon/Entity.php |
| phar://C:/Web/WWW/schvalovani/vendor/abra/samm/libs/Nette/nette.phar/Neon/Neon.php |
| phar://C:/Web/WWW/schvalovani/vendor/abra/samm/libs/Nette/nette.phar/shortcuts.php |
| phar://C:/Web/WWW/schvalovani/vendor/abra/samm/libs/Nette/nette.phar/SafeStream/SafeStream.php |
| phar://C:/Web/WWW/schvalovani/vendor/abra/samm/libs/Nette/nette.phar/Tracy/Debugger.php |
| phar://C:/Web/WWW/schvalovani/vendor/abra/samm/libs/Nette/nette.phar/Tracy/ILogger.php |
| phar://C:/Web/WWW/schvalovani/vendor/abra/samm/libs/Nette/nette.phar/Tracy/DefaultBarPanel.php |
| phar://C:/Web/WWW/schvalovani/vendor/abra/samm/libs/Nette/nette.phar/Tracy/IBarPanel.php |
| phar://C:/Web/WWW/schvalovani/vendor/abra/samm/libs/Nette/nette.phar/Tracy/FireLogger.php |
| phar://C:/Web/WWW/schvalovani/vendor/abra/samm/libs/Nette/nette.phar/Tracy/Helpers.php |
| phar://C:/Web/WWW/schvalovani/vendor/abra/samm/libs/Nette/nette.phar/Tracy/Logger.php |
| phar://C:/Web/WWW/schvalovani/vendor/abra/samm/libs/Nette/nette.phar/Bridges/Framework/TracyBridge.php |
| phar://C:/Web/WWW/schvalovani/vendor/abra/samm/libs/Nette/nette.phar/Framework.php |
| phar://C:/Web/WWW/schvalovani/vendor/abra/samm/libs/Nette/nette.phar/deprecated/Diagnostics/Debugger.php |
| phar://C:/Web/WWW/schvalovani/vendor/abra/samm/libs/Nette/nette.phar/RobotLoader/RobotLoader.php |
| phar://C:/Web/WWW/schvalovani/vendor/abra/samm/libs/Nette/nette.phar/Caching/Storages/FileStorage.php |
| phar://C:/Web/WWW/schvalovani/vendor/abra/samm/libs/Nette/nette.phar/Caching/IStorage.php |
| phar://C:/Web/WWW/schvalovani/vendor/abra/samm/libs/Nette/nette.phar/Caching/Cache.php |
| phar://C:/Web/WWW/schvalovani/vendor/abra/samm/libs/Nette/nette.phar/DI/ContainerLoader.php |
| C:\Web\WWW\schvalovani\vendor\abra\samm\temp\cache\Nette.Configurator\Container_462abd51b3.php |
| phar://C:/Web/WWW/schvalovani/vendor/abra/samm/libs/Nette/nette.phar/DI/Container.php |
| phar://C:/Web/WWW/schvalovani/vendor/abra/samm/libs/Nette/nette.phar/Bridges/ApplicationLatte/ILatteFactory.php |
| phar://C:/Web/WWW/schvalovani/vendor/abra/samm/libs/Nette/nette.phar/Reflection/AnnotationsParser.php |
| phar://C:/Web/WWW/schvalovani/vendor/abra/samm/libs/Nette/nette.phar/Caching/Storages/FileJournal.php |
| phar://C:/Web/WWW/schvalovani/vendor/abra/samm/libs/Nette/nette.phar/Caching/Storages/IJournal.php |
| phar://C:/Web/WWW/schvalovani/vendor/abra/samm/libs/Nette/nette.phar/Http/Session.php |
| phar://C:/Web/WWW/schvalovani/vendor/abra/samm/libs/Nette/nette.phar/Http/RequestFactory.php |
| phar://C:/Web/WWW/schvalovani/vendor/abra/samm/libs/Nette/nette.phar/Http/UrlScript.php |
| phar://C:/Web/WWW/schvalovani/vendor/abra/samm/libs/Nette/nette.phar/Http/Url.php |
| phar://C:/Web/WWW/schvalovani/vendor/abra/samm/libs/Nette/nette.phar/Utils/Strings.php |
| phar://C:/Web/WWW/schvalovani/vendor/abra/samm/libs/Nette/nette.phar/Utils/Callback.php |
| phar://C:/Web/WWW/schvalovani/vendor/abra/samm/libs/Nette/nette.phar/Http/Request.php |
| phar://C:/Web/WWW/schvalovani/vendor/abra/samm/libs/Nette/nette.phar/Http/IRequest.php |
| phar://C:/Web/WWW/schvalovani/vendor/abra/samm/libs/Nette/nette.phar/Http/Response.php |
| phar://C:/Web/WWW/schvalovani/vendor/abra/samm/libs/Nette/nette.phar/Http/IResponse.php |
| phar://C:/Web/WWW/schvalovani/vendor/abra/samm/libs/Nette/nette.phar/Http/Helpers.php |
| phar://C:/Web/WWW/schvalovani/vendor/abra/samm/libs/Nette/nette.phar/deprecated/Environment.php |
| C:\Web\WWW\schvalovani\vendor\abra\samm\libs\SessionPanel.php |
| phar://C:/Web/WWW/schvalovani/vendor/abra/samm/libs/Nette/nette.phar/deprecated/Diagnostics/IBarPanel.php |
| phar://C:/Web/WWW/schvalovani/vendor/abra/samm/libs/Nette/nette.phar/Application/Application.php |
| phar://C:/Web/WWW/schvalovani/vendor/abra/samm/libs/Nette/nette.phar/Application/PresenterFactory.php |
| phar://C:/Web/WWW/schvalovani/vendor/abra/samm/libs/Nette/nette.phar/Application/IPresenterFactory.php |
| phar://C:/Web/WWW/schvalovani/vendor/abra/samm/libs/Nette/nette.phar/Bridges/ApplicationDI/PresenterFactoryCallback.php |
| C:\Web\WWW\schvalovani\vendor\abra\samm\app\router\RouterFactory.php |
| phar://C:/Web/WWW/schvalovani/vendor/abra/samm/libs/Nette/nette.phar/Application/Routers/RouteList.php |
| phar://C:/Web/WWW/schvalovani/vendor/abra/samm/libs/Nette/nette.phar/Application/IRouter.php |
| phar://C:/Web/WWW/schvalovani/vendor/abra/samm/libs/Nette/nette.phar/Application/Routers/Route.php |
| phar://C:/Web/WWW/schvalovani/vendor/abra/samm/libs/Nette/nette.phar/Bridges/ApplicationTracy/RoutingPanel.php |
| phar://C:/Web/WWW/schvalovani/vendor/abra/samm/libs/Nette/nette.phar/Application/Request.php |
| C:\Web\WWW\schvalovani\vendor\abra\samm\app\presenters\SignPresenter.php |
| C:\Web\WWW\schvalovani\vendor\abra\samm\app\presenters\BasePresenter.php |
| phar://C:/Web/WWW/schvalovani/vendor/abra/samm/libs/Nette/nette.phar/Application/UI/Presenter.php |
| phar://C:/Web/WWW/schvalovani/vendor/abra/samm/libs/Nette/nette.phar/Application/UI/Control.php |
| phar://C:/Web/WWW/schvalovani/vendor/abra/samm/libs/Nette/nette.phar/Application/UI/PresenterComponent.php |
| phar://C:/Web/WWW/schvalovani/vendor/abra/samm/libs/Nette/nette.phar/ComponentModel/Container.php |
| phar://C:/Web/WWW/schvalovani/vendor/abra/samm/libs/Nette/nette.phar/ComponentModel/Component.php |
| phar://C:/Web/WWW/schvalovani/vendor/abra/samm/libs/Nette/nette.phar/ComponentModel/IComponent.php |
| phar://C:/Web/WWW/schvalovani/vendor/abra/samm/libs/Nette/nette.phar/ComponentModel/IContainer.php |
| phar://C:/Web/WWW/schvalovani/vendor/abra/samm/libs/Nette/nette.phar/Application/UI/ISignalReceiver.php |
| phar://C:/Web/WWW/schvalovani/vendor/abra/samm/libs/Nette/nette.phar/Application/UI/IStatePersistent.php |
| phar://C:/Web/WWW/schvalovani/vendor/abra/samm/libs/Nette/nette.phar/Application/UI/IRenderable.php |
| phar://C:/Web/WWW/schvalovani/vendor/abra/samm/libs/Nette/nette.phar/Application/IPresenter.php |
| phar://C:/Web/WWW/schvalovani/vendor/abra/samm/libs/Nette/nette.phar/Security/User.php |
| phar://C:/Web/WWW/schvalovani/vendor/abra/samm/libs/Nette/nette.phar/Security/IUserStorage.php |
| phar://C:/Web/WWW/schvalovani/vendor/abra/samm/libs/Nette/nette.phar/Http/UserStorage.php |
| C:\Web\WWW\schvalovani\vendor\abra\samm\app\models\AbraAuthenticator.php |
| phar://C:/Web/WWW/schvalovani/vendor/abra/samm/libs/Nette/nette.phar/Security/IAuthenticator.php |
| C:\Web\WWW\schvalovani\vendor\abra\samm\libs\AbraService\XmlService.php |
| C:\Web\WWW\schvalovani\vendor\abra\samm\libs\AbraService\Service.php |
| C:\Web\WWW\schvalovani\vendor\abra\samm\libs\AbraService\ServiceBarPanel.php |
| phar://C:/Web/WWW/schvalovani/vendor/abra/samm/libs/Nette/nette.phar/Bridges/ApplicationLatte/TemplateFactory.php |
| phar://C:/Web/WWW/schvalovani/vendor/abra/samm/libs/Nette/nette.phar/Application/UI/ITemplateFactory.php |
| C:\Web\WWW\schvalovani\vendor\abra\samm\app\models\CacheModel.php |
| C:\Web\WWW\schvalovani\vendor\abra\samm\app\models\AbraModel.php |
| C:\Web\WWW\schvalovani\vendor\abra\samm\libs\AbraService\EntityLoader.php |
| C:\Web\WWW\schvalovani\vendor\abra\samm\app\models\UniversalModel.php |
| C:\Web\WWW\schvalovani\vendor\abra\samm\app\models\UserModel.php |
| C:\Web\WWW\schvalovani\vendor\abra\samm\app\models\CodelistModel.php |
| C:\Web\WWW\schvalovani\vendor\abra\samm\app\models\ModulesModel.php |
| C:\Web\WWW\schvalovani\vendor\abra\samm\libs\NetteTranslator\Gettext.php |
| phar://C:/Web/WWW/schvalovani/vendor/abra/samm/libs/Nette/nette.phar/Utils/ITranslator.php |
| C:\Web\WWW\schvalovani\vendor\abra\samm\libs\NetteTranslator\FileManager.php |
| phar://C:/Web/WWW/schvalovani/vendor/abra/samm/libs/Nette/nette.phar/Http/SessionSection.php |
| phar://C:/Web/WWW/schvalovani/vendor/abra/samm/libs/Nette/nette.phar/Caching/Storages/DevNullStorage.php |
| C:\Web\WWW\schvalovani\vendor\abra\samm\libs\NetteTranslator\Panel\Panel.php |
| phar://C:/Web/WWW/schvalovani/vendor/abra/samm/libs/Nette/nette.phar/Application/UI/PresenterComponentReflection.php |
| phar://C:/Web/WWW/schvalovani/vendor/abra/samm/libs/Nette/nette.phar/Reflection/ClassType.php |
| phar://C:/Web/WWW/schvalovani/vendor/abra/samm/libs/Nette/nette.phar/Latte/Engine.php |
| phar://C:/Web/WWW/schvalovani/vendor/abra/samm/libs/Nette/nette.phar/Utils/Html.php |
| phar://C:/Web/WWW/schvalovani/vendor/abra/samm/libs/Nette/nette.phar/Utils/IHtmlString.php |
| phar://C:/Web/WWW/schvalovani/vendor/abra/samm/libs/Nette/nette.phar/Bridges/ApplicationLatte/Template.php |
| phar://C:/Web/WWW/schvalovani/vendor/abra/samm/libs/Nette/nette.phar/Application/UI/ITemplate.php |
| phar://C:/Web/WWW/schvalovani/vendor/abra/samm/libs/Nette/nette.phar/Bridges/ApplicationLatte/Loader.php |
| phar://C:/Web/WWW/schvalovani/vendor/abra/samm/libs/Nette/nette.phar/Latte/Loaders/FileLoader.php |
| phar://C:/Web/WWW/schvalovani/vendor/abra/samm/libs/Nette/nette.phar/Latte/ILoader.php |
| phar://C:/Web/WWW/schvalovani/vendor/abra/samm/libs/Nette/nette.phar/Reflection/Method.php |
| phar://C:/Web/WWW/schvalovani/vendor/abra/samm/libs/Nette/nette.phar/Application/UI/Form.php |
| phar://C:/Web/WWW/schvalovani/vendor/abra/samm/libs/Nette/nette.phar/Forms/Form.php |
| phar://C:/Web/WWW/schvalovani/vendor/abra/samm/libs/Nette/nette.phar/Forms/Container.php |
| phar://C:/Web/WWW/schvalovani/vendor/abra/samm/libs/Nette/nette.phar/Forms/Controls/CsrfProtection.php |
| phar://C:/Web/WWW/schvalovani/vendor/abra/samm/libs/Nette/nette.phar/Forms/Controls/HiddenField.php |
| phar://C:/Web/WWW/schvalovani/vendor/abra/samm/libs/Nette/nette.phar/Forms/Controls/BaseControl.php |
| phar://C:/Web/WWW/schvalovani/vendor/abra/samm/libs/Nette/nette.phar/Forms/IControl.php |
| phar://C:/Web/WWW/schvalovani/vendor/abra/samm/libs/Nette/nette.phar/Forms/Rules.php |
| phar://C:/Web/WWW/schvalovani/vendor/abra/samm/libs/Nette/nette.phar/Forms/Validator.php |
| phar://C:/Web/WWW/schvalovani/vendor/abra/samm/libs/Nette/nette.phar/Forms/Controls/SelectBox.php |
| phar://C:/Web/WWW/schvalovani/vendor/abra/samm/libs/Nette/nette.phar/Forms/Controls/ChoiceControl.php |
| phar://C:/Web/WWW/schvalovani/vendor/abra/samm/libs/Nette/nette.phar/Forms/Controls/TextInput.php |
| phar://C:/Web/WWW/schvalovani/vendor/abra/samm/libs/Nette/nette.phar/Forms/Controls/TextBase.php |
| phar://C:/Web/WWW/schvalovani/vendor/abra/samm/libs/Nette/nette.phar/Forms/Rule.php |
| phar://C:/Web/WWW/schvalovani/vendor/abra/samm/libs/Nette/nette.phar/Forms/Controls/SubmitButton.php |
| phar://C:/Web/WWW/schvalovani/vendor/abra/samm/libs/Nette/nette.phar/Forms/Controls/Button.php |
| phar://C:/Web/WWW/schvalovani/vendor/abra/samm/libs/Nette/nette.phar/Forms/ISubmitterControl.php |
| phar://C:/Web/WWW/schvalovani/vendor/abra/samm/libs/Nette/nette.phar/deprecated/Callback.php |
| phar://C:/Web/WWW/schvalovani/vendor/abra/samm/libs/Nette/nette.phar/ComponentModel/RecursiveComponentIterator.php |
| phar://C:/Web/WWW/schvalovani/vendor/abra/samm/libs/Nette/nette.phar/Iterators/Filter.php |
| phar://C:/Web/WWW/schvalovani/vendor/abra/samm/libs/Nette/nette.phar/Utils/Arrays.php |
| phar://C:/Web/WWW/schvalovani/vendor/abra/samm/libs/Nette/nette.phar/Forms/Helpers.php |
| phar://C:/Web/WWW/schvalovani/vendor/abra/samm/libs/Nette/nette.phar/Application/UI/Link.php |
| phar://C:/Web/WWW/schvalovani/vendor/abra/samm/libs/Nette/nette.phar/Reflection/Parameter.php |
| C:\Web\WWW\schvalovani\vendor\abra\samm\libs\AbraService\Request.php |
| C:\Web\WWW\schvalovani\vendor\abra\samm\libs\AbraService\Auth.php |
| C:\Web\WWW\schvalovani\vendor\abra\samm\libs\AbraService\Response.php |
| C:\Web\WWW\schvalovani\vendor\abra\samm\app\classes\User.php |
| C:\Web\WWW\schvalovani\vendor\abra\samm\libs\AbraService\Entity.php |
| phar://C:/Web/WWW/schvalovani/vendor/abra/samm/libs/Nette/nette.phar/Reflection/Property.php |
| C:\Web\WWW\schvalovani\vendor\abra\samm\libs\AbraService\Metadata\ClassDescription.php |
| C:\Web\WWW\schvalovani\vendor\abra\samm\libs\AbraService\Metadata\ClassField.php |
| phar://C:/Web/WWW/schvalovani/vendor/abra/samm/libs/Nette/nette.phar/Security/Identity.php |
| phar://C:/Web/WWW/schvalovani/vendor/abra/samm/libs/Nette/nette.phar/Security/IIdentity.php |
| C:\Web\WWW\schvalovani\vendor\abra\samm\app\presenters\ErrorPresenter.php |
| phar://C:/Web/WWW/schvalovani/vendor/abra/samm/libs/Nette/nette.phar/Application/Responses/ForwardResponse.php |
| phar://C:/Web/WWW/schvalovani/vendor/abra/samm/libs/Nette/nette.phar/Application/IResponse.php |
| phar://C:/Web/WWW/schvalovani/vendor/abra/samm/libs/Nette/nette.phar/Application/exceptions.php |
| phar://C:/Web/WWW/schvalovani/vendor/abra/samm/libs/Nette/nette.phar/Tracy/assets/BlueScreen/bluescreen.phtml |
| Apache Version | Apache/2.2.25 (Win32) PHP/5.3.29 |
| Apache API Version | 20051115 |
| Server Administrator | webmaster@dummy-host2.5tnet.cz |
| Hostname:Port | esd.vidox.cz:0 |
| Max Requests | Per Child: 0 - Keep Alive: on - Max Per Connection: 100 |
| Timeouts | Connection: 300 - Keep-Alive: 5 |
| Virtual Server | Yes |
| Server Root | C:/Program Files (x86)/Apache Software Foundation/Apache2.2 |
| Loaded Modules | core mod_win32 mpm_winnt http_core mod_so mod_actions mod_alias mod_asis mod_auth_basic mod_authn_default mod_authn_file mod_authz_default mod_authz_groupfile mod_authz_host mod_authz_user mod_autoindex mod_cgi mod_dir mod_env mod_include mod_isapi mod_log_config mod_mime mod_negotiation mod_rewrite mod_setenvif mod_php5 mod_abra_wsserver_http_2_2 |
| Directive | Local Value | Master Value |
|---|---|---|
| engine | 1 | 1 |
| last_modified | 0 | 0 |
| xbithack | 0 | 0 |
| Variable | Value |
|---|---|
| REDIRECT_STATUS | 200 |
| HTTP_HOST | esd.vidox.cz:8081 |
| HTTP_CONNECTION | keep-alive |
| CONTENT_LENGTH | 106 |
| HTTP_CACHE_CONTROL | max-age=0 |
| HTTP_ORIGIN | http://esd.vidox.cz:8081 |
| CONTENT_TYPE | application/x-www-form-urlencoded |
| HTTP_UPGRADE_INSECURE_REQUESTS | 1 |
| HTTP_USER_AGENT | Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.0.0 Safari/537.36 |
| HTTP_ACCEPT | text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8 |
| HTTP_SEC_GPC | 1 |
| HTTP_ACCEPT_LANGUAGE | cs-CZ,cs;q=0.8 |
| HTTP_REFERER | http://esd.vidox.cz:8081/sign/in?lang=cs |
| HTTP_ACCEPT_ENCODING | gzip, deflate |
| HTTP_COOKIE | sammsessid=k8ohqj95vnfci92bsl16jm9bc4; nette-browser=f58vd67ckf |
| PATH | C:\Program Files (x86)\Common Files\Oracle\Java\javapath;C:\Program Files\Eclipse Adoptium\jdk-17.0.14.7-hotspot\bin;C:\Program Files (x86)\PHP\;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files\ESET\ESET Security\;C:\Program Files\Microsoft SQL Server\Client SDK\ODBC\170\Tools\Binn\;C:\Program Files (x86)\Microsoft SQL Server\150\Tools\Binn\;C:\Program Files\Microsoft SQL Server\150\Tools\Binn\;C:\Program Files\Microsoft SQL Server\150\DTS\Binn\;C:\Program Files\BackupClient\CommandLineTool\;C:\Program Files (x86)\Common Files\Acronis\FileProtector\;C:\Program Files (x86)\Common Files\Acronis\FileProtector64\;C:\Program Files\BackupClient\PyShell\bin\;C:\Program Files (x86)\Common Files\Acronis\SnapAPI\;C:\Windows\system32\config\systemprofile\AppData\Local\Microsoft\WindowsApps |
| SystemRoot | C:\Windows |
| COMSPEC | C:\Windows\system32\cmd.exe |
| PATHEXT | .COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC |
| WINDIR | C:\Windows |
| SERVER_SIGNATURE | no value |
| SERVER_SOFTWARE | Apache/2.2.25 (Win32) PHP/5.3.29 |
| SERVER_NAME | esd.vidox.cz |
| SERVER_ADDR | 192.168.200.128 |
| SERVER_PORT | 8081 |
| REMOTE_ADDR | 185.15.147.178 |
| DOCUMENT_ROOT | C:/Web/WWW/schvalovani/vendor/abra/samm/www |
| SERVER_ADMIN | webmaster@dummy-host2.5tnet.cz |
| SCRIPT_FILENAME | C:/Web/WWW/schvalovani/vendor/abra/samm/www/index.php |
| REMOTE_PORT | 64562 |
| REDIRECT_QUERY_STRING | lang=cs |
| REDIRECT_URL | /sign/in |
| GATEWAY_INTERFACE | CGI/1.1 |
| SERVER_PROTOCOL | HTTP/1.1 |
| REQUEST_METHOD | POST |
| QUERY_STRING | lang=cs |
| REQUEST_URI | /sign/in?lang=cs |
| SCRIPT_NAME | /index.php |
| HTTP Request Headers | |
|---|---|
| HTTP Request | POST /sign/in?lang=cs HTTP/1.1 |
| Host | esd.vidox.cz:8081 |
| Connection | keep-alive |
| Content-Length | 106 |
| Cache-Control | max-age=0 |
| Origin | http://esd.vidox.cz:8081 |
| Content-Type | application/x-www-form-urlencoded |
| Upgrade-Insecure-Requests | 1 |
| User-Agent | Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.0.0 Safari/537.36 |
| Accept | text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8 |
| Sec-GPC | 1 |
| Accept-Language | cs-CZ,cs;q=0.8 |
| Referer | http://esd.vidox.cz:8081/sign/in?lang=cs |
| Accept-Encoding | gzip, deflate |
| Cookie | sammsessid=k8ohqj95vnfci92bsl16jm9bc4; nette-browser=f58vd67ckf |
| HTTP Response Headers | |
| X-Powered-By | Nette Framework |
| X-Frame-Options | SAMEORIGIN |
| Expires | Thu, 19 Nov 1981 08:52:00 GMT |
| Cache-Control | no-store, no-cache, must-revalidate, post-check=0, pre-check=0 |
| Pragma | no-cache |
| Vary | X-Requested-With |
| Set-Cookie | sammsessid=4mmqt520n6recnjmmu0sbh8154; expires=Thu, 30-Oct-2025 07:20:41 GMT; path=/; HttpOnly |
| Set-Cookie | nette-browser=f58vd67ckf; path=/; httponly |
| Set-Cookie | loginname=5T-NET; expires=Sat, 24-Jan-2026 06:20:41 GMT; path=/; httponly |
| Vary | X-Requested-With |
| BCMath support | enabled |
| Directive | Local Value | Master Value |
|---|---|---|
| bcmath.scale | 0 | 0 |
| BZip2 Support | Enabled |
| Stream Wrapper support | compress.bzip2:// |
| Stream Filter support | bzip2.decompress, bzip2.compress |
| BZip2 Version | 1.0.6, 6-Sept-2010 |
| Calendar support | enabled |
| PHP Version | 5.3.29 |
| Directive | Local Value | Master Value |
|---|---|---|
| allow_call_time_pass_reference | Off | Off |
| allow_url_fopen | On | On |
| allow_url_include | Off | Off |
| always_populate_raw_post_data | Off | Off |
| arg_separator.input | & | & |
| arg_separator.output | & | & |
| asp_tags | Off | Off |
| auto_append_file | no value | no value |
| auto_globals_jit | On | On |
| auto_prepend_file | no value | no value |
| browscap | no value | no value |
| default_charset | no value | no value |
| default_mimetype | text/html | text/html |
| define_syslog_variables | Off | Off |
| disable_classes | no value | no value |
| disable_functions | no value | no value |
| display_errors | Off | Off |
| display_startup_errors | Off | Off |
| doc_root | no value | no value |
| docref_ext | no value | no value |
| docref_root | no value | no value |
| enable_dl | Off | Off |
| error_append_string | no value | no value |
| error_log | C:\Windows\temp\php-errors.log | C:\Windows\temp\php-errors.log |
| error_prepend_string | no value | no value |
| error_reporting | 0 | 22527 |
| exit_on_timeout | Off | Off |
| expose_php | On | On |
| extension_dir | C:\Program Files (x86)\PHP\ext | C:\Program Files (x86)\PHP\ext |
| file_uploads | On | On |
| highlight.bg | #FFFFFF | #FFFFFF |
| highlight.comment | #998; font-style: italic | #FF8000 |
| highlight.default | #000 | #0000BB |
| highlight.html | #06B | #000000 |
| highlight.keyword | #D24; font-weight: bold | #007700 |
| highlight.string | #080 | #DD0000 |
| html_errors | Off | Off |
| ignore_repeated_errors | Off | Off |
| ignore_repeated_source | Off | Off |
| ignore_user_abort | Off | Off |
| implicit_flush | Off | Off |
| include_path | .;C:\php\pear | .;C:\php\pear |
| log_errors | Off | On |
| log_errors_max_len | 1024 | 1024 |
| magic_quotes_gpc | Off | Off |
| magic_quotes_runtime | Off | Off |
| magic_quotes_sybase | Off | Off |
| mail.add_x_header | On | On |
| mail.force_extra_parameters | no value | no value |
| mail.log | no value | no value |
| max_execution_time | 120 | 30 |
| max_file_uploads | 20 | 20 |
| max_input_nesting_level | 64 | 64 |
| max_input_time | 60 | 60 |
| max_input_vars | 1000 | 1000 |
| memory_limit | 128M | 128M |
| open_basedir | no value | no value |
| output_buffering | 4096 | 4096 |
| output_handler | no value | no value |
| post_max_size | 128M | 8M |
| precision | 14 | 14 |
| realpath_cache_size | 16K | 16K |
| realpath_cache_ttl | 120 | 120 |
| register_argc_argv | Off | Off |
| register_globals | Off | Off |
| register_long_arrays | Off | Off |
| report_memleaks | On | On |
| report_zend_debug | On | On |
| request_order | GP | GP |
| safe_mode | Off | Off |
| safe_mode_exec_dir | no value | no value |
| safe_mode_gid | Off | Off |
| safe_mode_include_dir | no value | no value |
| sendmail_from | no value | no value |
| sendmail_path | no value | no value |
| serialize_precision | 17 | 17 |
| short_open_tag | Off | Off |
| SMTP | localhost | localhost |
| smtp_port | 25 | 25 |
| sql.safe_mode | Off | Off |
| track_errors | Off | Off |
| unserialize_callback_func | no value | no value |
| upload_max_filesize | 128M | 2M |
| upload_tmp_dir | C:\Windows\Temp | C:\Windows\Temp |
| user_dir | no value | no value |
| user_ini.cache_ttl | 300 | 300 |
| user_ini.filename | .user.ini | .user.ini |
| variables_order | GPCS | GPCS |
| windows.show_crt_warning | Off | Off |
| xmlrpc_error_number | 0 | 0 |
| xmlrpc_errors | Off | Off |
| y2k_compliance | On | On |
| zend.enable_gc | On | On |
| ctype functions | enabled |
| cURL support | enabled |
| cURL Information | 7.35.0 |
| Age | 3 |
| Features | |
| AsynchDNS | Yes |
| Debug | No |
| GSS-Negotiate | Yes |
| IDN | No |
| IPv6 | Yes |
| Largefile | Yes |
| NTLM | Yes |
| SPNEGO | Yes |
| SSL | Yes |
| SSPI | Yes |
| krb4 | No |
| libz | Yes |
| CharConv | No |
| Protocols | dict, file, ftp, ftps, gopher, http, https, imap, imaps, ldap, pop3, pop3s, rtsp, scp, sftp, smtp, smtps, telnet, tftp |
| Host | i386-pc-win32 |
| SSL Version | OpenSSL/0.9.8{ |
| ZLib Version | 1.2.7 |
| libSSH Version | libssh2/1.4.2 |
| date/time support | enabled |
| "Olson" Timezone Database Version | 2013.3 |
| Timezone Database | internal |
| Default timezone | Europe/Prague |
| Directive | Local Value | Master Value |
|---|---|---|
| date.default_latitude | 31.7667 | 31.7667 |
| date.default_longitude | 35.2333 | 35.2333 |
| date.sunrise_zenith | 90.583333 | 90.583333 |
| date.sunset_zenith | 90.583333 | 90.583333 |
| date.timezone | no value | no value |
| DOM/XML | enabled |
| DOM/XML API Version | 20031129 |
| libxml Version | 2.7.8 |
| HTML Support | enabled |
| XPath Support | enabled |
| XPointer Support | enabled |
| Schema Support | enabled |
| RelaxNG Support | enabled |
| Regex Library | Bundled library enabled |
| EXIF Support | enabled |
| EXIF Version | 1.4 $Id$ |
| Supported EXIF Version | 0220 |
| Supported filetypes | JPEG,TIFF |
| Directive | Local Value | Master Value |
|---|---|---|
| exif.decode_jis_intel | JIS | JIS |
| exif.decode_jis_motorola | JIS | JIS |
| exif.decode_unicode_intel | UCS-2LE | UCS-2LE |
| exif.decode_unicode_motorola | UCS-2BE | UCS-2BE |
| exif.encode_jis | no value | no value |
| exif.encode_unicode | ISO-8859-15 | ISO-8859-15 |
| Input Validation and Filtering | enabled |
| Revision | $Id: 209a1c3c98c04a5474846e7bbe8ca72054ccfd4f $ |
| Directive | Local Value | Master Value |
|---|---|---|
| filter.default | unsafe_raw | unsafe_raw |
| filter.default_flags | no value | no value |
| FTP support | enabled |
| GD Support | enabled |
| GD Version | bundled (2.1.0 compatible) |
| FreeType Support | enabled |
| FreeType Linkage | with freetype |
| FreeType Version | 2.4.10 |
| GIF Read Support | enabled |
| GIF Create Support | enabled |
| JPEG Support | enabled |
| libJPEG Version | 8 |
| PNG Support | enabled |
| libPNG Version | 1.2.50 |
| WBMP Support | enabled |
| XPM Support | enabled |
| libXpm Version | 30411 |
| XBM Support | enabled |
| Directive | Local Value | Master Value |
|---|---|---|
| gd.jpeg_ignore_warning | 0 | 0 |
| GetText Support | enabled |
| gmp support | enabled |
| MPIR version | 1.3.1 |
| hash support | enabled |
| Hashing Engines | md2 md4 md5 sha1 sha224 sha256 sha384 sha512 ripemd128 ripemd160 ripemd256 ripemd320 whirlpool tiger128,3 tiger160,3 tiger192,3 tiger128,4 tiger160,4 tiger192,4 snefru snefru256 gost adler32 crc32 crc32b salsa10 salsa20 haval128,3 haval160,3 haval192,3 haval224,3 haval256,3 haval128,4 haval160,4 haval192,4 haval224,4 haval256,4 haval128,5 haval160,5 haval192,5 haval224,5 haval256,5 |
| iconv support | enabled |
| iconv implementation | "libiconv" |
| iconv library version | 1.14 |
| Directive | Local Value | Master Value |
|---|---|---|
| iconv.input_encoding | ISO-8859-1 | ISO-8859-1 |
| iconv.internal_encoding | ISO-8859-1 | ISO-8859-1 |
| iconv.output_encoding | ISO-8859-1 | ISO-8859-1 |
| IMAP c-Client Version | 2007e |
| SSL Support | enabled |
| json support | enabled |
| json version | 1.2.1 |
| libXML support | active |
| libXML Compiled Version | 2.7.8 |
| libXML Loaded Version | 20708 |
| libXML streams | enabled |
| Multibyte Support | enabled |
| Multibyte string engine | libmbfl |
| HTTP input encoding translation | disabled |
| 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) version | 4.7.1 |
| Directive | Local Value | Master Value |
|---|---|---|
| mbstring.detect_order | no value | no value |
| mbstring.encoding_translation | Off | Off |
| mbstring.func_overload | 0 | 0 |
| mbstring.http_input | pass | pass |
| mbstring.http_output | pass | pass |
| mbstring.http_output_conv_mimetypes | ^(text/|application/xhtml\+xml) | ^(text/|application/xhtml\+xml) |
| mbstring.internal_encoding | no value | no value |
| mbstring.language | neutral | neutral |
| mbstring.strict_detection | Off | Off |
| mbstring.substitute_character | no value | no value |
| mcrypt support | enabled |
|---|---|
| mcrypt_filter support | enabled |
| Version | 2.5.8 |
| Api No | 20021217 |
| Supported ciphers | cast-128 gost rijndael-128 twofish cast-256 loki97 rijndael-192 saferplus wake blowfish-compat des rijndael-256 serpent xtea blowfish enigma rc2 tripledes arcfour |
| Supported modes | cbc cfb ctr ecb ncfb nofb ofb stream |
| Directive | Local Value | Master Value |
|---|---|---|
| mcrypt.algorithms_dir | no value | no value |
| mcrypt.modes_dir | no value | no value |
| MHASH support | Enabled |
| MHASH API Version | Emulated Support |
| MySQL Support | enabled |
|---|---|
| Active Persistent Links | 0 |
| Active Links | 0 |
| Client API version | mysqlnd 5.0.8-dev - 20102224 - $Id: 731e5b87ba42146a687c29995d2dfd8b4e40b325 $ |
| Directive | Local Value | Master Value |
|---|---|---|
| mysql.allow_local_infile | On | On |
| mysql.allow_persistent | On | On |
| mysql.connect_timeout | 60 | 60 |
| mysql.default_host | no value | no value |
| mysql.default_password | no value | no value |
| mysql.default_port | no value | no value |
| mysql.default_socket | no value | no value |
| mysql.default_user | no value | no value |
| mysql.max_links | Unlimited | Unlimited |
| mysql.max_persistent | Unlimited | Unlimited |
| mysql.trace_mode | Off | Off |
| MysqlI Support | enabled |
|---|---|
| Client API library version | mysqlnd 5.0.8-dev - 20102224 - $Id: 731e5b87ba42146a687c29995d2dfd8b4e40b325 $ |
| Active Persistent Links | 0 |
| Inactive Persistent Links | 0 |
| Active Links | 0 |
| Directive | Local Value | Master Value |
|---|---|---|
| mysqli.allow_local_infile | On | On |
| mysqli.allow_persistent | On | On |
| mysqli.default_host | no value | no value |
| mysqli.default_port | 3306 | 3306 |
| mysqli.default_pw | no value | no value |
| mysqli.default_socket | no value | no value |
| mysqli.default_user | no value | no value |
| mysqli.max_links | Unlimited | Unlimited |
| mysqli.max_persistent | Unlimited | Unlimited |
| mysqli.reconnect | Off | Off |
| mysqlnd | enabled |
|---|---|
| Version | mysqlnd 5.0.8-dev - 20102224 - $Id: 731e5b87ba42146a687c29995d2dfd8b4e40b325 $ |
| Compression | supported |
| SSL | supported |
| Command buffer size | 4096 |
| Read buffer size | 32768 |
| Read timeout | 31536000 |
| Collecting statistics | Yes |
| Collecting memory statistics | No |
| Tracing | n/a |
| Client statistics | |
|---|---|
| bytes_sent | 0 |
| bytes_received | 0 |
| packets_sent | 0 |
| packets_received | 0 |
| protocol_overhead_in | 0 |
| 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 | 0 |
| connection_reused | 0 |
| reconnect | 0 |
| pconnect_success | 0 |
| active_connections | 0 |
| active_persistent_connections | 0 |
| explicit_close | 0 |
| 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_estndup_count | 0 |
| mem_strdup_count | 0 |
| proto_text_fetched_null | 0 |
| proto_text_fetched_bit | 0 |
| proto_text_fetched_tinyint | 0 |
| proto_text_fetched_short | 0 |
| proto_text_fetched_int24 | 0 |
| proto_text_fetched_int | 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_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 |
| ODBC Support | enabled |
|---|---|
| Active Persistent Links | 0 |
| Active Links | 0 |
| ODBC library | Win32 |
| Directive | Local Value | Master Value |
|---|---|---|
| odbc.allow_persistent | On | On |
| odbc.check_persistent | On | On |
| odbc.default_cursortype | Static cursor | Static cursor |
| odbc.default_db | no value | no value |
| odbc.default_pw | no value | no value |
| odbc.default_user | no value | no value |
| odbc.defaultbinmode | return as is | return as is |
| odbc.defaultlrl | return up to 4096 bytes | return up to 4096 bytes |
| odbc.max_links | Unlimited | Unlimited |
| odbc.max_persistent | Unlimited | Unlimited |
| OpenSSL support | enabled |
| OpenSSL Library Version | OpenSSL 0.9.8zb 6 Aug 2014 |
| OpenSSL Header Version | OpenSSL 0.9.8zb 6 Aug 2014 |
| PCRE (Perl Compatible Regular Expressions) Support | enabled |
| PCRE Library Version | 8.32 2012-11-30 |
| Directive | Local Value | Master Value |
|---|---|---|
| pcre.backtrack_limit | 1000000 | 1000000 |
| pcre.recursion_limit | 100000 | 100000 |
| PDO support | enabled |
|---|---|
| PDO drivers | mysql, odbc, sqlite |
| PDO Driver for MySQL | enabled |
|---|---|
| Client API version | mysqlnd 5.0.8-dev - 20102224 - $Id: 731e5b87ba42146a687c29995d2dfd8b4e40b325 $ |
| PDO Driver for ODBC (Win32) | enabled |
|---|---|
| ODBC Connection Pooling | Enabled, strict matching |
| PDO Driver for SQLite 3.x | enabled |
|---|---|
| SQLite Library | 3.7.7.1 |
| PostgreSQL Support | enabled |
|---|---|
| PostgreSQL(libpq) Version | 8.3.6 |
| Multibyte character support | enabled |
| SSL support | disabled |
| Active Persistent Links | 0 |
| Active Links | 0 |
| Directive | Local Value | Master Value |
|---|---|---|
| pgsql.allow_persistent | On | On |
| pgsql.auto_reset_persistent | Off | Off |
| pgsql.ignore_notice | Off | Off |
| pgsql.log_notice | Off | Off |
| pgsql.max_links | Unlimited | Unlimited |
| pgsql.max_persistent | Unlimited | Unlimited |
| Phar: PHP Archive support | enabled |
|---|---|
| Phar EXT version | 2.0.1 |
| Phar API version | 1.1.1 |
| SVN revision | $Id: 21d763042eb5769ae0a09dc1118df2b5aae6fb33 $ |
| Phar-based phar archives | enabled |
| Tar-based phar archives | enabled |
| ZIP-based phar archives | enabled |
| gzip compression | enabled |
| bzip2 compression | enabled |
| OpenSSL support | enabled |
|
Phar based on pear/PHP_Archive, original concept by Davey Shafik. Phar fully realized by Gregory Beaver and Marcus Boerger. Portions of tar implementation Copyright (c) 2003-2009 Tim Kientzle. |
| Directive | Local Value | Master Value |
|---|---|---|
| phar.cache_list | no value | no value |
| phar.readonly | On | On |
| phar.require_hash | On | On |
| Reflection | enabled |
|---|---|
| Version | $Id: 4af6c4c676864b1c0bfa693845af0688645c37cf $ |
| Session Support | enabled |
| Registered save handlers | files user |
| Registered serializer handlers | php php_binary wddx |
| Directive | Local Value | Master Value |
|---|---|---|
| session.auto_start | Off | Off |
| session.bug_compat_42 | Off | Off |
| session.bug_compat_warn | Off | Off |
| session.cache_expire | 180 | 180 |
| session.cache_limiter | nocache | nocache |
| session.cookie_domain | no value | no value |
| session.cookie_httponly | On | Off |
| session.cookie_lifetime | 1213200 | 0 |
| session.cookie_path | / | / |
| session.cookie_secure | Off | Off |
| session.entropy_file | no value | no value |
| session.entropy_length | 0 | 0 |
| session.gc_divisor | 1000 | 1000 |
| session.gc_maxlifetime | 1213200 | 1440 |
| session.gc_probability | 1 | 1 |
| session.hash_bits_per_character | 5 | 5 |
| session.hash_function | 0 | 0 |
| session.name | sammsessid | PHPSESSID |
| session.referer_check | no value | no value |
| session.save_handler | files | files |
| session.save_path | C:\Windows\Temp | C:\Windows\Temp |
| session.serialize_handler | php | php |
| session.use_cookies | On | On |
| session.use_only_cookies | On | On |
| session.use_trans_sid | 0 | 0 |
| Simplexml support | enabled |
|---|---|
| Revision | $Id: 02ab7893b36d51e9c59da77d7e287eb3b35e1e32 $ |
| Schema support | enabled |
| Soap Client | enabled |
| Soap Server | enabled |
| Directive | Local Value | Master Value |
|---|---|---|
| soap.wsdl_cache | 1 | 1 |
| soap.wsdl_cache_dir | /tmp | /tmp |
| soap.wsdl_cache_enabled | 1 | 1 |
| soap.wsdl_cache_limit | 5 | 5 |
| soap.wsdl_cache_ttl | 86400 | 86400 |
| Sockets Support | enabled |
| SPL support | enabled |
|---|---|
| Interfaces | Countable, OuterIterator, RecursiveIterator, SeekableIterator, SplObserver, SplSubject |
| Classes | AppendIterator, ArrayIterator, ArrayObject, BadFunctionCallException, BadMethodCallException, CachingIterator, DirectoryIterator, DomainException, EmptyIterator, FilesystemIterator, FilterIterator, GlobIterator, InfiniteIterator, InvalidArgumentException, IteratorIterator, LengthException, LimitIterator, LogicException, MultipleIterator, NoRewindIterator, OutOfBoundsException, OutOfRangeException, OverflowException, ParentIterator, RangeException, RecursiveArrayIterator, RecursiveCachingIterator, RecursiveDirectoryIterator, RecursiveFilterIterator, RecursiveIteratorIterator, RecursiveRegexIterator, RecursiveTreeIterator, RegexIterator, RuntimeException, SplDoublyLinkedList, SplFileInfo, SplFileObject, SplFixedArray, SplHeap, SplMinHeap, SplMaxHeap, SplObjectStorage, SplPriorityQueue, SplQueue, SplStack, SplTempFileObject, UnderflowException, UnexpectedValueException |
| SQLite3 support | enabled |
|---|---|
| SQLite3 module version | 0.7-dev |
| SQLite Library | 3.7.7.1 |
| Directive | Local Value | Master Value |
|---|---|---|
| sqlite3.extension_dir | no value | no value |
| Dynamic Library Support | enabled |
| Internal Sendmail Support for Windows | enabled |
| Directive | Local Value | Master Value |
|---|---|---|
| assert.active | 1 | 1 |
| assert.bail | 0 | 0 |
| assert.callback | no value | no value |
| assert.quiet_eval | 0 | 0 |
| assert.warning | 1 | 1 |
| auto_detect_line_endings | 0 | 0 |
| default_socket_timeout | 60 | 60 |
| from | no value | no value |
| safe_mode_allowed_env_vars | PHP_ | PHP_ |
| safe_mode_protected_env_vars | LD_LIBRARY_PATH | LD_LIBRARY_PATH |
| url_rewriter.tags | a=href,area=href,frame=src,input=src,form=fakeentry | a=href,area=href,frame=src,input=src,form=fakeentry |
| user_agent | no value | no value |
| Tidy support | enabled |
|---|---|
| libTidy Release | 25 March 2009 |
| Extension Version | 2.0 ($Id$) |
| Directive | Local Value | Master Value |
|---|---|---|
| tidy.clean_output | no value | no value |
| tidy.default_config | no value | no value |
| Tokenizer Support | enabled |
| WDDX Support | enabled |
|---|---|
| WDDX Session Serializer | enabled |
| XML Support | active |
| XML Namespace Support | active |
| libxml2 Version | 2.7.8 |
| XMLReader | enabled |
| core library version | xmlrpc-epi v. 0.51 |
| php extension version | 0.51 |
| author | Dan Libby |
| homepage | http://xmlrpc-epi.sourceforge.net |
| open sourced by | Epinions.com |
| XMLWriter | enabled |
| Zip | enabled |
| Extension Version | $Id: b1a1a3628c4ed0ad78fb0cc4a99b06a56aa281c4 $ |
| Zip version | 1.11.0 |
| Libzip version | 0.10.1 |
| ZLib Support | enabled |
| Stream Wrapper support | compress.zlib:// |
| Stream Filter support | zlib.inflate, zlib.deflate |
| Compiled Version | 1.2.7 |
| Linked Version | 1.2.7 |
| Directive | Local Value | Master Value |
|---|---|---|
| zlib.output_compression | Off | Off |
| zlib.output_compression_level | -1 | -1 |
| zlib.output_handler | no value | no value |
| Module Name |
|---|
| Host | esd.vidox.cz:8081 |
|---|---|
| Connection | keep-alive |
| Content-Length | 106 |
| Cache-Control | max-age=0 |
| Origin | http://esd.vidox.cz:8081 |
| Content-Type | application/x-www-form-urlencoded |
| Upgrade-Insecure-Requests | 1 |
| User-Agent | Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.0.0 Safari/537.36 |
| Accept | text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8 |
| Sec-GPC | 1 |
| Accept-Language | cs-CZ,cs;q=0.8 |
| Referer | http://esd.vidox.cz:8081/sign/in?lang=cs |
| Accept-Encoding | gzip, deflate |
| Cookie | sammsessid=k8ohqj95vnfci92bsl16jm9bc4; nette-browser=f58vd67ckf |
| lang | "cs" (2)
|
|---|
| connection | "AWS" (3)
|
|---|---|
| username | "5T-NET" (6)
|
| password | "5T2024" (6)
|
| _submit | "Přihlásit se" (14)
|
| ref | "/"
|
| do | "signInForm-submit" (17)
|
| sammsessid | "k8ohqj95vnfci92bsl16jm9bc4" (26)
|
|---|---|
| nette-browser | "f58vd67ckf" (10)
|
X-Frame-Options: SAMEORIGIN
X-Powered-By: Nette Framework
Content-Type: text/html; charset=utf-8
Vary: X-Requested-With
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma: no-cache
Set-Cookie: sammsessid=4mmqt520n6recnjmmu0sbh8154; expires=Thu, 30-Oct-2025 07:20:41 GMT; path=/; HttpOnly
Set-Cookie: nette-browser=f58vd67ckf; path=/; httponly
Set-Cookie: loginname=5T-NET; expires=Sat, 24-Jan-2026 06:20:41 GMT; path=/; httponly
Vary: X-Requested-With