Notice: Undefined index: text

Notice

Undefined index: text search► skip error►

Source file

File: /www/wwwroot/desko/martin/temp/cache/latte/templates-About-default.latte--191b41cf8f.php:41

31: 32: 33: /** {block content} on line 1 */ 34: public function blockContent(array $ʟ_args): void 35: { 36: extract($this->params); 37: extract($ʟ_args); 38: unset($ʟ_args); 39: echo ' <div class="about content-area"> 40: '; 41: echo $content['text'] /* line 3 */; 42: echo ' 43: </div> 44: '; 45: }

Call stack

  1. .../latte/src/Latte/Runtime/Template.php:315 source  Template191b41cf8f->blockContent(arguments)

    305: 306: if (!$block) { 307: $hint = ($t = Latte\Helpers::getSuggestion($this->getBlockNames($layer), $name)) 308: ? ", did you mean '$t'?" 309: : '.'; 310: $name = $layer ? "$layer $name" : $name; 311: throw new Latte\RuntimeException("Cannot include undefined block '$name'$hint"); 312: } 313: 314: $this->filter( 315: function () use ($block, $params): void { reset($block->functions)($params); }, 316: $mod, 317: $block->contentType, 318: "block $name" 319: );
    $ʟ_args
    null
    
  2. .../latte/src/Latte/Runtime/Template.php:370 source  Latte\Runtime\Template->Latte\Runtime\{closure}()

    360: $block->functions = array_merge($block->functions, $functions); 361: } 362: 363: 364: /** 365: * @param string|\Closure|null $mod content-type name or modifier closure 366: */ 367: private function filter(callable $function, $mod, string $contentType, string $name): void 368: { 369: if ($mod === null || $mod === $contentType) { 370: $function(); 371: 372: } elseif ($mod instanceof \Closure) { 373: echo $mod($this->capture($function), $contentType); 374:
  3. .../latte/src/Latte/Runtime/Template.php:318 source  Latte\Runtime\Template->filter(arguments)

    308: ? ", did you mean '$t'?" 309: : '.'; 310: $name = $layer ? "$layer $name" : $name; 311: throw new Latte\RuntimeException("Cannot include undefined block '$name'$hint"); 312: } 313: 314: $this->filter( 315: function () use ($block, $params): void { reset($block->functions)($params); }, 316: $mod, 317: $block->contentType, 318: "block $name" 319: ); 320: } 321: 322:
    $function
    
    
    $mod
    "html" (4)
    
    $contentType
    "html" (4)
    
    $name
    "block content" (13)
    
  4. /www/wwwroot/desko/martin/temp/cache/latte/Front-templates-@layout.latte--187393b80e.php:462 source  Latte\Runtime\Template->renderBlock(arguments)

    452: 453: /** {snippet content} on line 98 */ 454: public function blockContent(array $ʟ_args): void 455: { 456: extract($this->params); 457: extract($ʟ_args); 458: unset($ʟ_args); 459: $this->global->snippetDriver->enter("content", 'static'); 460: try { 461: if ($this->hasBlock("content")) /* line 99 */ { 462: $this->renderBlock('content', [], 'html') /* line 100 */; 463: } 464: } 465: finally { 466: $this->global->snippetDriver->leave();
    $name
    "content" (7)
    
    $params
    array ()
    
    $mod
    "html" (4)
    
  5. .../latte/src/Latte/Runtime/Template.php:315 source  Template187393b80e->blockContent(arguments)

    305: 306: if (!$block) { 307: $hint = ($t = Latte\Helpers::getSuggestion($this->getBlockNames($layer), $name)) 308: ? ", did you mean '$t'?" 309: : '.'; 310: $name = $layer ? "$layer $name" : $name; 311: throw new Latte\RuntimeException("Cannot include undefined block '$name'$hint"); 312: } 313: 314: $this->filter( 315: function () use ($block, $params): void { reset($block->functions)($params); }, 316: $mod, 317: $block->contentType, 318: "block $name" 319: );
    $ʟ_args
    null
    
  6. .../latte/src/Latte/Runtime/Template.php:370 source  Latte\Runtime\Template->Latte\Runtime\{closure}()

    360: $block->functions = array_merge($block->functions, $functions); 361: } 362: 363: 364: /** 365: * @param string|\Closure|null $mod content-type name or modifier closure 366: */ 367: private function filter(callable $function, $mod, string $contentType, string $name): void 368: { 369: if ($mod === null || $mod === $contentType) { 370: $function(); 371: 372: } elseif ($mod instanceof \Closure) { 373: echo $mod($this->capture($function), $contentType); 374:
  7. .../latte/src/Latte/Runtime/Template.php:318 source  Latte\Runtime\Template->filter(arguments)

    308: ? ", did you mean '$t'?" 309: : '.'; 310: $name = $layer ? "$layer $name" : $name; 311: throw new Latte\RuntimeException("Cannot include undefined block '$name'$hint"); 312: } 313: 314: $this->filter( 315: function () use ($block, $params): void { reset($block->functions)($params); }, 316: $mod, 317: $block->contentType, 318: "block $name" 319: ); 320: } 321: 322:
    $function
    
    
    $mod
    null
    
    $contentType
    "html" (4)
    
    $name
    "block content" (13)
    
  8. /www/wwwroot/desko/martin/temp/cache/latte/Front-templates-@layout.latte--187393b80e.php:335 source  Latte\Runtime\Template->renderBlock(arguments)

    325: echo '">'; 326: $this->renderBlock('breadcrumbs', [], null, 'snippet') /* line 86 */; 327: echo '</div> 328: '; 329: $this->renderBlock('page-title', get_defined_vars()) /* line 93 */; 330: echo ' </div> 331: 332: <div id="'; 333: echo htmlspecialchars($this->global->snippetDriver->getHtmlId('content')); 334: echo '">'; 335: $this->renderBlock('content', [], null, 'snippet') /* line 98 */; 336: echo '</div> 337: </div> 338: </main> 339: ';
    $name
    "content" (7)
    
    $params
    array ()
    
    $mod
    null
    
    $layer
    "snippet" (7)
    
  9. .../latte/src/Latte/Runtime/Template.php:315 source  Template187393b80e->blockPage_content(arguments)

    305: 306: if (!$block) { 307: $hint = ($t = Latte\Helpers::getSuggestion($this->getBlockNames($layer), $name)) 308: ? ", did you mean '$t'?" 309: : '.'; 310: $name = $layer ? "$layer $name" : $name; 311: throw new Latte\RuntimeException("Cannot include undefined block '$name'$hint"); 312: } 313: 314: $this->filter( 315: function () use ($block, $params): void { reset($block->functions)($params); }, 316: $mod, 317: $block->contentType, 318: "block $name" 319: );
    $ʟ_args
    null
    
  10. .../latte/src/Latte/Runtime/Template.php:370 source  Latte\Runtime\Template->Latte\Runtime\{closure}()

    360: $block->functions = array_merge($block->functions, $functions); 361: } 362: 363: 364: /** 365: * @param string|\Closure|null $mod content-type name or modifier closure 366: */ 367: private function filter(callable $function, $mod, string $contentType, string $name): void 368: { 369: if ($mod === null || $mod === $contentType) { 370: $function(); 371: 372: } elseif ($mod instanceof \Closure) { 373: echo $mod($this->capture($function), $contentType); 374:
  11. .../latte/src/Latte/Runtime/Template.php:318 source  Latte\Runtime\Template->filter(arguments)

    308: ? ", did you mean '$t'?" 309: : '.'; 310: $name = $layer ? "$layer $name" : $name; 311: throw new Latte\RuntimeException("Cannot include undefined block '$name'$hint"); 312: } 313: 314: $this->filter( 315: function () use ($block, $params): void { reset($block->functions)($params); }, 316: $mod, 317: $block->contentType, 318: "block $name" 319: ); 320: } 321: 322:
    $function
    
    
    $mod
    null
    
    $contentType
    "html" (4)
    
    $name
    "block page-content" (18)
    
  12. /www/wwwroot/desko/martin/temp/cache/latte/Front-templates-@layout.latte--187393b80e.php:268 source  Latte\Runtime\Template->renderBlock(arguments)

    258: <source media="(max-width: 1240px)" srcset="'; 259: echo LR\Filters::escapeHtmlAttr($presenter->link(":Resizer:Resize:", Nelson\Resizer\Macros::prepareArguments(['front/img/header.png', 'c1296x', true]))); 260: echo '"> 261: <img alt="" class="page-background shrink" src="'; 262: echo LR\Filters::escapeHtmlAttr($presenter->link(":Resizer:Resize:", Nelson\Resizer\Macros::prepareArguments(['front/img/header.png', 'c1920x', true]))); 263: echo '"> 264: </picture> 265: '; 266: $this->renderBlock('page-header', get_defined_vars()) /* line 55 */; 267: echo "\n"; 268: $this->renderBlock('page-content', get_defined_vars()) /* line 83 */; 269: echo ' </div> 270: '; 271: $this->renderBlock('page-footer', get_defined_vars()) /* line 106 */; 272: echo ' </div>
    $name
    "page-content" (12)
    
    $params
    
    
  13. .../latte/src/Latte/Runtime/Template.php:315 source  Template187393b80e->blockPage(arguments)

    305: 306: if (!$block) { 307: $hint = ($t = Latte\Helpers::getSuggestion($this->getBlockNames($layer), $name)) 308: ? ", did you mean '$t'?" 309: : '.'; 310: $name = $layer ? "$layer $name" : $name; 311: throw new Latte\RuntimeException("Cannot include undefined block '$name'$hint"); 312: } 313: 314: $this->filter( 315: function () use ($block, $params): void { reset($block->functions)($params); }, 316: $mod, 317: $block->contentType, 318: "block $name" 319: );
    $ʟ_args
    null
    
  14. .../latte/src/Latte/Runtime/Template.php:370 source  Latte\Runtime\Template->Latte\Runtime\{closure}()

    360: $block->functions = array_merge($block->functions, $functions); 361: } 362: 363: 364: /** 365: * @param string|\Closure|null $mod content-type name or modifier closure 366: */ 367: private function filter(callable $function, $mod, string $contentType, string $name): void 368: { 369: if ($mod === null || $mod === $contentType) { 370: $function(); 371: 372: } elseif ($mod instanceof \Closure) { 373: echo $mod($this->capture($function), $contentType); 374:
  15. .../latte/src/Latte/Runtime/Template.php:318 source  Latte\Runtime\Template->filter(arguments)

    308: ? ", did you mean '$t'?" 309: : '.'; 310: $name = $layer ? "$layer $name" : $name; 311: throw new Latte\RuntimeException("Cannot include undefined block '$name'$hint"); 312: } 313: 314: $this->filter( 315: function () use ($block, $params): void { reset($block->functions)($params); }, 316: $mod, 317: $block->contentType, 318: "block $name" 319: ); 320: } 321: 322:
    $function
    
    
    $mod
    null
    
    $contentType
    "html" (4)
    
    $name
    "block page" (10)
    
  16. /www/wwwroot/desko/martin/temp/cache/latte/Front-templates-@layout.latte--187393b80e.php:154 source  Latte\Runtime\Template->renderBlock(arguments)

    144: echo ' 145: '; 146: $this->renderBlock('inline-js', get_defined_vars()) /* line 41 */; 147: echo ' 148: </head> 149: '; 150: $this->createTemplate('inc.codes.latte', $this->params, 'include')->renderToContentType('html') /* line 43 */; 151: $this->createTemplate('inc.cookieconsent.latte', $this->params, 'include')->renderToContentType('html') /* line 44 */; 152: echo '<body> 153: '; 154: $this->renderBlock('page', get_defined_vars()) /* line 46 */; 155: echo ' 156: <div class="layer"> 157: <div class="layer-box content-area"> 158: <div class="flash-messages"';
    $name
    "page" (4)
    
    $params
    
    
  17. .../latte/src/Latte/Runtime/Template.php:175 source  Template187393b80e->main()

    165: /** 166: * Renders template. 167: * @internal 168: */ 169: public function render(?string $block = null): void 170: { 171: $level = ob_get_level(); 172: try { 173: $this->prepare(); 174: if (!$this->doRender($block)) { 175: $this->main(); 176: } 177: 178: } catch (\Throwable $e) { 179: while (ob_get_level() > $level) {
  18. .../latte/src/Latte/Runtime/Template.php:209 source  Latte\Runtime\Template->render(arguments)

    199: 200: if ($this->referenceType === 'import') { 201: if ($this->parentName) { 202: throw new Latte\RuntimeException('Imported template cannot use {extends} or {layout}, use {import}'); 203: } 204: 205: } elseif ($this->parentName) { // extends 206: ob_start(function () {}); 207: $this->params = $this->main(); 208: ob_end_clean(); 209: $this->createTemplate($this->parentName, $this->params, 'extends')->render($block); 210: 211: } elseif ($block !== null) { // single block rendering 212: $this->renderBlock($block, $this->params); 213:
    $block
    null
    
  19. .../latte/src/Latte/Runtime/Template.php:174 source  Latte\Runtime\Template->doRender(arguments)

    164: 165: /** 166: * Renders template. 167: * @internal 168: */ 169: public function render(?string $block = null): void 170: { 171: $level = ob_get_level(); 172: try { 173: $this->prepare(); 174: if (!$this->doRender($block)) { 175: $this->main(); 176: } 177: 178: } catch (\Throwable $e) {
    $block
    null
    
  20. .../vendor/latte/latte/src/Latte/Engine.php:102 source  Latte\Runtime\Template->render(arguments)

    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
    
  21. .../Bridges/ApplicationLatte/Template.php:52 source  Latte\Engine->render(arguments)

    42: return $this->latte; 43: } 44: 45: 46: /** 47: * Renders template to output. 48: * @return void 49: */ 50: public function render($file = null, array $params = []) 51: { 52: $this->latte->render($file ?: $this->file, $params + $this->params); 53: } 54: 55: 56: /**
    $name
    "/www/wwwroot/desko/martin/app/modules/Front/templates/About/default.latte" (73)
    
    $params
    
    
  22. .../Application/Responses/TextResponse.php:49 source  Nette\Bridges\ApplicationLatte\Template->render()

    39: } 40: 41: 42: /** 43: * Sends response to output. 44: * @return void 45: */ 46: public function send(Nette\Http\IRequest $httpRequest, Nette\Http\IResponse $httpResponse) 47: { 48: if ($this->source instanceof Nette\Application\UI\ITemplate) { 49: $this->source->render(); 50: 51: } else { 52: echo $this->source; 53: }
  23. .../src/Application/Application.php:157 source  Nette\Application\Responses\TextResponse->send(arguments)

    147: } 148: $this->onPresenter($this, $this->presenter); 149: $response = $this->presenter->run(clone $request); 150: 151: if ($response instanceof Responses\ForwardResponse) { 152: $request = $response->getRequest(); 153: goto process; 154: 155: } elseif ($response) { 156: $this->onResponse($this, $response); 157: $response->send($this->httpRequest, $this->httpResponse); 158: } 159: } 160: 161:
    $httpRequest
    
    
    $httpResponse
    
    
  24. .../src/Application/Application.php:83 source  Nette\Application\Application->processRequest(arguments)

    73: 74: 75: /** 76: * Dispatch a HTTP request to a front controller. 77: * @return void 78: */ 79: public function run() 80: { 81: try { 82: $this->onStartup($this); 83: $this->processRequest($this->createInitialRequest()); 84: $this->onShutdown($this); 85: 86: } catch (\Exception $e) { 87: } catch (\Throwable $e) {
    $request
    
    
  25. /www/wwwroot/desko/martin/www/index.php:21 source  Nette\Application\Application->run()

    11: // inspired by: https://gist.github.com/fprochazka/648eb6b0fcca406a16cd 12: if (!empty($_SERVER['HTTPS']) && $_SERVER['HTTPS'] !== 'off') { 13: $_SERVER['SERVER_PORT'] = 443; 14: } 15: 16: require_once __DIR__ . '/../vendor/autoload.php'; 17: 18: App\Bootstrap::boot() 19: ->createContainer() 20: ->getByType(Nette\Application\Application::class) 21: ->run(); 22:

Variables

$content
array ()
$user

$baseUrl
"https://desko.tahak.net" (23)
$baseUri
"https://desko.tahak.net" (23)
$basePath
""
$flashes
array ()
$control

$presenter

$_control

$_presenter

$netteCacheStorage

$_project

$_isDevEnv
true
$_page

$global

$documents
array ()
$politics
array ()
$certificates

$_l

$_g

Nette Application

Requests


Presenter


		

Environment

$_SERVER

USER
"www" (3)
HOME
"/home/www" (9)
SCRIPT_NAME
"/index.php" (10)
REQUEST_URI
"/en/about-us/" (13)
QUERY_STRING
""
REQUEST_METHOD
"GET" (3)
SERVER_PROTOCOL
"HTTP/2.0" (8)
GATEWAY_INTERFACE
"CGI/1.1" (7)
REDIRECT_URL
"/en/about-us/" (13)
REMOTE_PORT
"19628" (5)
SCRIPT_FILENAME
"/www/wwwroot/desko/martin/www/index.php" (39)
SERVER_ADMIN
"webmaster@example.com" (21)
CONTEXT_DOCUMENT_ROOT
"/www/wwwroot/desko/martin/www" (29)
CONTEXT_PREFIX
""
REQUEST_SCHEME
"https" (5)
DOCUMENT_ROOT
"/www/wwwroot/desko/martin/www" (29)
REMOTE_ADDR
"13.58.121.29" (12)
SERVER_PORT
443
SERVER_ADDR
"194.182.87.67" (13)
SERVER_NAME
"desko.tahak.net" (15)
SERVER_SOFTWARE
"Apache" (6)
SERVER_SIGNATURE
"<address>Apache Server at desko.tahak.net Port 443</address>
" (61)
LD_LIBRARY_PATH
"/www/server/apache/lib" (22)
PATH
"/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/bin" (70)
HTTP_HOST
"desko.tahak.net" (15)
HTTP_COOKIE
"PHPSESSID=8s25a1nphl97nfrlpec7qc7nrj" (36)
HTTP_REFERER
"https://desko.tahak.net/en/about-us" (35)
HTTP_ACCEPT_ENCODING
"gzip, br, zstd, deflate" (23)
HTTP_USER_AGENT
"Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" (103)
HTTP_ACCEPT
"*/*" (3)
proxy-nokeepalive
"1"
H2_STREAM_TAG
"940419-165-5" (12)
H2_STREAM_ID
"5"
H2_PUSHED_ON
""
H2_PUSHED
""
H2_PUSH
"off" (3)
H2PUSH
"off" (3)
HTTP2
"on" (2)
SSL_TLS_SNI
"desko.tahak.net" (15)
HTTPS
"on" (2)
REDIRECT_STATUS
"200" (3)
REDIRECT_H2_STREAM_TAG
"940419-165-5" (12)
REDIRECT_H2_STREAM_ID
"5"
REDIRECT_H2_PUSHED_ON
""
REDIRECT_H2_PUSHED
""
REDIRECT_H2_PUSH
"off" (3)
REDIRECT_H2PUSH
"off" (3)
REDIRECT_HTTP2
"on" (2)
REDIRECT_SSL_TLS_SNI
"desko.tahak.net" (15)
REDIRECT_HTTPS
"on" (2)
FCGI_ROLE
"RESPONDER" (9)
PHP_SELF
"/index.php" (10)
REQUEST_TIME_FLOAT
1745488043.347823
REQUEST_TIME
1745488043

$_SESSION

__NFNette Session
_tracy

Nette Session

Nette.Http.UserStorage/

Constants

FILTER_VALIDATE_BOOL
258
MYSQLI_REFRESH_REPLICA
64
NBSP
" " (2)

Configuration options


Configuration

bcmath

BCMath support enabled
DirectiveLocal ValueMaster Value
bcmath.scale00

cgi-fcgi

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

Core

PHP Version 7.4.33
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_functionspassthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenvpassthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv
display_errorsOnOn
display_startup_errorsOffOff
doc_rootno valueno value
docref_extno valueno value
docref_rootno valueno value
enable_dlOffOff
enable_post_data_readingOnOn
error_append_stringno valueno value
error_logno valueno value
error_prepend_stringno valueno value
error_reporting3276732759
expose_phpOffOff
extension_dir/www/server/php/74/lib/php/extensions/no-debug-non-zts-20190902/www/server/php/74/lib/php/extensions/no-debug-non-zts-20190902
file_uploadsOnOn
hard_timeout22
highlight.comment#998; font-style: italic#FF8000
highlight.default#000#0000BB
highlight.html#06B#000000
highlight.keyword#D24; font-weight: bold#007700
highlight.string#080#DD0000
html_errorsOffOn
ignore_repeated_errorsOffOff
ignore_repeated_sourceOffOff
ignore_user_abortOffOff
implicit_flushOffOff
include_path.:.:
input_encodingno valueno value
internal_encodingno valueno value
log_errorsOffOn
log_errors_max_len10241024
mail.add_x_headerOffOff
mail.force_extra_parametersno valueno value
mail.logno valueno value
max_execution_time300300
max_file_uploads2020
max_input_nesting_level6464
max_input_time6060
max_input_vars10001000
memory_limit2048M2048M
open_basedirno valueno value
output_buffering40964096
output_encodingno valueno value
output_handlerno valueno value
post_max_size1024M1024M
precision1414
realpath_cache_size4096K4096K
realpath_cache_ttl120120
register_argc_argvOffOff
report_memleaksOnOn
report_zend_debugOnOn
request_orderGPGP
sendmail_fromno valueno value
sendmail_path/usr/sbin/sendmail -t -i/usr/sbin/sendmail -t -i
serialize_precision-1-1
short_open_tagOnOn
SMTPlocalhostlocalhost
smtp_port2525
sys_temp_dirno valueno value
syslog.facilityLOG_USERLOG_USER
syslog.filterno-ctrlno-ctrl
syslog.identphpphp
track_errorsOffOff
unserialize_callback_funcno valueno value
upload_max_filesize1024M1024M
upload_tmp_dirno valueno value
user_dirno valueno value
user_ini.cache_ttl300300
user_ini.filename.user.ini.user.ini
variables_orderGPCSGPCS
xmlrpc_error_number00
xmlrpc_errorsOffOff
zend.assertions-1-1
zend.detect_unicodeOnOn
zend.enable_gcOnOn
zend.exception_ignore_argsOffOn
zend.multibyteOffOff
zend.script_encodingno valueno value
zend.signal_checkOffOff

ctype

ctype functions enabled

curl

cURL support enabled
cURL Information 7.70.0
Age 6
Features
AsynchDNS Yes
CharConv No
Debug No
GSS-Negotiate No
IDN No
IPv6 Yes
krb4 No
Largefile Yes
libz Yes
NTLM Yes
NTLMWB Yes
SPNEGO No
SSL Yes
SSPI No
TLS-SRP Yes
HTTP2 No
GSSAPI No
KERBEROS5 No
UNIX_SOCKETS Yes
PSL No
HTTPS_PROXY Yes
MULTI_SSL No
BROTLI Yes
Protocols dict, file, ftp, ftps, gopher, http, https, imap, imaps, pop3, pop3s, rtsp, smb, smbs, smtp, smtps, telnet, tftp
Host x86_64-pc-linux-gnu
SSL Version OpenSSL/1.0.2u
ZLib Version 1.2.11
DirectiveLocal ValueMaster Value
curl.cainfo/etc/ssl/certs/ca-certificates.crt/etc/ssl/certs/ca-certificates.crt

date

date/time support enabled
timelib version 2018.04
"Olson" Timezone Database Version 2022.1
Timezone Database internal
Default timezone Europe/Prague
DirectiveLocal ValueMaster Value
date.default_latitude31.766731.7667
date.default_longitude35.233335.2333
date.sunrise_zenith90.58333390.583333
date.sunset_zenith90.58333390.583333
date.timezonePRCPRC

dom

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

fileinfo

fileinfo support enabled
libmagic 537

filter

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

ftp

FTP support enabled
FTPS support enabled

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.37
WBMP Support enabled
XBM Support enabled
WebP Support enabled
BMP Support enabled
TGA Read Support enabled
DirectiveLocal ValueMaster Value
gd.jpeg_ignore_warning11

gettext

GetText Support enabled

hash

hash support enabled
Hashing Engines md2 md4 md5 sha1 sha224 sha256 sha384 sha512/224 sha512/256 sha512 sha3-224 sha3-256 sha3-384 sha3-512 ripemd128 ripemd160 ripemd256 ripemd320 whirlpool tiger128,3 tiger160,3 tiger192,3 tiger128,4 tiger160,4 tiger192,4 snefru snefru256 gost gost-crypto adler32 crc32 crc32b crc32c fnv132 fnv1a32 fnv164 fnv1a64 joaat haval128,3 haval160,3 haval192,3 haval224,3 haval256,3 haval128,4 haval160,4 haval192,4 haval224,4 haval256,4 haval128,5 haval160,5 haval192,5 haval224,5 haval256,5
MHASH support Enabled
MHASH API Version Emulated Support

iconv

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

imagick

imagick moduleenabled
imagick module version 3.4.4
imagick classes Imagick, ImagickDraw, ImagickPixel, ImagickPixelIterator, ImagickKernel
Imagick compiled with ImageMagick version ImageMagick 6.9.11-60 Q16 x86_64 2021-01-25 https://imagemagick.org
Imagick using ImageMagick library version ImageMagick 6.9.11-60 Q16 x86_64 2021-01-25 https://imagemagick.org
ImageMagick copyright (C) 1999-2021 ImageMagick Studio LLC
ImageMagick release date 2021-01-25
ImageMagick number of supported formats: 247
ImageMagick supported formats 3FR, 3G2, 3GP, AAI, AI, APNG, ART, ARW, AVI, AVIF, AVS, BGR, BGRA, BGRO, BIE, BMP, BMP2, BMP3, BRF, CAL, CALS, CANVAS, CAPTION, CIN, CIP, CLIP, CMYK, CMYKA, CR2, CR3, CRW, CUR, CUT, DATA, DCM, DCR, DCX, DDS, DFONT, DJVU, DNG, DOT, DPX, DXT1, DXT5, EPDF, EPI, EPS, EPS2, EPS3, EPSF, EPSI, EPT, EPT2, EPT3, ERF, EXR, FAX, FILE, FITS, FRACTAL, FTP, FTS, G3, G4, GIF, GIF87, GRADIENT, GRAY, GRAYA, GROUP4, GV, H, HALD, HDR, HEIC, HISTOGRAM, HRZ, HTM, HTML, HTTP, HTTPS, ICB, ICO, ICON, IIQ, INFO, INLINE, IPL, ISOBRL, ISOBRL6, J2C, J2K, JBG, JBIG, JNG, JNX, JP2, JPC, JPE, JPEG, JPG, JPM, JPS, JPT, JSON, K25, KDC, LABEL, M2V, M4V, MAC, MAGICK, MAP, MASK, MAT, MATTE, MEF, MIFF, MKV, MNG, MONO, MOV, MP4, MPC, MPG, MRW, MSL, MSVG, MTV, MVG, NEF, NRW, NULL, ORF, OTB, OTF, PAL, PALM, PAM, PANGO, PATTERN, PBM, PCD, PCDS, PCL, PCT, PCX, PDB, PDF, PDFA, PEF, PES, PFA, PFB, PFM, PGM, PGX, PICON, PICT, PIX, PJPEG, PLASMA, PNG, PNG00, PNG24, PNG32, PNG48, PNG64, PNG8, PNM, POCKETMOD, PPM, PREVIEW, PS, PS2, PS3, PSB, PSD, PTIF, PWP, RADIAL-GRADIENT, RAF, RAS, RAW, RGB, RGBA, RGBO, RGF, RLA, RLE, RMF, RW2, SCR, SCT, SFW, SGI, SHTML, SIX, SIXEL, SPARSE-COLOR, SR2, SRF, STEGANO, SUN, SVG, SVGZ, TEXT, TGA, THUMBNAIL, TIFF, TIFF64, TILE, TIM, TTC, TTF, TXT, UBRL, UBRL6, UIL, UYVY, VDA, VICAR, VID, VIDEO, VIFF, VIPS, VST, WBMP, WEBM, WEBP, WMF, WMV, WMZ, WPG, X, X3F, XBM, XC, XCF, XPM, XPS, XV, XWD, YCbCr, YCbCrA, YUV
DirectiveLocal ValueMaster Value
imagick.locale_fix00
imagick.progress_monitor00
imagick.skip_version_check00

intl

Internationalization supportenabled
ICU version 70.1
ICU Data version 70.1
ICU TZData version 2024b
ICU Unicode version 14.0
DirectiveLocal ValueMaster Value
intl.default_localeno valueno value
intl.error_level00
intl.use_exceptions00

json

json support enabled

libxml

libXML support active
libXML Compiled Version 2.9.13
libXML Loaded Version 20913
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.7
DirectiveLocal ValueMaster Value
mbstring.detect_orderno valueno value
mbstring.encoding_translationOffOff
mbstring.func_overload00
mbstring.http_inputno valueno value
mbstring.http_outputno valueno value
mbstring.http_output_conv_mimetypes^(text/|application/xhtml\+xml)^(text/|application/xhtml\+xml)
mbstring.internal_encodingno valueno value
mbstring.languageneutralneutral
mbstring.regex_retry_limit10000001000000
mbstring.regex_stack_limit100000100000
mbstring.strict_detectionOffOff
mbstring.substitute_characterno valueno value

memcached

memcached supportenabled
Version 3.2.0
libmemcached version 1.0.18
SASL support yes
Session support yes
igbinary support no
json support no
msgpack support no
DirectiveLocal ValueMaster Value
memcached.compression_factor1.31.3
memcached.compression_threshold20002000
memcached.compression_typefastlzfastlz
memcached.default_binary_protocolOffOff
memcached.default_connect_timeout00
memcached.default_consistent_hashOffOff
memcached.serializerphpphp
memcached.sess_binary_protocolOnOn
memcached.sess_connect_timeout00
memcached.sess_consistent_hashOnOn
memcached.sess_consistent_hash_typeketamaketama
memcached.sess_lock_expire00
memcached.sess_lock_max_waitnot setnot set
memcached.sess_lock_retries55
memcached.sess_lock_waitnot setnot set
memcached.sess_lock_wait_max150150
memcached.sess_lock_wait_min150150
memcached.sess_lockingOnOn
memcached.sess_number_of_replicas00
memcached.sess_persistentOffOff
memcached.sess_prefixmemc.sess.key.memc.sess.key.
memcached.sess_randomize_replica_readOffOff
memcached.sess_remove_failed_serversOffOff
memcached.sess_sasl_passwordno valueno value
memcached.sess_sasl_usernameno valueno value
memcached.sess_server_failure_limit00
memcached.store_retry_count00

mysqli

MysqlI Supportenabled
Client API library version mysqlnd 7.4.33
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.max_linksUnlimitedUnlimited
mysqli.max_persistentUnlimitedUnlimited
mysqli.reconnectOffOff
mysqli.rollback_on_cached_plinkOffOff

mysqlnd

mysqlndenabled
Version mysqlnd 7.4.33
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 pdo_mysql,mysqli

openssl

OpenSSL support enabled
OpenSSL Library Version OpenSSL 1.0.2u 20 Dec 2019
OpenSSL Header Version OpenSSL 1.0.2u 20 Dec 2019
Openssl default config /usr/local/openssl/openssl.cnf
DirectiveLocal ValueMaster Value
openssl.cafile/etc/ssl/certs/ca-certificates.crt/etc/ssl/certs/ca-certificates.crt
openssl.capathno valueno value

pcntl

pcntl supportenabled

pcre

PCRE (Perl Compatible Regular Expressions) Support enabled
PCRE Library Version 10.35 2020-05-09
PCRE Unicode Version 13.0.0
PCRE JIT Support enabled
PCRE JIT Target x86 64bit (little endian + unaligned)
DirectiveLocal ValueMaster Value
pcre.backtrack_limit10000001000000
pcre.jit11
pcre.recursion_limit100000100000

PDO

PDO supportenabled
PDO drivers sqlite, mysql

pdo_mysql

PDO Driver for MySQLenabled
Client API version mysqlnd 7.4.33
DirectiveLocal ValueMaster Value
pdo_mysql.default_socket/tmp/mysql.sock/tmp/mysql.sock

pdo_sqlite

PDO Driver for SQLite 3.xenabled
SQLite Library 3.37.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 disabled (install ext/bz2)
Native OpenSSL support enabled
Phar based on pear/PHP_Archive, original concept by Davey Shafik.
Phar fully realized by Gregory Beaver and Marcus Boerger.
Portions of tar implementation Copyright (c) 2003-2009 Tim Kientzle.
DirectiveLocal ValueMaster Value
phar.cache_listno valueno value
phar.readonlyOnOn
phar.require_hashOnOn

posix

POSIX support enabled

Reflection

Reflection enabled

session

Session Support enabled
Registered save handlers files user memcached
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_httponly1no value
session.cookie_lifetime12096000
session.cookie_path//
session.cookie_samesiteno valueno value
session.cookie_secure10
session.gc_divisor10001000
session.gc_maxlifetime12096001440
session.gc_probability11
session.lazy_writeOnOn
session.namePHPSESSIDPHPSESSID
session.referer_checkno valueno value
session.save_handlerfilesfiles
session.save_path/www/wwwroot/desko/martin/app/../temp/sessionsno value
session.serialize_handlerphpphp
session.sid_bits_per_character55
session.sid_length2626
session.upload_progress.cleanupOnOn
session.upload_progress.enabledOnOn
session.upload_progress.freq1%1%
session.upload_progress.min_freq11
session.upload_progress.namePHP_SESSION_UPLOAD_PROGRESSPHP_SESSION_UPLOAD_PROGRESS
session.upload_progress.prefixupload_progress_upload_progress_
session.use_cookies11
session.use_only_cookies11
session.use_strict_mode00
session.use_trans_sid00

shmop

shmop support enabled

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_enabled11
soap.wsdl_cache_limit55
soap.wsdl_cache_ttl8640086400

sockets

Sockets Support enabled

sodium

sodium supportenabled
libsodium headers version 1.0.18
libsodium library version 1.0.18

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.37.2
DirectiveLocal ValueMaster Value
sqlite3.defensive11
sqlite3.extension_dirno valueno value

standard

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

sysvsem

sysvsem support enabled

tokenizer

Tokenizer Support enabled

xml

XML Support active
XML Namespace Support active
libxml2 Version 2.9.13

xmlreader

XMLReader enabled

xmlrpc

core library version xmlrpc-epi v. 0.51
author Dan Libby
homepage http://xmlrpc-epi.sourceforge.net
open sourced by Epinions.com

xmlwriter

XMLWriter enabled

zip

Zip enabled
Zip version 1.15.6
Libzip headers version 1.7.3
Libzip library version 1.7.3

zlib

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

Additional Modules

Module Name

HTTP request

URL

https://desko.tahak.net/en/about-us/

Headers

Hostdesko.tahak.net
CookiePHPSESSID=8s25a1nphl97nfrlpec7qc7nrj
Refererhttps://desko.tahak.net/en/about-us
Accept-Encodinggzip, br, zstd, deflate
User-AgentMozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)
Accept*/*

$_GET

empty

$_POST

empty

$_COOKIE

PHPSESSID
"8s25a1nphl97nfrlpec7qc7nrj" (26)

HTTP response

Headers

Content-Typetext/html; charset=utf-8
X-Frame-OptionsSAMEORIGIN
Content-Security-Policyscript-src 'nonce-iukG8DRlJFfmp7V8T1Mz2Q==' 'strict-dynamic' * 'unsafe-inline';
Set-CookiePHPSESSID=8s25a1nphl97nfrlpec7qc7nrj; expires=Thu, 08-May-2025 09:47:23 GMT; Max-Age=1209600; path=/; secure; HttpOnly
ExpiresThu, 19 Nov 1981 08:52:00 GMT
Cache-Controlno-store, no-cache, must-revalidate
Pragmano-cache
VaryX-Requested-With