Přihlášení

Warning: ini_set(): Session ini settings cannot be changed after headers have already been sent 

Warning

ini_set(): Session ini settings cannot be changed after headers have already been sent search► skip error►

File: .../web/nette-crm/vendor/nette/http/src/Http/Session.php:457

447: 448: } else { 449: if (session_status() === PHP_SESSION_ACTIVE) { 450: throw new Nette\InvalidStateException("Unable to set 'session.$key' to value '$value' when session has been started" . ($this->started ? '.' : ' by session.auto_start or session_start().')); 451: } 452: 453: if (isset($special[$key])) { 454: ("session_$key")($value); 455: 456: } elseif (function_exists('ini_set')) { 457: ini_set("session.$key", (string) $value); 458: 459: } else { 460: throw new Nette\NotSupportedException("Unable to set 'session.$key' to '$value' because function ini_set() is disabled."); 461: }
447: 448: } else { 449: if (session_status() === PHP_SESSION_ACTIVE) { 450: throw new Nette\InvalidStateException("Unable to set 'session.$key' to value '$value' when session has been started" . ($this->started ? '.' : ' by session.auto_start or session_start().')); 451: } 452: 453: if (isset($special[$key])) { 454: ("session_$key")($value); 455: 456: } elseif (function_exists('ini_set')) { 457: ini_set("session.$key", (string) $value); 458: 459: } else { 460: throw new Nette\NotSupportedException("Unable to set 'session.$key' to '$value' because function ini_set() is disabled."); 461: }
$option
'session.use_only_cookies'
$value
'1'
79: { 80: if (session_status() === PHP_SESSION_ACTIVE) { // adapt an existing session 81: if (!$this->started) { 82: $this->configure(self::SecurityOptions); 83: $this->initialize(); 84: } 85: 86: return; 87: } 88: 89: $this->configure(self::SecurityOptions + $this->options); 90: 91: if (!session_id()) { // session is started for first time 92: $id = $this->request->getCookie(session_name()); 93: $id = is_string($id) && preg_match('#^[0-9a-zA-Z,-]{22,256}$#Di', $id)
$config

64: $this->options['cookie_secure'] = &$this->response->cookieSecure; 65: } 66: 67: 68: /** 69: * Starts and initializes session data. 70: * @throws Nette\InvalidStateException 71: */ 72: public function start(): void 73: { 74: $this->doStart(); 75: } 76: 77: 78: private function doStart($mustExists = false): void
31: public function __construct(string|Stringable|null $errorMessage = null) 32: { 33: parent::__construct(); 34: $this->setOmitted() 35: ->setRequired() 36: ->addRule(self::Protection, $errorMessage); 37: 38: $this->monitor(Presenter::class, function (Presenter $presenter): void { 39: if (!$this->session) { 40: $this->session = $presenter->getSession(); 41: $this->session->start(); 42: } 43: }); 44: 45: $this->monitor(Nette\Forms\Form::class, function (Nette\Forms\Form $form): void {
258: 259: $this->monitors[$type][3] = $rec[3]; // mark as monitored 260: } 261: } 262: } 263: 264: if ($depth === 0) { // call listeners 265: $prev = []; 266: foreach ($listeners as $item) { 267: if ($item[0] && !in_array($item, $prev, strict: true)) { 268: $item[0]($item[1]); 269: $prev[] = $item; 270: } 271: } 272: }
#0

183: $this->parent = null; 184: 185: } else { // add to parent 186: $this->validateParent($parent); 187: $this->parent = $parent; 188: if ($name !== null) { 189: $this->name = $name; 190: } 191: 192: $tmp = []; 193: $this->refreshMonitors(0, $tmp); 194: } 195: 196: return $this; 197: }
$depth
0
$missing

74: 75: $tmp[$k] = $v; 76: } 77: 78: $this->components = $tmp; 79: } else { 80: $this->components[$name] = $component; 81: } 82: 83: try { 84: $component->setParent($this, $name); 85: } catch (\Throwable $e) { 86: unset($this->components[$name]); // undo 87: throw $e; 88: }
$parent

$name
'form'
119: if (!preg_match(self::NameRegexp, $name)) { 120: if ($throw) { 121: throw new Nette\InvalidArgumentException("Component name must be non-empty alphanumeric string, '$name' given."); 122: } 123: 124: return null; 125: } 126: 127: $component = $this->createComponent($name); 128: if ($component && !isset($this->components[$name])) { 129: $this->addComponent($component, $name); 130: } 131: } 132: 133: $component = $this->components[$name] ?? null;
$component

$name
'form'
31: /** {snippet formWrapper} on line 1 */ 32: public function blockFormWrapper(array $ʟ_args): void 33: { 34: extract($this->params); 35: extract($ʟ_args); 36: unset($ʟ_args); 37: 38: $this->global->snippetDriver->enter('formWrapper', 'static') /* pos 1:1 */; 39: try { 40: echo "\n"; 41: $ʟ_tmp = $this->global->uiControl->getComponent('form'); 42: if ($ʟ_tmp instanceof Nette\Application\UI\Renderable) $ʟ_tmp->redrawControl(null, false); 43: $ʟ_tmp->render() /* pos 2:5 */; 44: 45:
1: {snippet formWrapper} 2: {control form} 3: {/snippet} 4:
$name
'form'
111: $hint = $layer && ($t = Latte\Helpers::getSuggestion($this->getBlockNames($layer), $name)) 112: ? ", did you mean '$t'?" 113: : '.'; 114: $name = $layer ? "$layer $name" : $name; 115: throw new Latte\RuntimeException("Cannot include undefined block '$name'$hint"); 116: } 117: 118: $fn = reset($block->functions); 119: assert($fn !== false); 120: $this->filter( 121: fn() => $fn($params), 122: $mod, 123: $block->contentType ?? static::ContentType, 124: "block $name", 125: );
$ʟ_args
null
187: return $child; 188: } 189: 190: 191: /** 192: * @param string|\Closure|null $targetType content-type name or modifier closure 193: */ 194: private function filter(callable $producer, string|\Closure|null $targetType, string $contentType, string $name): void 195: { 196: if ($targetType === null || $targetType === $contentType) { 197: $producer(); 198: 199: } elseif ($targetType instanceof \Closure) { 200: echo $targetType($this->capture($producer), $contentType); 201:
110: if (!$block) { 111: $hint = $layer && ($t = Latte\Helpers::getSuggestion($this->getBlockNames($layer), $name)) 112: ? ", did you mean '$t'?" 113: : '.'; 114: $name = $layer ? "$layer $name" : $name; 115: throw new Latte\RuntimeException("Cannot include undefined block '$name'$hint"); 116: } 117: 118: $fn = reset($block->functions); 119: assert($fn !== false); 120: $this->filter( 121: fn() => $fn($params), 122: $mod, 123: $block->contentType ?? static::ContentType, 124: "block $name",
$producer

$targetType
null
$contentType
'html'
$name
'block formWrapper'
15: public function main(array $ʟ_args): void 16: { 17: extract($ʟ_args); 18: unset($ʟ_args); 19: 20: if ($this->global->snippetDriver?->renderSnippets($this->blocks[self::LayerSnippet], $this->params)) { 21: return; 22: } 23: 24: echo '<div id="', htmlspecialchars($this->global->snippetDriver->getHtmlId('formWrapper')), '">'; 25: $this->renderBlock('formWrapper', [], null, 'snippet') /* pos 1:1 */; 26: echo '</div> 27: '; 28: } 29:
1: {snippet formWrapper} 2: {control form} 3: {/snippet} 4:
$name
'formWrapper'
$params
array (0)
$mod
null
$layer
'snippet'
78: } 79: 80: } elseif ($this->parentName) { // extends 81: $this->params = $params; 82: $this->createTemplate($this->parentName, $params, 'extends')->render($block); 83: 84: } elseif ($block !== null) { // single block rendering 85: $this->renderBlock($block, $this->params); 86: 87: } else { 88: $this->main($params); 89: } 90: } 91: 92:
$ʟ_args
null
78: 79: 80: /** 81: * Renders template to output. 82: * @param object|mixed[] $params 83: */ 84: public function render(string $name, object|array $params = [], ?string $block = null): void 85: { 86: $template = $this->createTemplate($name, $this->processParams($params)); 87: $template->global->coreCaptured = false; 88: $template->render($block); 89: } 90: 91: 92: /**
$block
null
33: return $this->latte; 34: } 35: 36: 37: /** 38: * Renders template to output. 39: */ 40: public function render(?string $file = null, array $params = []): void 41: { 42: Nette\Utils\Arrays::toObject($params, $this); 43: $this->latte->render($file ?? $this->file, $this); 44: } 45: 46: 47: /**
$name
'/volume1/web/nette-crm/app/Controls/User/Sign/In/default.latte'
$params

10: 11: public function __construct( 12: private FormFactory $formFactory, 13: callable $onSuccess, 14: ) { 15: $this->onSuccess = $onSuccess; 16: } 17: 18: public function render(): void 19: { 20: $this->template->render(__DIR__ . '/default.latte'); 21: } 22: 23: public function createComponentForm(): Form 24: {
$file
'/volume1/web/nette-crm/app/Controls/User/Sign/In/default.latte'
46: </ol> 47: </nav> 48: '; 49: $this->renderBlock('title', get_defined_vars()) /* pos 9:5 */; 50: echo ' 51: <div class="row"> 52: <div class="col-lg"> 53: '; 54: $ʟ_tmp = $this->global->uiControl->getComponent('signInForm'); 55: if ($ʟ_tmp instanceof Nette\Application\UI\Renderable) $ʟ_tmp->redrawControl(null, false); 56: $ʟ_tmp->render() /* pos 13:9 */; 57: 58: echo ' </div> 59: <div class="col"> 60:
3: <ol class="breadcrumb"> 4: <li class="breadcrumb-item"><a n:href=":Dashboard">Domů</a></li> 5: <li class="breadcrumb-item"><a n:href="User:detail">Uživatel</a></li> 6: <li class="breadcrumb-item">Přihlášení</li> 7: </ol> 8: </nav> 9: <h1 n:block=title>Přihlášení</h1> 10: 11: <div class="row"> 12: <div class="col-lg"> 13: {control signInForm} 14: </div> 15: <div class="col"> 16: 17: </div>
111: $hint = $layer && ($t = Latte\Helpers::getSuggestion($this->getBlockNames($layer), $name)) 112: ? ", did you mean '$t'?" 113: : '.'; 114: $name = $layer ? "$layer $name" : $name; 115: throw new Latte\RuntimeException("Cannot include undefined block '$name'$hint"); 116: } 117: 118: $fn = reset($block->functions); 119: assert($fn !== false); 120: $this->filter( 121: fn() => $fn($params), 122: $mod, 123: $block->contentType ?? static::ContentType, 124: "block $name", 125: );
$ʟ_args
null
187: return $child; 188: } 189: 190: 191: /** 192: * @param string|\Closure|null $targetType content-type name or modifier closure 193: */ 194: private function filter(callable $producer, string|\Closure|null $targetType, string $contentType, string $name): void 195: { 196: if ($targetType === null || $targetType === $contentType) { 197: $producer(); 198: 199: } elseif ($targetType instanceof \Closure) { 200: echo $targetType($this->capture($producer), $contentType); 201:
110: if (!$block) { 111: $hint = $layer && ($t = Latte\Helpers::getSuggestion($this->getBlockNames($layer), $name)) 112: ? ", did you mean '$t'?" 113: : '.'; 114: $name = $layer ? "$layer $name" : $name; 115: throw new Latte\RuntimeException("Cannot include undefined block '$name'$hint"); 116: } 117: 118: $fn = reset($block->functions); 119: assert($fn !== false); 120: $this->filter( 121: fn() => $fn($params), 122: $mod, 123: $block->contentType ?? static::ContentType, 124: "block $name",
$producer

$targetType
'html'
$contentType
'html'
$name
'block content'
67: <!-- Flash zpravy --> 68: <div'; 69: echo ' id="', htmlspecialchars($this->global->snippetDriver->getHtmlId('flashes')), '"'; 70: echo '>'; 71: $this->renderBlock('flashes', [], null, 'snippet') /* pos 30:6 */; 72: echo '</div> 73: <!-- Flash zpravy konec --> 74: 75: 76: '; 77: $this->renderBlock('content', [], 'html') /* pos 40:1 */; 78: echo ' 79: 80: </div><!-- /.container --> 81: <!--</main>-->
30: <div n:snippet="flashes"> 31: <div n:foreach="$flashes as $flash"> 32: <script type="module"> 33: toastr[{$flash->type}]({$flash->message}); 34: </script> 35: </div> 36: </div> 37: <!-- Flash zpravy konec --> 38: 39: 40: {include content} 41: 42: 43: </div><!-- /.container --> 44: <!--</main>-->
$name
'content'
$params
array (0)
$mod
'html'
78: } 79: 80: } elseif ($this->parentName) { // extends 81: $this->params = $params; 82: $this->createTemplate($this->parentName, $params, 'extends')->render($block); 83: 84: } elseif ($block !== null) { // single block rendering 85: $this->renderBlock($block, $this->params); 86: 87: } else { 88: $this->main($params); 89: } 90: } 91: 92:
$ʟ_args
null
72: $this->parentName = ($this->global->coreParentFinder)($this); 73: } 74: 75: if ($this->referenceType === 'import') { 76: if ($this->parentName) { 77: throw new Latte\RuntimeException('Imported template cannot use {extends} or {layout}, use {import}'); 78: } 79: 80: } elseif ($this->parentName) { // extends 81: $this->params = $params; 82: $this->createTemplate($this->parentName, $params, 'extends')->render($block); 83: 84: } elseif ($block !== null) { // single block rendering 85: $this->renderBlock($block, $this->params); 86:
$block
null
78: 79: 80: /** 81: * Renders template to output. 82: * @param object|mixed[] $params 83: */ 84: public function render(string $name, object|array $params = [], ?string $block = null): void 85: { 86: $template = $this->createTemplate($name, $this->processParams($params)); 87: $template->global->coreCaptured = false; 88: $template->render($block); 89: } 90: 91: 92: /**
$block
null
33: return $this->latte; 34: } 35: 36: 37: /** 38: * Renders template to output. 39: */ 40: public function render(?string $file = null, array $params = []): void 41: { 42: Nette\Utils\Arrays::toObject($params, $this); 43: $this->latte->render($file ?? $this->file, $this); 44: } 45: 46: 47: /**
$name
'/volume1/web/nette-crm/app/Presentation/User/Sign/in.latte'
$params

31: return $this->source; 32: } 33: 34: 35: /** 36: * Sends response to output. 37: */ 38: public function send(Nette\Http\IRequest $httpRequest, Nette\Http\IResponse $httpResponse): void 39: { 40: if ($this->source instanceof Nette\Application\UI\Template) { 41: $this->source->render(); 42: 43: } else { 44: echo $this->source; 45: }
149: 150: Arrays::invoke($this->onPresenter, $this, $this->presenter); 151: $response = $this->presenter->run(clone $request); 152: 153: if ($response instanceof Responses\ForwardResponse) { 154: $request = $response->getRequest(); 155: goto process; 156: } 157: 158: Arrays::invoke($this->onResponse, $this, $response); 159: $response->send($this->httpRequest, $this->httpResponse); 160: } 161: 162: 163: public function createErrorRequest(\Throwable $e): ?Request
$httpRequest

$httpResponse

67: } 68: 69: 70: /** 71: * Dispatch a HTTP request to a front controller. 72: */ 73: public function run(): void 74: { 75: try { 76: Arrays::invoke($this->onStartup, $this); 77: $this->processRequest($this->createInitialRequest()); 78: Arrays::invoke($this->onShutdown, $this); 79: 80: } catch (\Throwable $e) { 81: $this->sendHttpCode($e);
$request

2: 3: declare(strict_types=1); 4: 5: require __DIR__ . '/../vendor/autoload.php'; 6: 7: $bootstrap = new \App\Bootstrap(); 8: $container = $bootstrap->bootWebApplication(); 9: $application = $container->getByType(Nette\Application\Application::class); 10: //Tracy\Debugger::$editor = 'phpstorm://open?file=%file&line=%line'; 11: //Tracy\Debugger::$editor = null; 12: $application->run();


	

Requests


Presenter



				
USER
'http'
HOME
'/var/services/web'
SCRIPT_NAME
'/index.php'
REQUEST_URI

QUERY_STRING

REQUEST_METHOD
'GET'
SERVER_PROTOCOL
'HTTP/1.1'
GATEWAY_INTERFACE
'CGI/1.1'
REDIRECT_QUERY_STRING

REDIRECT_URL
'/user/sign/in/editor:/open'
REMOTE_PORT
'32858'
SCRIPT_FILENAME
'/volume1/web/nette-crm/www/index.php'
SERVER_ADMIN
'[no address given]'
CONTEXT_DOCUMENT_ROOT
'/volume1/web/nette-crm/www'
CONTEXT_PREFIX
''
REQUEST_SCHEME
'https'
DOCUMENT_ROOT
'/volume1/web/nette-crm/www'
REMOTE_ADDR
'216.73.216.55'
SERVER_PORT
'443'
SERVER_ADDR
'10.0.10.4'
SERVER_NAME
'crm.tomp.eu'
SERVER_SOFTWARE
'Apache/2.4.63 (Unix)'
SERVER_SIGNATURE
''
PATH
'/sbin:/bin:/usr/sbin:/usr/bin:/usr/syno/sbin:/usr/syno/bin:/usr/local/sbin:/usr/local/bin'
HTTP_ACCEPT_ENCODING
'gzip, br, zstd, deflate'
HTTP_USER_AGENT
'Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)'
HTTP_ACCEPT
'*/*'
HTTP_CONNECTION
'close'
HTTP_HOST
'crm.tomp.eu'
HTTP_X_FORWARDED_PORT
'443'
HTTP_X_FORWARDED_PROTO
'https'
HTTP_X_REAL_IP
'216.73.216.55'
HTTP_X_FORWARDED_BY
'10.0.10.4'
HOST
'crm.tomp.eu'
MOD_X_SENDFILE_ENABLED
'yes'
HTTPS
'on'
REDIRECT_STATUS
'200'
REDIRECT_HOST
'crm.tomp.eu'
REDIRECT_MOD_X_SENDFILE_ENABLED
'yes'
REDIRECT_HTTPS
'on'
FCGI_ROLE
'RESPONDER'
PHP_SELF
'/index.php'
REQUEST_TIME_FLOAT
1773078529.351589
REQUEST_TIME
1773078529
__NF Nette Session

Nette Session

Nette.Http.UserStorage/
null

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.6, 6-Sept-2010

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.4.14
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_errorsOnOff
display_startup_errorsOnOn
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_reporting2252730719
expose_phpOffOff
extension_dir/usr/local/lib/php84/modules/usr/local/lib/php84/modules
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_errorsOffOff
ignore_repeated_errorsOffOff
ignore_repeated_sourceOffOff
ignore_user_abortOffOff
implicit_flushOnOn
include_path.:/usr/share/pear.:/usr/share/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_time240240
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_size500M500M
precision1414
realpath_cache_size4096K4096K
realpath_cache_ttl120120
register_argc_argvOffOff
report_memleaksOnOn
report_zend_debugOffOff
request_orderGPGP
sendmail_fromno valueno value
sendmail_path/usr/bin/ssmtp -t/usr/bin/ssmtp -t
serialize_precision-1-1
short_open_tagOnOn
SMTPlocalhostlocalhost
smtp_port2525
sys_temp_dir/var/services/tmp/var/services/tmp
syslog.facilityLOG_USERLOG_USER
syslog.filterno-ctrlno-ctrl
syslog.identphpphp
unserialize_callback_funcno valueno value
upload_max_filesize500M500M
upload_tmp_dir/var/services/tmp/var/services/tmp
user_dirno valueno value
user_ini.cache_ttl300300
user_ini.filename.user.ini.user.ini
variables_orderGPCSGPCS
xmlrpc_error_number00
xmlrpc_errorsOffOff
zend.assertions11
zend.detect_unicodeOnOn
zend.enable_gcOnOn
zend.exception_ignore_argsOffOff
zend.exception_string_param_max_len1515
zend.multibyteOffOff
zend.script_encodingno valueno value
zend.signal_checkOffOff

ctype

ctype functions enabled

curl

cURL support enabled
cURL Information 7.86.0
Age 9
Features
AsynchDNS Yes
CharConv No
Debug Yes
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 No
HTTP2 Yes
GSSAPI No
KERBEROS5 No
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, pop3, pop3s, rtsp, scp, sftp, smb, smbs, smtp, smtps, telnet, tftp
Host x86_64-pc-linux-gnu
SSL Version OpenSSL/1.1.1u
ZLib Version 1.2.11
libSSH Version libssh2/1.9.0
DirectiveLocal ValueMaster Value
curl.cainfono valueno value

date

date/time support enabled
timelib version 2022.14
"Olson" Timezone Database Version 2025.2
Timezone Database internal
Default timezone Europe/Belgrade
DirectiveLocal ValueMaster Value
date.default_latitude31.766731.7667
date.default_longitude35.233335.2333
date.sunrise_zenith90.58333390.583333
date.sunset_zenith90.58333390.583333
date.timezoneEurope/BelgradeEurope/Belgrade

dba

DBA support enabled
Supported handlers gdbm cdb cdb_make db4 inifile flatfile
DirectiveLocal ValueMaster Value
dba.default_handlerflatfileflatfile

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

fileinfo

fileinfo support enabled
libmagic 545

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.5.5
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_warningOnOn

gettext

GetText Support enabled

gmp

gmp support enabled
GMP version 6.2.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

imagick

imagick moduleenabled
imagick module version 3.6.0RC1
imagick classes Imagick, ImagickDraw, ImagickPixel, ImagickPixelIterator, ImagickKernel
Imagick compiled with ImageMagick version ImageMagick 6.9.12-61 Q8 x86_64 17418 https://legacy.imagemagick.org
Imagick using ImageMagick library version ImageMagick 6.9.12-61 Q8 x86_64 17418 https://legacy.imagemagick.org
ImageMagick copyright (C) 1999 ImageMagick Studio LLC
ImageMagick release date 2022-08-17
ImageMagick number of supported formats: 240
ImageMagick supported formats 3FR, 3G2, 3GP, A, AAI, AI, APNG, ART, ARW, AVI, AVIF, AVS, B, BGR, BGRA, BGRO, BMP, BMP2, BMP3, BRF, C, CAL, CALS, CANVAS, CAPTION, CIN, CIP, CLIP, CMYK, CMYKA, CR2, CR3, CRW, CUR, CUT, DATA, DCM, DCR, DCX, DDS, DFONT, DNG, DPX, DXT1, DXT5, EPDF, EPI, EPS, EPS2, EPS3, EPSF, EPSI, EPT, EPT2, EPT3, ERF, FAX, FILE, FITS, FRACTAL, FTP, FTS, G, G3, G4, GIF, GIF87, GRADIENT, GRAY, GRAYA, GROUP4, H, HALD, HDR, HEIC, HISTOGRAM, HRZ, HTM, HTML, HTTP, HTTPS, ICB, ICO, ICON, IIQ, INFO, INLINE, IPL, ISOBRL, ISOBRL6, JNG, JNX, JPE, JPEG, JPG, JPS, JSON, K, K25, KDC, LABEL, M, M2V, M4V, MAC, MAGICK, MAP, MASK, MAT, MATTE, MEF, MIFF, MKV, MNG, MONO, MOV, MP4, MPC, MPEG, MPG, MRW, MSL, MSVG, MTV, MVG, NEF, NRW, NULL, O, 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, PS, PS2, PS3, PSB, PSD, PTIF, PWP, R, RADIAL-GRADIENT, RAF, RAS, RAW, RGB, RGBA, RGBO, RGF, RLA, RLE, RMF, RW2, SCR, SCREENSHOT, 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, WMV, WPG, X3F, XBM, XC, XCF, XPM, XPS, XV, Y, 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

intl

Internationalization support enabled
ICU version 64.2
ICU Data version 64.2
ICU TZData version 2019a
ICU Unicode version 12.1
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 20459
SASL Support Enabled
DirectiveLocal ValueMaster Value
ldap.max_linksUnlimitedUnlimited

libxml

libXML support active
libXML Compiled Version 2.9.14
libXML Loaded Version 20914
libXML streams enabled

mailparse

mailparse supportenabled
Extension Version 3.1.2
DirectiveLocal ValueMaster Value
mailparse.def_charsetus-asciius-ascii

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.5
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

memcached

memcached supportenabled
Version 3.1.5
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_count22

mysqli

MysqlI Support enabled
Client API library version mysqlnd 8.4.14
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/run/mysqld/mysqld.sock/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.4.14
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 1.1.1u 30 May 2023
OpenSSL Header Version OpenSSL 1.1.1u 30 May 2023
Openssl default config /etc/ssl/openssl.cnf
DirectiveLocal ValueMaster Value
openssl.cafileno valueno value
openssl.capathno valueno value

pcntl

pcntl support enabled

pcre

PCRE (Perl Compatible Regular Expressions) Support enabled
PCRE Library Version 10.43 2024-02-16
PCRE Unicode Version 15.0.0
PCRE JIT Support enabled
PCRE JIT Target x86 64bit (little endian + unaligned)
DirectiveLocal ValueMaster Value
pcre.backtrack_limit10000001000000
pcre.jitOffOff
pcre.recursion_limit100000100000

PDO

PDO support enabled
PDO drivers dblib, mysql, pgsql, sqlite

pdo_dblib

PDO Driver for FreeTDS/Sybase DB-lib enabled
Flavour freetds

pdo_mysql

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

pdo_pgsql

PDO Driver for PostgreSQL enabled
PostgreSQL(libpq) Version 11.11

pdo_sqlite

PDO Driver for SQLite 3.x enabled
SQLite Library 3.40.0

pgsql

PostgreSQL Support enabled
PostgreSQL (libpq) Version 11.11
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
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.readonlyOffOff
phar.require_hashOnOn

posix

POSIX support enabled

random

Version 8.4.14

readline

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

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_httponlyOffOff
session.cookie_lifetime00
session.cookie_path//
session.cookie_samesiteno valueno value
session.cookie_secureOffOff
session.gc_divisor10001000
session.gc_maxlifetime14401440
session.gc_probability11
session.lazy_writeOnOn
session.namePHPSESSIDPHPSESSID
session.referer_checkno valueno value
session.save_handlerfilesfiles
session.save_path/var/services/tmp/var/services/tmp
session.serialize_handlerphpphp
session.sid_bits_per_character44
session.sid_length3232
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_cookiesOffOff
session.use_strict_modeOffOff
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/var/services/tmp/var/services/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.0
DirectiveLocal ValueMaster Value
sqlite3.defensiveOnOn
sqlite3.extension_dirno valueno value

ssh2

SSH2 supportenabled
extension version 1.3.1
libssh2 version 1.9.0
banner SSH-2.0-libssh2_1.9.0

standard

Dynamic Library Support enabled
Path to sendmail /usr/bin/ssmtp -t
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.tagsa=href,area=href,frame=src,input=src,form=fakeentrya=href,area=href,frame=src,input=src,form=fakeentry
user_agentno valueno value

sysvmsg

sysvmsg support enabled

sysvsem

sysvsem support enabled

sysvshm

sysvshm support enabled

tokenizer

Tokenizer Support enabled

xml

XML Support active
XML Namespace Support active
libxml2 Version 2.9.14

xmlreader

XMLReader enabled

xmlwriter

XMLWriter enabled

zip

Zip enabled
Zip version 1.22.7
Libzip version 1.7.3
BZIP2 compression Yes
XZ compression Yes
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.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
array (1)
0 => array (7)
| 'name' => 'default output handler' | 'type' => 0 | 'flags' => 20592 | 'level' => 0 | 'chunk_size' => 4096 | 'buffer_size' => 8192 | 'buffer_used' => 42

GET https://crm.tomp.eu/user/sign/in/editor:/open?XDEBUG_SESSION_STOP=1&file=%2Fvolume1%2Fweb%2Fnette-crm%2Fvendor%2Fnette%2Fcomponent-model%2Fsrc%2FComponentModel%2FContainer.php&line=84

Accept-Encoding
'gzip, br, zstd, deflate'
User-Agent
'Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)'
Accept
'*/*'
Connection
'close'
Host
'crm.tomp.eu'
X-Forwarded-Port
'443'
X-Forwarded-Proto
'https'
X-Real-Ip
'216.73.216.55'
X-Forwarded-By
'10.0.10.4'

$_GET

XDEBUG_SESSION_STOP
'1'
file
'/volume1/web/nette-crm/vendor/nette/component-model/src/ComponentModel/Container.php'
line
'84'

$_COOKIE

empty

Code: 200

Set-Cookie
'tracy-session=effda24872; expires=Tue, 09 Mar 2027 23:48:49 GMT; Max-Age=31557600; path=/; HttpOnly'
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'
Vary
'X-Requested-With'

Headers have been sent, output started at .../temp/cache/latte/User-Sign-in.latte--da26a600a6.php:50 source

40: echo LR\HtmlHelpers::escapeAttr($this->global->uiControl->link(':Dashboard')) /* pos 4:40 */; 41: echo '">Domů</a></li> 42: <li class="breadcrumb-item"><a href="'; 43: echo LR\HtmlHelpers::escapeAttr($this->global->uiControl->link('User:detail')) /* pos 5:40 */; 44: echo '">Uživatel</a></li> 45: <li class="breadcrumb-item">Přihlášení</li> 46: </ol> 47: </nav> 48: '; 49: $this->renderBlock('title', get_defined_vars()) /* pos 9:5 */; 50: echo ' 51: <div class="row"> 52: <div class="col-lg"> 53: '; 54: $ʟ_tmp = $this->global->uiControl->getComponent('signInForm');