monit
  • Automation and digitalization
    • Marketing
      Digital signage, on-line MKT, CRM, CMS, etc.
    • Sales
      Automation of sales teams, B2B, B2C, B2E
    • Production / Warehouse / Logistics
      Planning, controlling, monitoring, optimizing, etc.
    • Human Resources (HR)
      Onboarding, education, testing, and legal 
    • Accounting / Administrative
      Data extraction, approval workflow, DMS, etc.
  • MOBILESYSTEM platform
  • About us
  • Career
  • Contact details
  • Tailor-made solutions
  • CZ

Error: Call to a member function getArea() on null 

Error

Call to a member function getArea() on null search►

Source file

  • PHP
  • Latte

File: .../latte/templates-Areas-detail.latte--e42418d940.php:67

57: /** {block content} on line 4 */ 58: public function blockContent(array $ʟ_args): void 59: { 60: extract($this->params); 61: extract($ʟ_args); 62: unset($ʟ_args); 63: 64: echo ' <section class="main-content padded"> 65: <div class="back-link"> 66: '; 67: if ($AreaDetail->getArea()->getParent()) /* line 7 */ { 68: echo ' <a href="'; 69: echo LR\Filters::escapeHtmlAttr($this->global->uiControl->link(':Areas:overview', ['area_link' => $AreaDetail->getArea()->getParent()->getLink()])) /* line 8 */; 70: echo '"> 71: <i class="i- i-read-more-arrow"></i>';

File: .../monit.dev.cloud.monit.cz/app/Presenters/templates/Areas/detail.latte:7

1: {varType App\CmsModule\Model\AreaDetail $AreaDetail} 2: {block contentClasses}{include parent} areaDetail{/block} 3: {varType App\CmsModule\Model\AreaOverview $MainArea} 4: {block content} 5: <section class="main-content padded"> 6: <div class="back-link"> 7: {if $AreaDetail->getArea()->getParent()} 8: <a n:href=":Areas:overview area_link => $AreaDetail->getArea()->getParent()->getLink()"> 9: <i class="i- i-read-more-arrow"></i>{$MainArea->getTitle()} 10: </a> 11: {else} 12: <a n:href=":Areas:default"><i class="i- i-read-more-arrow"></i>{$MainArea->getTitle()}</a> 13: {/if} 14: </div> 15: <h1>{$AreaDetail->getTitle()}</h1>

Call stack

.../monit.dev.cloud.monit.cz/vendor/latte/latte/src/Latte/Runtime/Template.php:141
Template_e42418d940::blockContent (...)
131: 132: if (!$block) { 133: $hint = $layer && ($t = Latte\Helpers::getSuggestion($this->getBlockNames($layer), $name)) 134: ? ", did you mean '$t'?" 135: : '.'; 136: $name = $layer ? "$layer $name" : $name; 137: throw new Latte\RuntimeException("Cannot include undefined block '$name'$hint"); 138: } 139: 140: $this->filter( 141: fn() => reset($block->functions)($params), 142: $mod, 143: $block->contentType, 144: "block $name", 145: );
$ʟ_args
null
.../monit.dev.cloud.monit.cz/vendor/latte/latte/src/Latte/Runtime/Template.php:217
Latte\Runtime\Template::Latte\Runtime\{closure} ()
207: return $child; 208: } 209: 210: 211: /** 212: * @param string|\Closure|null $targetType content-type name or modifier closure 213: */ 214: private function filter(callable $producer, string|\Closure|null $targetType, string $contentType, string $name): void 215: { 216: if ($targetType === null || $targetType === $contentType) { 217: $producer(); 218: 219: } elseif ($targetType instanceof \Closure) { 220: echo $targetType($this->capture($producer), $contentType); 221:
.../monit.dev.cloud.monit.cz/vendor/latte/latte/src/Latte/Runtime/Template.php:140
Latte\Runtime\Template::filter (...)
130: : ($this->blocks[self::LayerLocal][$name] ?? $this->blocks[self::LayerTop][$name] ?? null); 131: 132: if (!$block) { 133: $hint = $layer && ($t = Latte\Helpers::getSuggestion($this->getBlockNames($layer), $name)) 134: ? ", did you mean '$t'?" 135: : '.'; 136: $name = $layer ? "$layer $name" : $name; 137: throw new Latte\RuntimeException("Cannot include undefined block '$name'$hint"); 138: } 139: 140: $this->filter( 141: fn() => reset($block->functions)($params), 142: $mod, 143: $block->contentType, 144: "block $name",
$producer

$targetType
'html'
$contentType
'html'
$name
'block content'
.../Presenters-templates-@layout.latte--c9f43b0bed.php:171
Latte\Runtime\Template::renderBlock (...)
  • PHP
  • Latte
161: return LR\Filters::convertTo($ʟ_fi, 'html/attr', $s); 162: }) /* line 54 */; 163: echo '"> 164: <div class="side-blob-wrapper"> 165: <div class="side-blob left"> 166: </div> 167: <div class="side-blob right"> 168: </div> 169: </div> 170: '; 171: $this->renderBlock('content', [], 'html') /* line 61 */; 172: echo ' </div> 173: '; 174: $this->createTemplate('footer.latte', $this->params, 'include')->renderToContentType('html') /* line 63 */; 175: echo "\n";
51: <div n:foreach="$flashes as $flash" n:class="flash, $flash->type">{$flash->message}</div> 52: 53: {include 'header.latte'} 54: <div id="content" class="{block contentClasses}{/block}"> 55: <div class="side-blob-wrapper"> 56: <div class="side-blob left"> 57: </div> 58: <div class="side-blob right"> 59: </div> 60: </div> 61: {include content} 62: </div> 63: {include 'footer.latte'} 64: 65: {block scripts}
$name
'content'
$params
array (0)
$mod
'html'
.../monit.dev.cloud.monit.cz/vendor/latte/latte/src/Latte/Runtime/Template.php:110
Template_c9f43b0bed::main (...)
100: } 101: 102: } elseif ($this->parentName) { // extends 103: $this->params = $params; 104: $this->createTemplate($this->parentName, $params, 'extends')->render($block); 105: 106: } elseif ($block !== null) { // single block rendering 107: $this->renderBlock($block, $this->params); 108: 109: } else { 110: $this->main($params); 111: } 112: } 113: 114:
$ʟ_args
null
.../monit.dev.cloud.monit.cz/vendor/latte/latte/src/Latte/Runtime/Template.php:104
Latte\Runtime\Template::render (...)
94: $this->parentName = ($this->global->coreParentFinder)($this); 95: } 96: 97: if ($this->referenceType === 'import') { 98: if ($this->parentName) { 99: throw new Latte\RuntimeException('Imported template cannot use {extends} or {layout}, use {import}'); 100: } 101: 102: } elseif ($this->parentName) { // extends 103: $this->params = $params; 104: $this->createTemplate($this->parentName, $params, 'extends')->render($block); 105: 106: } elseif ($block !== null) { // single block rendering 107: $this->renderBlock($block, $this->params); 108:
$block
null
.../monit.dev.cloud.monit.cz/vendor/latte/latte/src/Latte/Engine.php:77
Latte\Runtime\Template::render (...)
67: 68: 69: /** 70: * Renders template to output. 71: * @param object|mixed[] $params 72: */ 73: public function render(string $name, object|array $params = [], ?string $block = null): void 74: { 75: $template = $this->createTemplate($name, $this->processParams($params)); 76: $template->global->coreCaptured = false; 77: $template->render($block); 78: } 79: 80: 81: /**
$block
null
.../application/src/Bridges/ApplicationLatte/Template.php:46
Latte\Engine::render (...)
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
'/var/www/dev/monit.dev.cloud.monit.cz/app/Presenters/templates/Areas/detail.latte'
$params

.../application/src/Application/Responses/TextResponse.php:50
Nette\Bridges\ApplicationLatte\Template::render ()
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: }
.../vendor/nette/application/src/Application/Application.php:171
Nette\Application\Responses\TextResponse::send (...)
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

.../vendor/nette/application/src/Application/Application.php:90
Nette\Application\Application::processRequest (...)
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

.../var/www/dev/monit.dev.cloud.monit.cz/www/index.php:7
Nette\Application\Application::run ()
1: <?php 2: 3: require __DIR__ . '/../app/Bootstrap.php'; 4: 5: App\Bootstrap::boot() 6: ->getByType(\Nette\Application\Application::class) 7: ->run();

Nette Application

Requests


Presenter


			

Environment

  • $_SERVER
  • $_SESSION
  • Constants
  • Configuration
  • Output buffers
TEMP
'/var/www/tmp/dev/'
TMPDIR
'/var/www/tmp/dev/'
TMP
'/var/www/tmp/dev/'
PATH
'/usr/local/bin:/usr/bin:/bin'
USER
'dev'
HOME
'/var/www/dev/'
HTTP_X_FORWARDED_FOR
'216.73.217.2'
HTTP_X_FORWARDED_PROTO
'https'
HTTP_HOST
'monit.dev.cloud.monit.cz'
HTTP_ACCEPT_ENCODING
'gzip, br, zstd, deflate'
HTTP_COOKIE
'tracy-session=b526d37b4d; _nss=1'
HTTP_USER_AGENT
'Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)'
HTTP_ACCEPT
'*/*'
PATH_INFO
''
SCRIPT_FILENAME
'/var/www/dev/monit.dev.cloud.monit.cz/www/index.php'
REDIRECT_STATUS
'200'
SERVER_NAME
'monit.dev.cloud.monit.cz'
SERVER_PORT
'80'
SERVER_ADDR
'10.2.81.90'
REMOTE_PORT
'20264'
REMOTE_ADDR
'10.2.81.70'
SERVER_SOFTWARE
'nginx/1.26.3'
GATEWAY_INTERFACE
'CGI/1.1'
SERVER_PROTOCOL
'HTTP/1.1'
DOCUMENT_ROOT
'/var/www/dev/monit.dev.cloud.monit.cz'
DOCUMENT_URI
'/www/index.php'
REQUEST_URI
'/en/automation-digitalization/obchod/obchodni-tym-v-terenu'
SCRIPT_NAME
'/www/index.php'
CONTENT_LENGTH
''
CONTENT_TYPE
''
REQUEST_METHOD
'GET'
QUERY_STRING
''
FCGI_ROLE
'RESPONDER'
PHP_SELF
'/www/index.php'
REQUEST_TIME_FLOAT
1779270550.070201
REQUEST_TIME
1779270550
__NFNette Session

Nette Session

flashesSection

CurrentData

CURL_HTTP_VERSION_3
30
CURL_HTTP_VERSION_3ONLY
31
APP_DIR
'/var/www/dev/monit.dev.cloud.monit.cz/app'
WWW_DIR
'/var/www/dev/monit.dev.cloud.monit.cz/app/../www/'

amqp

Version2.1.2
CompiledNov 25 2024 @ 05:40:28
AMQP protocol version0-9-1
librabbitmq version0.11.0
Default max channels per connection256
Default max frame size131072
Default heartbeats interval0
DirectiveLocal ValueMaster Value
amqp.auto_ack00
amqp.cacertno valueno value
amqp.certno valueno value
amqp.channel_max256256
amqp.connect_timeout00
amqp.deserialization_depth128128
amqp.frame_max131072131072
amqp.global_prefetch_count00
amqp.global_prefetch_size00
amqp.heartbeat00
amqp.hostlocalhostlocalhost
amqp.keyno valueno value
amqp.loginguestguest
amqp.passwordguestguest
amqp.port56725672
amqp.prefetch_count33
amqp.prefetch_size00
amqp.read_timeout00
amqp.rpc_timeout00
amqp.sasl_methodAMQP_SASL_METHOD_PLAINAMQP_SASL_METHOD_PLAIN
amqp.serialization_depth128128
amqp.timeoutno valueno value
amqp.verify11
amqp.vhost//
amqp.write_timeout00

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

php-fpm active
DirectiveLocal ValueMaster Value
cgi.discard_pathOffOff
cgi.fix_pathinfoOnOn
cgi.force_redirectOnOn
cgi.nphOffOff
cgi.redirect_status_envno valueno value
cgi.rfc2616_headersOffOff
fastcgi.error_headerno valueno value
fastcgi.loggingOnOn
fpm.configno valueno value

Core

PHP Version 8.3.19
DirectiveLocal ValueMaster Value
allow_url_fopenOnOn
allow_url_includeOffOff
arg_separator.input&&
arg_separator.output&&
auto_append_fileno valueno value
auto_globals_jitOnOn
auto_prepend_fileno valueno value
browscapno valueno value
default_charsetUTF-8UTF-8
default_mimetypetext/htmltext/html
disable_classesno valueno value
disable_functionspcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,curl_exec,curl_multi_exec,parse_ini_file,popen,proc_close,proc_get_status,proc_nice,proc_open,proc_terminate,show_source,systempcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,curl_exec,curl_multi_exec,parse_ini_file,popen,proc_close,proc_get_status,proc_nice,proc_open,proc_terminate,show_source,system
display_errorsOffOff
display_startup_errorsOffOff
doc_rootno valueno value
docref_extno valueno value
docref_rootno valueno value
enable_dlOffOff
enable_post_data_readingOnOn
error_append_stringno valueno value
error_logno valueno value
error_log_mode06440644
error_prepend_stringno valueno value
error_reporting665322519
expose_phpOffOff
extension_dir/usr/lib/php/20230831/usr/lib/php/20230831
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.:/usr/share/php/:/usr/share/php5/.:/usr/share/php/:/usr/share/php5/
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_time3030
max_file_uploads2020
max_input_nesting_level6464
max_input_time6060
max_input_vars1000010000
max_multipart_body_parts-1-1
memory_limit1536M1536M
open_basedirno valueno value
output_buffering40964096
output_encodingno valueno value
output_handlerno valueno value
post_max_size700M700M
precision1414
realpath_cache_size4096K4096K
realpath_cache_ttl120120
register_argc_argvOffOff
report_memleaksOnOn
report_zend_debugOffOff
request_orderGPGP
sendmail_fromno valueno value
sendmail_path/usr/sbin/sendmail -t -i -f dev@monit.cz/usr/sbin/sendmail -t -i -f dev@monit.cz
serialize_precision-1-1
short_open_tagOffOff
SMTPlocalhostlocalhost
smtp_port2525
sys_temp_dirno valueno value
syslog.facilityLOG_USERLOG_USER
syslog.filterno-ctrlno-ctrl
syslog.identphpphp
unserialize_callback_funcno valueno value
upload_max_filesize700M700M
upload_tmp_dir/var/www/tmp/dev//var/www/tmp/dev/
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.exception_string_param_max_len00
zend.max_allowed_stack_size00
zend.multibyteOffOff
zend.reserved_stack_size00
zend.script_encodingno valueno value
zend.signal_checkOffOff

ctype

ctype functions enabled

curl

cURL support enabled
cURL Information 7.88.1
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 Yes
SPNEGO Yes
SSL Yes
SSPI No
TLS-SRP Yes
HTTP2 Yes
GSSAPI Yes
KERBEROS5 Yes
UNIX_SOCKETS Yes
PSL Yes
HTTPS_PROXY Yes
MULTI_SSL No
BROTLI Yes
ALTSVC Yes
HTTP3 No
UNICODE No
ZSTD Yes
HSTS Yes
GSASL No
Protocols dict, file, ftp, ftps, gopher, gophers, http, https, imap, imaps, ldap, ldaps, mqtt, pop3, pop3s, rtmp, rtmpe, rtmps, rtmpt, rtmpte, rtmpts, rtsp, scp, sftp, smb, smbs, smtp, smtps, telnet, tftp
Host x86_64-pc-linux-gnu
SSL Version OpenSSL/3.0.15
ZLib Version 1.2.13
libSSH Version libssh2/1.10.0
DirectiveLocal ValueMaster Value
curl.cainfono valueno value

date

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

dom

DOM/XML enabled
DOM/XML API Version 20031129
libxml Version 2.9.14
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

FFI

FFI support enabled
DirectiveLocal ValueMaster Value
ffi.enablepreloadpreload
ffi.preloadno valueno value

fileinfo

fileinfo support enabled
libmagic 543

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 headers Version 2.3.3
GD library Version 2.3.3
FreeType Support enabled
FreeType Linkage with freetype
GIF Read Support enabled
GIF Create Support enabled
JPEG Support enabled
PNG Support enabled
WBMP Support enabled
XPM Support enabled
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

gmp

gmp support enabled
GMP version 6.2.1

gnupg

gnupg supportenabled
GPGme Version 1.18.0
Extension Version 1.5.1

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 glibc
iconv library version 2.36
DirectiveLocal ValueMaster Value
iconv.input_encodingno valueno value
iconv.internal_encodingno valueno value
iconv.output_encodingno valueno value

igbinary

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

imagick

imagick moduleenabled
imagick module version 3.7.0
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.allow_zero_dimension_images00
imagick.locale_fix00
imagick.progress_monitor00
imagick.set_single_thread11
imagick.shutdown_sleep_count1010
imagick.skip_version_check11

imap

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

intl

Internationalization support enabled
ICU version 72.1
ICU Data version 72.1
ICU TZData version 2022e
ICU Unicode version 15.0
DirectiveLocal ValueMaster Value
intl.default_localeno valueno value
intl.error_level00
intl.use_exceptionsOffOff

json

json support enabled

libxml

libXML support active
libXML Compiled Version 2.9.14
libXML Loaded Version 20914
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 Support enabled
Client API library version mysqlnd 8.3.19
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_socket/var/run/mysqld/mysqld.sock/var/run/mysqld/mysqld.sock
mysqli.default_userno valueno value
mysqli.local_infile_directoryno valueno value
mysqli.max_linksUnlimitedUnlimited
mysqli.max_persistentUnlimitedUnlimited
mysqli.rollback_on_cached_plinkOffOff

mysqlnd

mysqlnd enabled
Version mysqlnd 8.3.19
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.15 3 Sep 2024
OpenSSL Header Version OpenSSL 3.0.15 3 Sep 2024
Openssl default config /usr/lib/ssl/openssl.cnf
DirectiveLocal ValueMaster Value
openssl.cafileno valueno value
openssl.capathno valueno value

pcre

PCRE (Perl Compatible Regular Expressions) Support enabled
PCRE Library Version 10.42 2022-12-11
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 support enabled
PDO drivers mysql, pgsql, sqlite

pdo_mysql

PDO Driver for MySQL enabled
Client API version mysqlnd 8.3.19
DirectiveLocal ValueMaster Value
pdo_mysql.default_socket/var/run/mysqld/mysqld.sock/var/run/mysqld/mysqld.sock

pdo_pgsql

PDO Driver for PostgreSQL enabled
PostgreSQL(libpq) Version 15.12

pdo_sqlite

PDO Driver for SQLite 3.x enabled
SQLite Library 3.40.1

pgsql

PostgreSQL Support enabled
PostgreSQL (libpq) Version 15.12
Multibyte character support enabled
Active Persistent Links 0
Active Links 0
DirectiveLocal ValueMaster Value
pgsql.allow_persistentOnOn
pgsql.auto_reset_persistentOffOff
pgsql.ignore_noticeOffOff
pgsql.log_noticeOffOff
pgsql.max_linksUnlimitedUnlimited
pgsql.max_persistentUnlimitedUnlimited

Phar

Phar: PHP Archive support enabled
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
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

pspell

PSpell Support enabled

random

Version 8.3.19

readline

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

redis

Redis Supportenabled
Redis Version 6.1.0
Redis Sentinel Version 1.0
Available serializers php, json, igbinary
Available compression lzf, zstd, lz4
DirectiveLocal ValueMaster Value
redis.arrays.algorithmno valueno value
redis.arrays.authno valueno value
redis.arrays.autorehash00
redis.arrays.connecttimeout00
redis.arrays.consistent00
redis.arrays.distributorno valueno value
redis.arrays.functionsno valueno value
redis.arrays.hostsno valueno value
redis.arrays.index00
redis.arrays.lazyconnect00
redis.arrays.namesno valueno value
redis.arrays.pconnect00
redis.arrays.previousno valueno value
redis.arrays.readtimeout00
redis.arrays.retryinterval00
redis.clusters.authno valueno value
redis.clusters.cache_slots00
redis.clusters.persistent00
redis.clusters.read_timeout00
redis.clusters.seedsno valueno value
redis.clusters.timeout00
redis.pconnect.connection_limit00
redis.pconnect.echo_check_liveness11
redis.pconnect.pool_detect_dirty00
redis.pconnect.pool_patternno valueno value
redis.pconnect.pool_poll_timeout00
redis.pconnect.pooling_enabled11
redis.session.compressionnonenone
redis.session.compression_level33
redis.session.early_refresh00
redis.session.lock_expire00
redis.session.lock_retries100100
redis.session.lock_wait_time2000020000
redis.session.locking_enabled00

Reflection

Reflection enabled

session

Session Support enabled
Registered save handlers files user redis rediscluster
Registered serializer handlers php_serialize php php_binary igbinary
DirectiveLocal ValueMaster Value
session.auto_startOffOff
session.cache_expire180180
session.cache_limiternocachenocache
session.cookie_domainmonit.dev.cloud.monit.czno value
session.cookie_httponlyOnOff
session.cookie_lifetime288000
session.cookie_path//
session.cookie_samesiteLaxno value
session.cookie_secureOnOn
session.gc_divisor10001000
session.gc_maxlifetime288001440
session.gc_probability11
session.lazy_writeOnOn
session.nameMONIT_IDPHPSESSID
session.referer_checkno valueno value
session.save_handleruserfiles
session.save_path/var/www/tmp/dev//var/www/tmp/dev/
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

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

sockets

Sockets Support enabled

sodium

sodium support enabled
libsodium headers version 1.0.18
libsodium library version 1.0.18

SPL

SPL support enabled
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 support enabled
SQLite Library 3.40.1
DirectiveLocal ValueMaster Value
sqlite3.defensiveOnOn
sqlite3.extension_dirno valueno value

standard

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

sysvmsg

sysvmsg support enabled

sysvsem

sysvsem support enabled

sysvshm

sysvshm support enabled

tidy

Tidy support enabled
libTidy Version 5.6.0
libTidy Release 2017/11/25
DirectiveLocal ValueMaster Value
tidy.clean_outputOffOff
tidy.default_configno valueno value

tokenizer

Tokenizer Support enabled

xml

XML Support active
XML Namespace Support active
libxml2 Version 2.9.14

xmlreader

XMLReader enabled

xmlrpc

XMLRPC extension version 1.0.0RC3
core library version xmlrpc-epi v. 0.54
author Dan Libby
homepage http://xmlrpc-epi.sourceforge.net
open sourced by Epinions.com

xmlwriter

XMLWriter enabled

xsl

XSL enabled
libxslt Version 1.1.35
libxslt compiled against libxml Version 2.9.14
EXSLT enabled
libexslt Version 0.8.20

Zend OPcache

Opcode Caching Up and Running
Optimization Enabled
SHM Cache Enabled
File Cache Disabled
JIT Disabled
Startup OK
Shared memory model mmap
Cache hits 317422
Cache misses 1970
Used memory 186610928
Free memory 81824528
Wasted memory 0
Interned Strings Used memory 7305824
Interned Strings Free memory 1082784
Cached scripts 1964
Cached keys 3596
Max keys 16229
OOM restarts 0
Hash keys restarts 0
Manual restarts 1
Start time 2026-05-19T13:25:02+0200
Last restart time 2026-05-19T14:53:52+0200
Last force restart time none
DirectiveLocal ValueMaster Value
opcache.blacklist_filenameno valueno value
opcache.dups_fixOffOff
opcache.enableOnOn
opcache.enable_cliOffOff
opcache.enable_file_overrideOffOff
opcache.error_logno valueno value
opcache.file_cacheno valueno value
opcache.file_cache_consistency_checksOnOn
opcache.file_cache_onlyOffOff
opcache.file_update_protection22
opcache.force_restart_timeout180180
opcache.huge_code_pagesOffOff
opcache.interned_strings_buffer88
opcache.jitno valueno value
opcache.jit_bisect_limit00
opcache.jit_blacklist_root_trace1616
opcache.jit_blacklist_side_trace88
opcache.jit_buffer_size00
opcache.jit_debug00
opcache.jit_hot_func127127
opcache.jit_hot_loop6464
opcache.jit_hot_return88
opcache.jit_hot_side_exit88
opcache.jit_max_exit_counters81928192
opcache.jit_max_loop_unrolls88
opcache.jit_max_polymorphic_calls22
opcache.jit_max_recursive_calls22
opcache.jit_max_recursive_returns22
opcache.jit_max_root_traces10241024
opcache.jit_max_side_traces128128
opcache.jit_max_trace_length10241024
opcache.jit_prof_threshold0.0050.005
opcache.lockfile_path/tmp/tmp
opcache.log_verbosity_level11
opcache.max_accelerated_files1000010000
opcache.max_file_size00
opcache.max_wasted_percentage55
opcache.memory_consumption256M256M
opcache.opt_debug_level00
opcache.optimization_level0x7FFEBFFF0x7FFEBFFF
opcache.preferred_memory_modelno valueno value
opcache.preloadno valueno value
opcache.preload_userno valueno value
opcache.protect_memoryOffOff
opcache.record_warningsOffOff
opcache.restrict_api/var/www/dev/monit.dev.cloud.monit.cz//var/www/dev/monit.dev.cloud.monit.cz/
opcache.revalidate_freq22
opcache.revalidate_pathOffOff
opcache.save_commentsOnOn
opcache.use_cwdOnOn
opcache.validate_permissionOffOff
opcache.validate_rootOffOff
opcache.validate_timestampsOnOn

zip

Zip enabled
Zip version 1.22.3
Libzip version 1.7.3
BZIP2 compression Yes
XZ compression No
ZSTD compression No
AES-128 encryption Yes
AES-192 encryption Yes
AES-256 encryption Yes

zlib

ZLib Support enabled
Stream Wrapper compress.zlib://
Stream Filter zlib.inflate, zlib.deflate
Compiled Version 1.2.13
Linked Version 1.2.13
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' => 293

HTTP

  • Request
  • Response

GET http://monit.dev.cloud.monit.cz/en/automation-digitalization/obchod/obchodni-tym-v-terenu

X-Forwarded-For
'216.73.217.2'
X-Forwarded-Proto
'https'
Host
'monit.dev.cloud.monit.cz'
Accept-Encoding
'gzip, br, zstd, deflate'
Cookie
'tracy-session=b526d37b4d; _nss=1'
User-Agent
'Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)'
Accept
'*/*'
Content-Length
''
Content-Type
''

$_GET

empty

$_POST

empty

$_COOKIE

tracy-session
'b526d37b4d'
_nss
'1'

Code: 200

X-Powered-By
'Nette Framework 3'
Content-Type
'text/html; charset=utf-8'
X-Frame-Options
'SAMEORIGIN'
Set-Cookie
'_nss=1; path=/; HttpOnly; SameSite=Strict'
Content-Security-Policy

Vary
'X-Requested-With'
Set-Cookie
'MONIT_ID=g4vrata7bvtbs5s4cml2d45ltn; expires=Wed, 20 May 2026 17:49:10 GMT; Max-Age=28800; path=/; domain=monit.dev.cloud.monit.cz; secure; HttpOnly; SameSite=Lax'
Expires
'Thu, 19 Nov 1981 08:52:00 GMT'
Cache-Control
'no-store, no-cache, must-revalidate'
Pragma
'no-cache'

Headers have been sent, output started at .../templates-components-monit_logo.latte--e9ba5ab151.php:24 source

14: { 15: extract($ʟ_args); 16: unset($ʟ_args); 17: 18: if ($this->global->snippetDriver?->renderSnippets($this->blocks[self::LayerSnippet], $this->params)) { 19: return; 20: } 21: 22: echo '<svg id="monit_logo_'; 23: echo LR\Filters::escapeHtmlAttr($id) /* line 1 */; 24: echo '" version="1.1" viewBox="0 0 100 38.201" xmlns="http://www.w3.org/2000/svg"> 25: <title id="title">monit</title> 26: <path class="monit-text" d="m96.555 22.191v-4.2558h3.3438v-2.9385h-3.3438v-3.9518h-3.3438v11.45c0 2.0266 0.40531 3.1412 1.5199 3.9518 0.91196 0.7093 1.7226 0.91196 3.7492 0.91196h1.5199v-2.9385h-1.1146c-1.8239 0-2.3306-0.50663-2.3306-2.2292m-7.5996 1.8239h3.6478v-12.869h-3.6478zm-18.543-3.0398c-1.8239 0-3.2425-1.5199-3.2425-3.3438s1.4186-3.3438 3.1412-3.3438c1.8239 0 3.2425 1.5199 3.2425 3.3438s-1.4186 3.3438-3.1412 3.3438m12.261-10.032c-3.2425 0-5.2691 1.8239-5.6744 4.8638-0.81062-2.9385-3.4452-4.9651-6.6877-4.9651-2.9385 0-5.3704 1.8239-6.3837 4.3571-0.10134-1.0133-0.40532-1.8239-0.91196-2.4319-0.91195-1.2159-2.4319-1.8239-4.1545-1.8239s-3.0399 0.60797-3.8505 1.9252c-1.0133-1.3173-2.3306-1.9252-4.1545-1.9252-1.5199 0-2.8372 0.50664-3.7492 1.5199-1.0133 0.91195-1.4186 1.9252-1.4186 3.9518v7.5996h3.5465v-7.093c0-0.81062 0-1.2159 0.20266-1.5199 0.40531-0.60796 1.0133-1.0133 1.7226-1.0133 0.60797 0 1.1146 0.30398 1.5199 0.7093 0.30398 0.40532 0.50664 0.81063 0.50664 1.7226v7.1943h3.4452v-6.9916c0-1.0133 0.10134-1.3173 0.30398-1.7226 0.40532-0.60798 1.0133-0.91196 1.6213-0.91196 1.3173 0 2.0266 0.81063 2.0266 2.3306v7.2956h3.4452v-3.7492c1.0133 2.4319 3.5465 4.1545 6.3837 4.1545 2.9385 0 5.5731-2.0266 6.485-4.6611v4.2558h3.4452v-6.5864c0-1.0133 0.20266-1.5199 0.40532-2.0266 0.40531-0.60796 1.1146-1.0133 1.9252-1.0133 0.70931 0 1.3173 0.30398 1.8239 0.81063 0.30399 0.50664 0.50665 1.0133 0.50665 2.1279v6.6877h3.4452v-7.093c0-3.7491-2.1279-5.9784-5.7757-5.9784"></path> 27: <path class="monit-blob" d="m41.533 16.111c-1.5199 9.3222-6.5863 22.09-14.49 22.09-7.9036 0-28.575-11.957-26.953-21.178 1.6213-9.3222 11.754-17.023 19.658-17.023 7.9036 0 23.407 6.8903 21.786 16.111z" fill="#80b720"></path> 28: <path class="monit-blob-lines" d="m32.211 13.381c-0.60797-0.40531-1.3173-0.20265-1.7226 0.40531l-4.7624 8.0049c-0.30398 0.60798-0.10132 1.3173 0.50664 1.7226 0.60797 0.30398 1.3173 0.10133 1.7226-0.50664l4.6611-7.9036c0.40531-0.60797 0.20266-1.4186-0.40532-1.7226m-20.975 0.40531c-0.40531-0.60796-1.2159-0.81062-1.7226-0.40531-0.60797 0.30398-0.81063 1.1146-0.50664 1.7226l4.7624 7.9036c0.30398 0.60796 1.1146 0.81062 1.7226 0.50664 0.60797-0.40532 0.81063-1.1146 0.40531-1.7226zm9.6262-1.9252c-0.60797 0-1.2159 0.60798-1.2159 1.3173v9.2209c0 0.70929 0.60797 1.3173 1.2159 1.3173 0.7093 0 1.3173-0.60798 1.3173-1.3173v-9.2209c0-0.7093-0.60797-1.3173-1.3173-1.3173" fill="#ffffff"></path>
  • Please support Tracy via a donation 💙️
  • Report generated at 2026/05/20 11:49:10
  • PHP 8.3.19
  • nginx/1.26.3
  • Tracy 2.10.10