Přihlášení
Pro přístup do aplikace je potřeba se registrovat.
Zapomněli jste heslo?

Registrace

Informace o zpracování osobních údajů, včetně informací o právech subjektů údajů a způsobech jejich uplatnění, jsou k dispozici na www.nadaceo2.cz v dokumentu Zásady zpracování osobních údajů.

Latte\RuntimeException: Unable to create file 'D:\inetpub\wwwroot\formulare.nadaceo2.cz/temp/cache/latte/templates-Sign-generatePasswordModal.latte--25f22b779d.php.lock'. fopen(D:\inetpub\wwwroot\formulare.nadaceo2.cz/temp/cache/latte/templates-Sign-generatePasswordModal.latte--25f22b779d.php.lock): Failed to open stream: Resource temporarily unavailable 

Latte\RuntimeException

Unable to create file 'D:\inetpub\wwwroot\formulare.nadaceo2.cz/temp/cache/latte/templates-Sign-generatePasswordModal.latte--25f22b779d.php.lock'. fopen(D:\inetpub\wwwroot\formulare.nadaceo2.cz/temp/cache/latte/templates-Sign-generatePasswordModal.latte--25f22b779d.php.lock): Failed to open stream: Resource temporarily unavailable open file► search►

File: ...\formulare.nadaceo2.cz\vendor\latte\latte\src\Latte\Engine.php:261

251: */ 252: private function acquireLock(string $file, int $mode) 253: { 254: $dir = dirname($file); 255: if (!is_dir($dir) && !@mkdir($dir) && !is_dir($dir)) { // @ - dir may already exist 256: throw new RuntimeException("Unable to create directory '$dir'. " . error_get_last()['message']); 257: } 258: 259: $handle = @fopen($file, 'w'); // @ is escalated to exception 260: if (!$handle) { 261: throw new RuntimeException("Unable to create file '$file'. " . error_get_last()['message']); 262: } elseif (!@flock($handle, $mode)) { // @ is escalated to exception 263: throw new RuntimeException('Unable to acquire ' . ($mode & LOCK_EX ? 'exclusive' : 'shared') . " lock on file '$file'. " . error_get_last()['message']); 264: } 265:
205: 206: return; 207: } 208: 209: // Solving atomicity to work everywhere is really pain in the ass. 210: // 1) We want to do as little as possible IO calls on production and also directory and file can be not writable 211: // so on Linux we include the file directly without shared lock, therefore, the file must be created atomically by renaming. 212: // 2) On Windows file cannot be renamed-to while is open (ie by include), so we have to acquire a lock. 213: $file = $this->getCacheFile($name); 214: $lock = defined('PHP_WINDOWS_VERSION_BUILD') 215: ? $this->acquireLock("$file.lock", LOCK_SH) 216: : null; 217: 218: if (!$this->isExpired($file, $name) && (@include $file) !== false) { // @ - file may not exist 219: return;
$file
'D:\inetpub\wwwroot\formulare.nadaceo2.cz/temp/cache/latte/templates-Sign-generatePasswordModal.latte--25f22b779d.php.lock'
$mode
1
117: 118: 119: /** 120: * Creates template object. 121: * @param mixed[] $params 122: */ 123: public function createTemplate(string $name, array $params = []): Runtime\Template 124: { 125: $class = $this->getTemplateClass($name); 126: if (!class_exists($class, false)) { 127: $this->loadTemplate($name); 128: } 129: 130: $this->providers['fn'] = $this->functions; 131: return new $class($this, $params, $this->filters, $this->providers, $name, $this->sandboxed ? $this->policy : null);
$name
'D:\inetpub\wwwroot\formulare.nadaceo2.cz\app\Modules\Base\Presenters\templates\Sign\generatePasswordModal.latte'
221: /** 222: * Renders template. 223: * @param mixed[] $params 224: * @internal 225: */ 226: public function createTemplate(string $name, array $params, string $referenceType): self 227: { 228: $name = $this->engine->getLoader()->getReferredName($name, $this->name); 229: $referred = $referenceType === 'sandbox' 230: ? (clone $this->engine)->setSandboxMode()->createTemplate($name, $params) 231: : $this->engine->createTemplate($name, $params); 232: 233: $referred->referringTemplate = $this; 234: $referred->referenceType = $referenceType; 235: $referred->global = $this->global;
$name
'D:\inetpub\wwwroot\formulare.nadaceo2.cz\app\Modules\Base\Presenters\templates\Sign\generatePasswordModal.latte'
$params

100: 101: '; 102: echo Nette\Bridges\FormsLatte\Runtime::renderFormEnd(array_pop($this->global->formsStack), false) /* line 7 */; 103: echo ' </form> 104: </div> 105: <a href="#generatePasswordModal" class="js-modal"><b>Zapomněli jste heslo?</b></a> 106: </div> 107: 108: '; 109: $this->createTemplate('registerModal.latte', $this->params, 'include')->renderToContentType('html') /* line 47 */; 110: $this->createTemplate('generatePasswordModal.latte', $this->params, 'include')->renderToContentType('html') /* line 48 */; 111: 112: } 113: 114: }
38: </div> 39: </div> 40: <!-- end o2-section --> 41: 42: </form> 43: </div> 44: <a href="#generatePasswordModal" class="js-modal"><b>Zapomněli jste heslo?</b></a> 45: </div> 46: 47: {include 'registerModal.latte'} 48: {include 'generatePasswordModal.latte'}
$name
'D:\inetpub\wwwroot\formulare.nadaceo2.cz\app\Modules\Base\Presenters\templates\Sign\generatePasswordModal.latte'
$params

$referenceType
'include'
299: 300: if (!$block) { 301: $hint = ($t = Latte\Helpers::getSuggestion($this->getBlockNames($layer), $name)) 302: ? ", did you mean '$t'?" 303: : '.'; 304: $name = $layer ? "$layer $name" : $name; 305: throw new Latte\RuntimeException("Cannot include undefined block '$name'$hint"); 306: } 307: 308: $this->filter( 309: function () use ($block, $params): void { reset($block->functions)($params); }, 310: $mod, 311: $block->contentType, 312: "block $name" 313: );
$ʟ_args
null
354: $block->functions = array_merge($block->functions, $functions); 355: } 356: 357: 358: /** 359: * @param string|\Closure|null $mod content-type name or modifier closure 360: */ 361: private function filter(callable $function, $mod, string $contentType, string $name): void 362: { 363: if ($mod === null || $mod === $contentType) { 364: $function(); 365: 366: } elseif ($mod instanceof \Closure) { 367: echo $mod($this->capture($function), $contentType); 368:
298: : ($this->blocks[self::LAYER_LOCAL][$name] ?? $this->blocks[self::LAYER_TOP][$name] ?? null); 299: 300: if (!$block) { 301: $hint = ($t = Latte\Helpers::getSuggestion($this->getBlockNames($layer), $name)) 302: ? ", did you mean '$t'?" 303: : '.'; 304: $name = $layer ? "$layer $name" : $name; 305: throw new Latte\RuntimeException("Cannot include undefined block '$name'$hint"); 306: } 307: 308: $this->filter( 309: function () use ($block, $params): void { reset($block->functions)($params); }, 310: $mod, 311: $block->contentType, 312: "block $name"
$function

$mod
'html'
$contentType
'html'
$name
'block content'
162: 163: 164: /** {snippetArea qqq} on line 36 */ 165: public function blockQqq(array $ʟ_args): void 166: { 167: extract($this->params); 168: extract($ʟ_args); 169: unset($ʟ_args); 170: $this->global->snippetDriver->enter('qqq', 'area'); 171: try { 172: $this->renderBlock('content', [], 'html') /* line 37 */; 173: } finally { 174: $this->global->snippetDriver->leave(); 175: } 176:
27: {include subheader} 28: </div> 29: </div> 30: {/ifset} 31: 32: {block #main} 33: <div class="o2-layout"> 34: <div class="o2-layout__width"> 35: 36: {snippetArea qqq} 37: {include #content} 38: {/snippetArea} 39: 40: </div> 41: </div>
$name
'content'
$params
array (0)
$mod
'html'
299: 300: if (!$block) { 301: $hint = ($t = Latte\Helpers::getSuggestion($this->getBlockNames($layer), $name)) 302: ? ", did you mean '$t'?" 303: : '.'; 304: $name = $layer ? "$layer $name" : $name; 305: throw new Latte\RuntimeException("Cannot include undefined block '$name'$hint"); 306: } 307: 308: $this->filter( 309: function () use ($block, $params): void { reset($block->functions)($params); }, 310: $mod, 311: $block->contentType, 312: "block $name" 313: );
$ʟ_args
null
354: $block->functions = array_merge($block->functions, $functions); 355: } 356: 357: 358: /** 359: * @param string|\Closure|null $mod content-type name or modifier closure 360: */ 361: private function filter(callable $function, $mod, string $contentType, string $name): void 362: { 363: if ($mod === null || $mod === $contentType) { 364: $function(); 365: 366: } elseif ($mod instanceof \Closure) { 367: echo $mod($this->capture($function), $contentType); 368:
298: : ($this->blocks[self::LAYER_LOCAL][$name] ?? $this->blocks[self::LAYER_TOP][$name] ?? null); 299: 300: if (!$block) { 301: $hint = ($t = Latte\Helpers::getSuggestion($this->getBlockNames($layer), $name)) 302: ? ", did you mean '$t'?" 303: : '.'; 304: $name = $layer ? "$layer $name" : $name; 305: throw new Latte\RuntimeException("Cannot include undefined block '$name'$hint"); 306: } 307: 308: $this->filter( 309: function () use ($block, $params): void { reset($block->functions)($params); }, 310: $mod, 311: $block->contentType, 312: "block $name"
$function

$mod
null
$contentType
'html'
$name
'block qqq'
129: /** {block #main} on line 32 */ 130: public function blockMain(array $ʟ_args): void 131: { 132: extract($this->params); 133: extract($ʟ_args); 134: unset($ʟ_args); 135: echo ' <div class="o2-layout"> 136: <div class="o2-layout__width"> 137: 138: '; 139: $this->renderBlock('qqq', [], null, 'snippet') /* line 36 */; 140: echo ' 141: 142: </div> 143: </div>
26: <div class="o2-subheader__width"> 27: {include subheader} 28: </div> 29: </div> 30: {/ifset} 31: 32: {block #main} 33: <div class="o2-layout"> 34: <div class="o2-layout__width"> 35: 36: {snippetArea qqq} 37: {include #content} 38: {/snippetArea} 39: 40: </div>
$name
'qqq'
$params
array (0)
$mod
null
$layer
'snippet'
299: 300: if (!$block) { 301: $hint = ($t = Latte\Helpers::getSuggestion($this->getBlockNames($layer), $name)) 302: ? ", did you mean '$t'?" 303: : '.'; 304: $name = $layer ? "$layer $name" : $name; 305: throw new Latte\RuntimeException("Cannot include undefined block '$name'$hint"); 306: } 307: 308: $this->filter( 309: function () use ($block, $params): void { reset($block->functions)($params); }, 310: $mod, 311: $block->contentType, 312: "block $name" 313: );
$ʟ_args
null
354: $block->functions = array_merge($block->functions, $functions); 355: } 356: 357: 358: /** 359: * @param string|\Closure|null $mod content-type name or modifier closure 360: */ 361: private function filter(callable $function, $mod, string $contentType, string $name): void 362: { 363: if ($mod === null || $mod === $contentType) { 364: $function(); 365: 366: } elseif ($mod instanceof \Closure) { 367: echo $mod($this->capture($function), $contentType); 368:
298: : ($this->blocks[self::LAYER_LOCAL][$name] ?? $this->blocks[self::LAYER_TOP][$name] ?? null); 299: 300: if (!$block) { 301: $hint = ($t = Latte\Helpers::getSuggestion($this->getBlockNames($layer), $name)) 302: ? ", did you mean '$t'?" 303: : '.'; 304: $name = $layer ? "$layer $name" : $name; 305: throw new Latte\RuntimeException("Cannot include undefined block '$name'$hint"); 306: } 307: 308: $this->filter( 309: function () use ($block, $params): void { reset($block->functions)($params); }, 310: $mod, 311: $block->contentType, 312: "block $name"
$function

$mod
null
$contentType
'html'
$name
'block main'
53: if ($this->hasBlock("subheader")) /* line 24 */ { 54: echo ' <div class="o2-subheader"> 55: <div class="o2-subheader__width"> 56: '; 57: $this->renderBlock('subheader', [], 'html') /* line 27 */; 58: echo ' </div> 59: </div> 60: '; 61: } 62: echo "\n"; 63: $this->renderBlock('main', get_defined_vars()) /* line 32 */; 64: echo ' 65: 66: '; 67: $this->createTemplate('footer.latte', $this->params, 'include')->renderToContentType('html') /* line 44 */;
22: 23: {* O2 Subheader *} 24: {ifset subheader} 25: <div class="o2-subheader"> 26: <div class="o2-subheader__width"> 27: {include subheader} 28: </div> 29: </div> 30: {/ifset} 31: 32: {block #main} 33: <div class="o2-layout"> 34: <div class="o2-layout__width"> 35: 36: {snippetArea qqq}
$name
'main'
$params

161: /** 162: * Renders template. 163: * @internal 164: */ 165: public function render(?string $block = null): void 166: { 167: $level = ob_get_level(); 168: try { 169: $this->prepare(); 170: if (!$this->doRender($block)) { 171: $this->main(); 172: } 173: 174: } catch (\Throwable $e) { 175: while (ob_get_level() > $level) {
193: 194: if ($this->referenceType === 'import') { 195: if ($this->parentName) { 196: throw new Latte\RuntimeException('Imported template cannot use {extends} or {layout}, use {import}'); 197: } 198: 199: } elseif ($this->parentName) { // extends 200: ob_start(function () {}); 201: $this->params = $this->main(); 202: ob_end_clean(); 203: $this->createTemplate($this->parentName, $this->params, 'extends')->render($block); 204: 205: } elseif ($block !== null) { // single block rendering 206: $this->renderBlock($block, $this->params); 207:
$block
null
160: 161: /** 162: * Renders template. 163: * @internal 164: */ 165: public function render(?string $block = null): void 166: { 167: $level = ob_get_level(); 168: try { 169: $this->prepare(); 170: if (!$this->doRender($block)) { 171: $this->main(); 172: } 173: 174: } catch (\Throwable $e) {
$block
null
92: 93: /** 94: * Renders template to output. 95: * @param object|mixed[] $params 96: */ 97: public function render(string $name, $params = [], ?string $block = null): void 98: { 99: $template = $this->createTemplate($name, $this->processParams($params)); 100: $template->global->coreCaptured = false; 101: ($this->probe)($template); 102: $template->render($block); 103: } 104: 105: 106: /**
$block
null
36: return $this->latte; 37: } 38: 39: 40: /** 41: * Renders template to output. 42: */ 43: public function render(?string $file = null, array $params = []): void 44: { 45: Nette\Utils\Arrays::toObject($params, $this); 46: $this->latte->render($file ?: $this->file, $this); 47: } 48: 49: 50: /**
$name
'D:\inetpub\wwwroot\formulare.nadaceo2.cz\app\Modules\Base\Presenters/templates/Sign/default.latte'
$params

40: return $this->source; 41: } 42: 43: 44: /** 45: * Sends response to output. 46: */ 47: public function send(Nette\Http\IRequest $httpRequest, Nette\Http\IResponse $httpResponse): void 48: { 49: if ($this->source instanceof Nette\Application\UI\Template) { 50: $this->source->render(); 51: 52: } else { 53: echo $this->source; 54: }
161: 162: Arrays::invoke($this->onPresenter, $this, $this->presenter); 163: $response = $this->presenter->run(clone $request); 164: 165: if ($response instanceof Responses\ForwardResponse) { 166: $request = $response->getRequest(); 167: goto process; 168: } 169: 170: Arrays::invoke($this->onResponse, $this, $response); 171: $response->send($this->httpRequest, $this->httpResponse); 172: } 173: 174: 175: public function processException(\Throwable $e): void
$httpRequest

$httpResponse

80: } 81: 82: 83: /** 84: * Dispatch a HTTP request to a front controller. 85: */ 86: public function run(): void 87: { 88: try { 89: Arrays::invoke($this->onStartup, $this); 90: $this->processRequest($this->createInitialRequest()); 91: Arrays::invoke($this->onShutdown, $this); 92: 93: } catch (\Throwable $e) { 94: Arrays::invoke($this->onError, $this, $e);
$request

6: 7: $_SERVER['SERVER_PORT'] = 443; 8: 9: $dotenv = Dotenv\Dotenv::createImmutable(__DIR__ . '/../'); 10: $dotenv->load(); 11: $dotenv->required('NETTE_ENV')->allowedValues(['prod', 'dev', 'test'])->notEmpty(); 12: 13: App\Bootstrap::boot() 14: ->createContainer() 15: ->getByType(Nette\Application\Application::class) 16: ->run();

Warning: fopen(D:\inetpub\wwwroot\formulare.nadaceo2.cz/temp/cache/latte/templates-Sign-generatePasswordModal.latte--25f22b779d.php.lock): Failed to open stream: Resource temporarily unavailable

Note: the last muted error may have nothing to do with the thrown exception.

...\formulare.nadaceo2.cz\vendor\latte\latte\src\Latte\Engine.php:259

249: /** 250: * @return resource 251: */ 252: private function acquireLock(string $file, int $mode) 253: { 254: $dir = dirname($file); 255: if (!is_dir($dir) && !@mkdir($dir) && !is_dir($dir)) { // @ - dir may already exist 256: throw new RuntimeException("Unable to create directory '$dir'. " . error_get_last()['message']); 257: } 258: 259: $handle = @fopen($file, 'w'); // @ is escalated to exception 260: if (!$handle) { 261: throw new RuntimeException("Unable to create file '$file'. " . error_get_last()['message']); 262: } elseif (!@flock($handle, $mode)) { // @ is escalated to exception 263: throw new RuntimeException('Unable to acquire ' . ($mode & LOCK_EX ? 'exclusive' : 'shared') . " lock on file '$file'. " . error_get_last()['message']);

Requests


Presenter


			
_FCGI_X_PIPE_
'\\.\pipe\IISFCGI-5dc1ff5c-d27c-4627-bd08-2821de8e96ba'
ALLUSERSPROFILE
'C:\ProgramData'
APPDATA
'C:\Windows\system32\config\systemprofile\AppData\Roaming'
APP_POOL_CONFIG
'C:\inetpub\temp\apppools\spokojenost.o2.cz\spokojenost.o2.cz.config'
APP_POOL_ID
'spokojenost.o2.cz'
CommonProgramFiles
'C:\Program Files\Common Files'
CommonProgramFiles(x86)
'C:\Program Files (x86)\Common Files'
CommonProgramW6432
'C:\Program Files\Common Files'
COMPUTERNAME
'NTSCPAP201'
ComSpec
'C:\Windows\system32\cmd.exe'
LOCALAPPDATA
'C:\Windows\system32\config\systemprofile\AppData\Local'
NUMBER_OF_PROCESSORS
'2'
OS
'Windows_NT'
Path

PATHEXT
'.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC'
PROCESSOR_ARCHITECTURE
'AMD64'
PROCESSOR_IDENTIFIER
'Intel64 Family 6 Model 106 Stepping 6, GenuineIntel'
PROCESSOR_LEVEL
'6'
PROCESSOR_REVISION
'6a06'
ProgramData
'C:\ProgramData'
ProgramFiles
'C:\Program Files'
ProgramFiles(x86)
'C:\Program Files (x86)'
ProgramW6432
'C:\Program Files'
PSModulePath
'C:\Program Files\WindowsPowerShell\Modules;C:\Windows\system32\WindowsPowerShell\v1.0\Modules'
PUBLIC
'C:\Users\Public'
SNOW_AGENT
'C:\Program Files\Snow Software\Inventory\Agent\'
SystemDrive
'C:'
SystemRoot
'C:\Windows'
TEMP
'C:\Windows\TEMP'
TMP
'C:\Windows\TEMP'
UATDATA
'C:\Windows\CCM\UATData\D9F8C395-CAB8-491d-B8AC-179A1FE1BE77'
USERDOMAIN
'WORKGROUP'
USERNAME
'NTSCPAP201$'
USERPROFILE
'C:\Windows\system32\config\systemprofile'
WinCollect_Install_Dir
'C:\Program Files\IBM\WinCollect\'
windir
'C:\Windows'
ORIG_PATH_INFO
'/index.php'
URL
'/index.php'
SERVER_SOFTWARE
'Microsoft-IIS/10.0'
SERVER_PROTOCOL
'HTTP/1.1'
SERVER_PORT_SECURE
'1'
SERVER_PORT
443
SERVER_NAME
'formulare.nadaceo2.cz'
SCRIPT_NAME
'/index.php'
SCRIPT_FILENAME
'D:\inetpub\wwwroot\formulare.nadaceo2.cz\www\index.php'
REQUEST_URI

REQUEST_METHOD
'GET'
REMOTE_USER
''
REMOTE_PORT
'35165'
REMOTE_HOST
'160.218.53.48'
REMOTE_ADDR
'160.218.53.48'
QUERY_STRING

PATH_TRANSLATED
'D:\inetpub\wwwroot\formulare.nadaceo2.cz\www\index.php'
LOGON_USER
''
LOCAL_ADDR
'160.218.54.72'
INSTANCE_META_PATH
'/LM/W3SVC/6'
INSTANCE_NAME
'FORMULARE.NADACEO2.CZ'
INSTANCE_ID
'6'
HTTPS_SERVER_SUBJECT
'C=CZ, L=Prague, O=O2 Czech Republic a.s., CN=spokojenost.o2.cz'
HTTPS_SERVER_ISSUER
'C=US, O=DigiCert Inc, OU=www.digicert.com, CN=Thawte TLS RSA CA G1'
HTTPS_SECRETKEYSIZE
'2048'
HTTPS_KEYSIZE
'256'
HTTPS
'on'
GATEWAY_INTERFACE
'CGI/1.1'
DOCUMENT_ROOT
'D:\inetpub\wwwroot\formulare.nadaceo2.cz\www'
CONTENT_TYPE
''
CONTENT_LENGTH
'0'
CERT_SUBJECT
''
CERT_SERIALNUMBER
''
CERT_ISSUER
''
CERT_FLAGS
''
CERT_COOKIE
''
AUTH_USER
''
AUTH_PASSWORD
''
AUTH_TYPE
''
APPL_PHYSICAL_PATH
'D:\inetpub\wwwroot\formulare.nadaceo2.cz\www\'
APPL_MD_PATH
'/LM/W3SVC/6/ROOT'
IIS_UrlRewriteModule
'7,1,1993,2351'
UNENCODED_URL

IIS_WasUrlRewritten
'1'
HTTP_X_ORIGINAL_URL

HTTP_X_F5_FORWARDED_FOR
'18.119.235.79'
HTTP_X_F5_FORWARDED_PORT
'443'
HTTP_X_F5_FORWARDED_HOST
'formulare.nadaceo2.cz'
HTTP_X_F5_FORWARDED_PROTO
'https'
HTTP_USER_AGENT
'Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)'
HTTP_HOST
'formulare.nadaceo2.cz'
HTTP_COOKIE
'o2_foundation_forms=mng3ev87qajtfqtjp471vc7kkr; _nss=1; tracy-session=fbcc8761d5'
HTTP_ACCEPT_ENCODING
'gzip, br, zstd, deflate'
HTTP_ACCEPT
'*/*'
HTTP_CONTENT_LENGTH
'0'
FCGI_ROLE
'RESPONDER'
PHP_SELF
'/index.php'
REQUEST_TIME_FLOAT
1728559243.957587
REQUEST_TIME
1728559243
NETTE_ENV
'prod'
DEV_UID
'1000'
DEV_GUID
'1000'
DEV_PORT
'8888'
PPT_PORT
'8899'
PROD_PORT
'8888'
__NFNette Session

Nette Session

Nette.Application/requests

moduleViewType
null
Nette.Http.UserStorage/
null
HTMLPURIFIER_PREFIX
'D:\inetpub\wwwroot\formulare.nadaceo2.cz\vendor\ezyang\htmlpurifier\library'

bcmath

BCMath support enabled
DirectiveLocal ValueMaster Value
bcmath.scale00

bz2

BZip2 Support Enabled
Stream Wrapper support compress.bzip2://
Stream Filter support bzip2.decompress, bzip2.compress
BZip2 Version 1.0.8, 13-Jul-2019

calendar

Calendar support enabled

cgi-fcgi

DirectiveLocal ValueMaster Value
cgi.check_shebang_lineOnOn
cgi.discard_pathOffOff
cgi.fix_pathinfoOnOn
cgi.force_redirectOnOn
cgi.nphOffOff
cgi.redirect_status_envno valueno value
cgi.rfc2616_headersOffOff
fastcgi.impersonateOnOn
fastcgi.loggingOnOn

Core

PHP Version 8.2.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_logd:\inetpub\php8.2.22-nadaceo2_errors.logd:\inetpub\php8.2.22-nadaceo2_errors.log
error_log_mode06440644
error_prepend_stringno valueno value
error_reporting3276722527
expose_phpOnOn
extension_dirextext
fiber.stack_sizeno valueno value
file_uploadsOnOn
hard_timeout22
highlight.comment#FF8000#FF8000
highlight.default#0000BB#0000BB
highlight.html#000000#000000
highlight.keyword#007700#007700
highlight.string#DD0000#DD0000
html_errorsOffOn
ignore_repeated_errorsOffOff
ignore_repeated_sourceOffOff
ignore_user_abortOffOff
implicit_flushOffOff
include_path.;C:\php\pear.;C:\php\pear
input_encodingno valueno value
internal_encodingno valueno value
log_errorsOffOn
mail.add_x_headerOffOff
mail.force_extra_parametersno valueno value
mail.logno valueno value
mail.mixed_lf_and_crlfOffOff
max_execution_time250250
max_file_uploads2020
max_input_nesting_level6464
max_input_time6060
max_input_vars10001000
max_multipart_body_parts-1-1
memory_limit128M128M
open_basedirno valueno value
output_buffering40964096
output_encodingno valueno value
output_handlerno valueno value
post_max_size30M30M
precision1414
realpath_cache_size4096K4096K
realpath_cache_ttl120120
register_argc_argvOffOff
report_memleaksOnOn
report_zend_debugOffOff
request_orderGPGP
sendmail_fromno valueno value
sendmail_pathno valueno value
serialize_precision-1-1
short_open_tagOffOff
SMTPsmtp.cz.o2smtp.cz.o2
smtp_port2525
sys_temp_dirno valueno value
syslog.facilityLOG_USERLOG_USER
syslog.filterno-ctrlno-ctrl
syslog.identphpphp
unserialize_callback_funcno valueno value
upload_max_filesize30M30M
upload_tmp_dird:/inetpub/temp/upload/d:/inetpub/temp/upload/
user_dirno valueno value
user_ini.cache_ttl300300
user_ini.filename.user.ini.user.ini
variables_orderGPCSGPCS
windows.show_crt_warningOffOff
xmlrpc_error_number00
xmlrpc_errorsOffOff
zend.assertions-1-1
zend.detect_unicodeOnOn
zend.enable_gcOnOn
zend.exception_ignore_argsOffOff
zend.exception_string_param_max_len1515
zend.multibyteOffOff
zend.script_encodingno valueno value

ctype

ctype functions enabled

curl

cURL support enabled
cURL Information 8.7.0-DEV
Age 10
Features
AsynchDNS Yes
CharConv No
Debug No
GSS-Negotiate No
IDN Yes
IPv6 Yes
krb4 No
Largefile Yes
libz Yes
NTLM Yes
NTLMWB No
SPNEGO Yes
SSL Yes
SSPI Yes
TLS-SRP No
HTTP2 Yes
GSSAPI No
KERBEROS5 Yes
UNIX_SOCKETS Yes
PSL No
HTTPS_PROXY Yes
MULTI_SSL No
BROTLI No
ALTSVC Yes
HTTP3 No
UNICODE No
ZSTD No
HSTS Yes
GSASL No
Protocols dict, file, ftp, ftps, gopher, gophers, http, https, imap, imaps, ldap, ldaps, mqtt, pop3, pop3s, rtsp, scp, sftp, smb, smbs, smtp, smtps, telnet, tftp
Host x86_64-pc-win32
SSL Version OpenSSL/3.0.13
ZLib Version 1.2.12
libSSH Version libssh2/1.10.0
DirectiveLocal ValueMaster Value
curl.cainfod:/inetpub/wwwroot/svetluska/vendor/o2/sms-connector/src/et_sms_connector_ca.pemd:/inetpub/wwwroot/svetluska/vendor/o2/sms-connector/src/et_sms_connector_ca.pem

date

date/time support enabled
timelib version 2022.10
"Olson" Timezone Database Version 2024.1
Timezone Database internal
Default timezone Europe/Prague
DirectiveLocal ValueMaster Value
date.default_latitude31.766731.7667
date.default_longitude35.233335.2333
date.sunrise_zenith90.83333390.833333
date.sunset_zenith90.83333390.833333
date.timezoneEurope/PragueEurope/Prague

dom

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

exif

EXIF Support enabled
Supported EXIF Version 0220
Supported filetypes JPEG, TIFF
Multibyte decoding support using mbstring enabled
Extended EXIF tag formats Canon, Casio, Fujifilm, Nikon, Olympus, Samsung, Panasonic, DJI, Sony, Pentax, Minolta, Sigma, Foveon, Kyocera, Ricoh, AGFA, Epson
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
libmagic 540

filter

Input Validation and Filtering enabled
DirectiveLocal ValueMaster Value
filter.defaultunsafe_rawunsafe_raw
filter.default_flagsno valueno value

gd

GD Support enabled
GD Version bundled (2.1.0 compatible)
FreeType Support enabled
FreeType Linkage with freetype
FreeType Version 2.11.1
GIF Read Support enabled
GIF Create Support enabled
JPEG Support enabled
libJPEG Version 8
PNG Support enabled
libPNG Version 1.6.34
WBMP Support enabled
XPM Support enabled
libXpm Version 30512
XBM Support enabled
WebP Support enabled
BMP Support enabled
AVIF Support enabled
TGA Read Support enabled
DirectiveLocal ValueMaster Value
gd.jpeg_ignore_warningOnOn

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 crc32c fnv132 fnv1a32 fnv164 fnv1a64 joaat murmur3a murmur3c murmur3f xxh32 xxh64 xxh3 xxh128 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 "libiconv"
iconv library version 1.15
DirectiveLocal ValueMaster Value
iconv.input_encodingno valueno value
iconv.internal_encodingno valueno value
iconv.output_encodingno valueno value

intl

Internationalization supportenabled
ICU version 71.1
ICU Data version 71.1
ICU TZData version 2022a
ICU Unicode version 14.0
DirectiveLocal ValueMaster Value
intl.default_localeno valueno value
intl.error_level00
intl.use_exceptionsOffOff

json

json support enabled

ldap

LDAP Support enabled
Total Links 0/unlimited
API Version 3001
Vendor Name OpenLDAP
Vendor Version 20447
SASL Support Enabled
DirectiveLocal ValueMaster Value
ldap.max_linksUnlimitedUnlimited

libxml

libXML support active
libXML Compiled Version 2.10.3
libXML Loaded Version 21003
libXML streams enabled

mbstring

Multibyte Support enabled
Multibyte string engine libmbfl
HTTP input encoding translation disabled
libmbfl version 1.3.2
mbstring extension makes use of "streamable kanji code filter and converter", which is distributed under the GNU Lesser General Public License version 2.1.
Multibyte (japanese) regex support enabled
Multibyte regex (oniguruma) version 6.9.8
DirectiveLocal ValueMaster Value
mbstring.detect_orderno valueno value
mbstring.encoding_translationOffOff
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.regex_retry_limit10000001000000
mbstring.regex_stack_limit100000100000
mbstring.strict_detectionOffOff
mbstring.substitute_characterno valueno value

mysqli

MysqlI Supportenabled
Client API library version mysqlnd 8.2.22
Active Persistent Links 0
Inactive Persistent Links 0
Active Links 0
DirectiveLocal ValueMaster Value
mysqli.allow_local_infileOffOff
mysqli.allow_persistentOnOn
mysqli.default_hostno valueno value
mysqli.default_port33063306
mysqli.default_pwno valueno value
mysqli.default_socketno valueno value
mysqli.default_userno valueno value
mysqli.local_infile_directoryno valueno value
mysqli.max_linksUnlimitedUnlimited
mysqli.max_persistentUnlimitedUnlimited
mysqli.rollback_on_cached_plinkOffOff

mysqlnd

mysqlndenabled
Version mysqlnd 8.2.22
Compression supported
core SSL supported
extended SSL supported
Command buffer size 4096
Read buffer size 32768
Read timeout 86400
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

openssl

OpenSSL support enabled
OpenSSL Library Version OpenSSL 3.0.13 30 Jan 2024
OpenSSL Header Version OpenSSL 3.0.13 30 Jan 2024
Openssl default config C:\Program Files\Common Files\SSL/openssl.cnf
DirectiveLocal ValueMaster Value
openssl.cafiled:/inetpub/wwwroot/svetluska/vendor/o2/sms-connector/src/et_sms_connector_ca.pemd:/inetpub/wwwroot/svetluska/vendor/o2/sms-connector/src/et_sms_connector_ca.pem
openssl.capathno valueno value

pcre

PCRE (Perl Compatible Regular Expressions) Support enabled
PCRE Library Version 10.40 2022-04-14
PCRE Unicode Version 14.0.0
PCRE JIT Support enabled
PCRE JIT Target x86 64bit (little endian + unaligned)
DirectiveLocal ValueMaster Value
pcre.backtrack_limit10000001000000
pcre.jitOnOn
pcre.recursion_limit100000100000

PDO

PDO supportenabled
PDO drivers mysql, sqlite

pdo_mysql

PDO Driver for MySQLenabled
Client API version mysqlnd 8.2.22

pdo_sqlite

PDO Driver for SQLite 3.xenabled
SQLite Library 3.39.2

Phar

Phar: PHP Archive supportenabled
Phar API version 1.1.1
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.
DirectiveLocal ValueMaster Value
phar.cache_listno valueno value
phar.readonlyOnOn
phar.require_hashOnOn

random

Version 8.2.22

readline

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

Reflection

Reflection enabled

session

Session Support enabled
Registered save handlers files user
Registered serializer handlers php_serialize php php_binary
DirectiveLocal ValueMaster Value
session.auto_startOffOff
session.cache_expire180180
session.cache_limiternocachenocache
session.cookie_domainno valueno value
session.cookie_httponlyOnOff
session.cookie_lifetime12096000
session.cookie_path//
session.cookie_samesiteLaxno value
session.cookie_secureOnOff
session.gc_divisor10001000
session.gc_maxlifetime12096001440
session.gc_probability11
session.lazy_writeOnOn
session.nameo2_foundation_formsPHPSESSID
session.referer_checkno valueno value
session.save_handlerfilesfiles
session.save_pathD:\inetpub\wwwroot\formulare.nadaceo2.cz/temp/sessions/d:/inetpub/temp/phpsession
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_modeOnOff
session.use_trans_sidOffOff

SimpleXML

SimpleXML support enabled
Schema support enabled

soap

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

SPL

SPL supportenabled
Interfaces 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
SQLite Library 3.39.2
DirectiveLocal ValueMaster Value
sqlite3.defensiveOnOn
sqlite3.extension_dirno valueno value

standard

Dynamic Library Support enabled
Internal Sendmail Support for Windows enabled
DirectiveLocal ValueMaster Value
assert.activeOnOn
assert.bailOffOff
assert.callbackno valueno value
assert.exceptionOnOn
assert.warningOnOn
auto_detect_line_endingsOffOff
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=
unserialize_max_depth40964096
url_rewriter.hostsno valueno value
url_rewriter.tagsform=form=
user_agentno valueno value

tokenizer

Tokenizer Support enabled

xml

XML Support active
XML Namespace Support active
libxml2 Version 2.10.3

xmlreader

XMLReader enabled

xmlwriter

XMLWriter enabled

zlib

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

Additional Modules

Module Name
array (1)
0 => array (7)
| 'name' => 'default output handler' | 'type' => 0 | 'flags' => 20592 | 'level' => 0 | 'chunk_size' => 4096 | 'buffer_size' => 8192 | 'buffer_used' => 3717

GET https://formulare.nadaceo2.cz/base.sign/?backlink=vqqv2&backlink2%5Bbacklink%5D=w83tz

Content-Type
''
Content-Length
'0'
X-Original-Url

X-F5-Forwarded-For
'18.119.235.79'
X-F5-Forwarded-Port
'443'
X-F5-Forwarded-Host
'formulare.nadaceo2.cz'
X-F5-Forwarded-Proto
'https'
User-Agent
'Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)'
Host
'formulare.nadaceo2.cz'
Cookie
'o2_foundation_forms=mng3ev87qajtfqtjp471vc7kkr; _nss=1; tracy-session=fbcc8761d5'
Accept-Encoding
'gzip, br, zstd, deflate'
Accept
'*/*'

$_GET

backlink
'vqqv2'
backlink2

$_POST

empty

$_COOKIE

o2_foundation_forms
'mng3ev87qajtfqtjp471vc7kkr'
_nss
'1'
tracy-session
'fbcc8761d5'

Code: 200

X-Powered-By
'Nette Framework 3'
Content-Type
'text/html; charset=utf-8'
X-Frame-Options
'SAMEORIGIN'
Set-Cookie
'_nss=1; path=/; secure; HttpOnly; SameSite=Strict'
Set-Cookie
'o2_foundation_forms=mng3ev87qajtfqtjp471vc7kkr; expires=Thu, 24 Oct 2024 11:20:44 GMT; Max-Age=1209600; path=/; secure; HttpOnly; SameSite=Lax'
Expires
'Thu, 19 Nov 1981 08:52:00 GMT'
Cache-Control
'no-store, no-cache, must-revalidate'
Pragma
'no-cache'
Vary
'X-Requested-With'

Headers have been sent, output started at ...\latte\templates-Sign-default.latte--f3a88c975d.php:89 source

79: echo $ʟ_input->getControlPart()->addAttributes(['class' => null])->attributes() /* line 24 */; 80: echo '> 81: </div> 82: </div> 83: </div> 84: <div class="o2-indent"> 85: <div class="o2-typo__align--center-all"> 86: <button type="submit" class="o2-btn o2-btn--primary o2-btn--full-width"'; 87: $ʟ_input = $_input = end($this->global->formsStack)["submit"]; 88: echo $ʟ_input->getControlPart()->addAttributes(['type' => null, 'class' => null])->attributes() /* line 30 */; 89: echo '> 90: <span class="o2-btn__text">Přihlásit se</span> 91: </button> 92: </div> 93: </div>