Přihlášení
Warning
ini_set(): Session ini settings cannot be changed after headers have already been sent search► skip error►
Source file
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: }
Call stack
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();
Exception
Nette Application
Requests
Presenter
Environment
| 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 | '60814'
|
| 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 | 1773078012.252368
|
| REQUEST_TIME | 1773078012
|
| __NF | Nette Session |
|---|
Nette Session
| Nette.Http.UserStorage/ | null
|
|---|
bcmath
| BCMath support | enabled |
| Directive | Local Value | Master Value |
|---|---|---|
| bcmath.scale | 0 | 0 |
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 |
| Directive | Local Value | Master Value |
|---|---|---|
| cgi.discard_path | Off | Off |
| cgi.fix_pathinfo | On | On |
| cgi.force_redirect | On | On |
| cgi.nph | Off | Off |
| cgi.redirect_status_env | no value | no value |
| cgi.rfc2616_headers | Off | Off |
| fastcgi.error_header | no value | no value |
| fastcgi.logging | On | On |
| fpm.config | no value | no value |
Core
| PHP Version | 8.4.14 |
| Directive | Local Value | Master Value |
|---|---|---|
| allow_url_fopen | On | On |
| allow_url_include | Off | Off |
| arg_separator.input | & | & |
| arg_separator.output | & | & |
| auto_append_file | no value | no value |
| auto_globals_jit | On | On |
| auto_prepend_file | no value | no value |
| browscap | no value | no value |
| default_charset | UTF-8 | UTF-8 |
| default_mimetype | text/html | text/html |
| disable_classes | no value | no value |
| disable_functions | no value | no value |
| display_errors | On | Off |
| display_startup_errors | On | On |
| doc_root | no value | no value |
| docref_ext | no value | no value |
| docref_root | no value | no value |
| enable_dl | Off | Off |
| enable_post_data_reading | On | On |
| error_append_string | no value | no value |
| error_log | no value | no value |
| error_log_mode | 0644 | 0644 |
| error_prepend_string | no value | no value |
| error_reporting | 22527 | 30719 |
| expose_php | Off | Off |
| extension_dir | /usr/local/lib/php84/modules | /usr/local/lib/php84/modules |
| fiber.stack_size | no value | no value |
| file_uploads | On | On |
| hard_timeout | 2 | 2 |
| highlight.comment | #FF8000 | #FF8000 |
| highlight.default | #0000BB | #0000BB |
| highlight.html | #000000 | #000000 |
| highlight.keyword | #007700 | #007700 |
| highlight.string | #DD0000 | #DD0000 |
| html_errors | Off | Off |
| ignore_repeated_errors | Off | Off |
| ignore_repeated_source | Off | Off |
| ignore_user_abort | Off | Off |
| implicit_flush | On | On |
| include_path | .:/usr/share/pear | .:/usr/share/pear |
| input_encoding | no value | no value |
| internal_encoding | no value | no value |
| log_errors | Off | On |
| mail.add_x_header | Off | Off |
| mail.force_extra_parameters | no value | no value |
| mail.log | no value | no value |
| mail.mixed_lf_and_crlf | Off | Off |
| max_execution_time | 240 | 240 |
| max_file_uploads | 20 | 20 |
| max_input_nesting_level | 64 | 64 |
| max_input_time | 60 | 60 |
| max_input_vars | 1000 | 1000 |
| max_multipart_body_parts | -1 | -1 |
| memory_limit | 128M | 128M |
| open_basedir | no value | no value |
| output_buffering | 4096 | 4096 |
| output_encoding | no value | no value |
| output_handler | no value | no value |
| post_max_size | 500M | 500M |
| precision | 14 | 14 |
| realpath_cache_size | 4096K | 4096K |
| realpath_cache_ttl | 120 | 120 |
| register_argc_argv | Off | Off |
| report_memleaks | On | On |
| report_zend_debug | Off | Off |
| request_order | GP | GP |
| sendmail_from | no value | no value |
| sendmail_path | /usr/bin/ssmtp -t | /usr/bin/ssmtp -t |
| serialize_precision | -1 | -1 |
| short_open_tag | On | On |
| SMTP | localhost | localhost |
| smtp_port | 25 | 25 |
| sys_temp_dir | /var/services/tmp | /var/services/tmp |
| syslog.facility | LOG_USER | LOG_USER |
| syslog.filter | no-ctrl | no-ctrl |
| syslog.ident | php | php |
| unserialize_callback_func | no value | no value |
| upload_max_filesize | 500M | 500M |
| upload_tmp_dir | /var/services/tmp | /var/services/tmp |
| user_dir | no value | no value |
| user_ini.cache_ttl | 300 | 300 |
| user_ini.filename | .user.ini | .user.ini |
| variables_order | GPCS | GPCS |
| xmlrpc_error_number | 0 | 0 |
| xmlrpc_errors | Off | Off |
| zend.assertions | 1 | 1 |
| zend.detect_unicode | On | On |
| zend.enable_gc | On | On |
| zend.exception_ignore_args | Off | Off |
| zend.exception_string_param_max_len | 15 | 15 |
| zend.multibyte | Off | Off |
| zend.script_encoding | no value | no value |
| zend.signal_check | Off | Off |
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 |
| Directive | Local Value | Master Value |
|---|---|---|
| curl.cainfo | no value | no value |
date
| date/time support | enabled |
| timelib version | 2022.14 |
| "Olson" Timezone Database Version | 2025.2 |
| Timezone Database | internal |
| Default timezone | Europe/Belgrade |
| Directive | Local Value | Master Value |
|---|---|---|
| date.default_latitude | 31.7667 | 31.7667 |
| date.default_longitude | 35.2333 | 35.2333 |
| date.sunrise_zenith | 90.583333 | 90.583333 |
| date.sunset_zenith | 90.583333 | 90.583333 |
| date.timezone | Europe/Belgrade | Europe/Belgrade |
dba
| DBA support | enabled |
| Supported handlers | gdbm cdb cdb_make db4 inifile flatfile |
| Directive | Local Value | Master Value |
|---|---|---|
| dba.default_handler | flatfile | flatfile |
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 |
| Directive | Local Value | Master Value |
|---|---|---|
| exif.decode_jis_intel | JIS | JIS |
| exif.decode_jis_motorola | JIS | JIS |
| exif.decode_unicode_intel | UCS-2LE | UCS-2LE |
| exif.decode_unicode_motorola | UCS-2BE | UCS-2BE |
| exif.encode_jis | no value | no value |
| exif.encode_unicode | ISO-8859-15 | ISO-8859-15 |
fileinfo
| fileinfo support | enabled |
| libmagic | 545 |
filter
| Input Validation and Filtering | enabled |
| Directive | Local Value | Master Value |
|---|---|---|
| filter.default | unsafe_raw | unsafe_raw |
| filter.default_flags | no value | no 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 |
| Directive | Local Value | Master Value |
|---|---|---|
| gd.jpeg_ignore_warning | On | On |
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 |
| Directive | Local Value | Master Value |
|---|---|---|
| iconv.input_encoding | no value | no value |
| iconv.internal_encoding | no value | no value |
| iconv.output_encoding | no value | no value |
imagick
| imagick module | enabled |
|---|---|
| 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 |
| Directive | Local Value | Master Value |
|---|---|---|
| imagick.allow_zero_dimension_images | 0 | 0 |
| imagick.locale_fix | 0 | 0 |
| imagick.progress_monitor | 0 | 0 |
| imagick.set_single_thread | 1 | 1 |
| imagick.shutdown_sleep_count | 10 | 10 |
| imagick.skip_version_check | 1 | 1 |
intl
| Internationalization support | enabled |
| ICU version | 64.2 |
| ICU Data version | 64.2 |
| ICU TZData version | 2019a |
| ICU Unicode version | 12.1 |
| Directive | Local Value | Master Value |
|---|---|---|
| intl.default_locale | no value | no value |
| intl.error_level | 0 | 0 |
| intl.use_exceptions | Off | Off |
json
| json support | enabled |
ldap
| LDAP Support | enabled |
| Total Links | 0/unlimited |
| API Version | 3001 |
| Vendor Name | OpenLDAP |
| Vendor Version | 20459 |
| SASL Support | Enabled |
| Directive | Local Value | Master Value |
|---|---|---|
| ldap.max_links | Unlimited | Unlimited |
libxml
| libXML support | active |
| libXML Compiled Version | 2.9.14 |
| libXML Loaded Version | 20914 |
| libXML streams | enabled |
mailparse
| mailparse support | enabled |
|---|---|
| Extension Version | 3.1.2 |
| Directive | Local Value | Master Value |
|---|---|---|
| mailparse.def_charset | us-ascii | us-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 |
| Directive | Local Value | Master Value |
|---|---|---|
| mbstring.detect_order | no value | no value |
| mbstring.encoding_translation | Off | Off |
| mbstring.http_input | no value | no value |
| mbstring.http_output | no value | no value |
| mbstring.http_output_conv_mimetypes | ^(text/|application/xhtml\+xml) | ^(text/|application/xhtml\+xml) |
| mbstring.internal_encoding | no value | no value |
| mbstring.language | neutral | neutral |
| mbstring.regex_retry_limit | 1000000 | 1000000 |
| mbstring.regex_stack_limit | 100000 | 100000 |
| mbstring.strict_detection | Off | Off |
| mbstring.substitute_character | no value | no value |
memcached
| memcached support | enabled |
|---|---|
| Version | 3.1.5 |
| libmemcached version | 1.0.18 |
| SASL support | yes |
| Session support | yes |
| igbinary support | no |
| json support | no |
| msgpack support | no |
| Directive | Local Value | Master Value |
|---|---|---|
| memcached.compression_factor | 1.3 | 1.3 |
| memcached.compression_threshold | 2000 | 2000 |
| memcached.compression_type | fastlz | fastlz |
| memcached.default_binary_protocol | Off | Off |
| memcached.default_connect_timeout | 0 | 0 |
| memcached.default_consistent_hash | Off | Off |
| memcached.serializer | php | php |
| memcached.sess_binary_protocol | On | On |
| memcached.sess_connect_timeout | 0 | 0 |
| memcached.sess_consistent_hash | On | On |
| memcached.sess_consistent_hash_type | ketama | ketama |
| memcached.sess_lock_expire | 0 | 0 |
| memcached.sess_lock_max_wait | not set | not set |
| memcached.sess_lock_retries | 5 | 5 |
| memcached.sess_lock_wait | not set | not set |
| memcached.sess_lock_wait_max | 150 | 150 |
| memcached.sess_lock_wait_min | 150 | 150 |
| memcached.sess_locking | On | On |
| memcached.sess_number_of_replicas | 0 | 0 |
| memcached.sess_persistent | Off | Off |
| memcached.sess_prefix | memc.sess.key. | memc.sess.key. |
| memcached.sess_randomize_replica_read | Off | Off |
| memcached.sess_remove_failed_servers | Off | Off |
| memcached.sess_sasl_password | no value | no value |
| memcached.sess_sasl_username | no value | no value |
| memcached.sess_server_failure_limit | 0 | 0 |
| memcached.store_retry_count | 2 | 2 |
mysqli
| MysqlI Support | enabled |
| Client API library version | mysqlnd 8.4.14 |
| Active Persistent Links | 0 |
| Inactive Persistent Links | 0 |
| Active Links | 0 |
| Directive | Local Value | Master Value |
|---|---|---|
| mysqli.allow_local_infile | Off | Off |
| mysqli.allow_persistent | On | On |
| mysqli.default_host | no value | no value |
| mysqli.default_port | 3306 | 3306 |
| mysqli.default_pw | no value | no value |
| mysqli.default_socket | /run/mysqld/mysqld.sock | /run/mysqld/mysqld.sock |
| mysqli.default_user | no value | no value |
| mysqli.local_infile_directory | no value | no value |
| mysqli.max_links | Unlimited | Unlimited |
| mysqli.max_persistent | Unlimited | Unlimited |
| mysqli.rollback_on_cached_plink | Off | Off |
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 |
| Directive | Local Value | Master Value |
|---|---|---|
| openssl.cafile | no value | no value |
| openssl.capath | no value | no 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) |
| Directive | Local Value | Master Value |
|---|---|---|
| pcre.backtrack_limit | 1000000 | 1000000 |
| pcre.jit | Off | Off |
| pcre.recursion_limit | 100000 | 100000 |
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 |
| Directive | Local Value | Master 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 |
| Directive | Local Value | Master Value |
|---|---|---|
| pgsql.allow_persistent | On | On |
| pgsql.auto_reset_persistent | Off | Off |
| pgsql.ignore_notice | Off | Off |
| pgsql.log_notice | Off | Off |
| pgsql.max_links | Unlimited | Unlimited |
| pgsql.max_persistent | Unlimited | Unlimited |
Phar
| 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. |
| Directive | Local Value | Master Value |
|---|---|---|
| phar.cache_list | no value | no value |
| phar.readonly | Off | Off |
| phar.require_hash | On | On |
posix
| POSIX support | enabled |
random
| Version | 8.4.14 |
readline
| Readline Support | enabled |
| Readline library | 8.0 |
| Directive | Local Value | Master Value |
|---|---|---|
| cli.pager | no value | no 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 |
| Directive | Local Value | Master Value |
|---|---|---|
| session.auto_start | Off | Off |
| session.cache_expire | 180 | 180 |
| session.cache_limiter | nocache | nocache |
| session.cookie_domain | no value | no value |
| session.cookie_httponly | Off | Off |
| session.cookie_lifetime | 0 | 0 |
| session.cookie_path | / | / |
| session.cookie_samesite | no value | no value |
| session.cookie_secure | Off | Off |
| session.gc_divisor | 1000 | 1000 |
| session.gc_maxlifetime | 1440 | 1440 |
| session.gc_probability | 1 | 1 |
| session.lazy_write | On | On |
| session.name | PHPSESSID | PHPSESSID |
| session.referer_check | no value | no value |
| session.save_handler | files | files |
| session.save_path | /var/services/tmp | /var/services/tmp |
| session.serialize_handler | php | php |
| session.sid_bits_per_character | 4 | 4 |
| session.sid_length | 32 | 32 |
| session.upload_progress.cleanup | On | On |
| session.upload_progress.enabled | On | On |
| session.upload_progress.freq | 1% | 1% |
| session.upload_progress.min_freq | 1 | 1 |
| session.upload_progress.name | PHP_SESSION_UPLOAD_PROGRESS | PHP_SESSION_UPLOAD_PROGRESS |
| session.upload_progress.prefix | upload_progress_ | upload_progress_ |
| session.use_cookies | On | On |
| session.use_only_cookies | Off | Off |
| session.use_strict_mode | Off | Off |
| session.use_trans_sid | Off | Off |
shmop
| shmop support | enabled |
SimpleXML
| SimpleXML support | enabled |
| Schema support | enabled |
soap
| Soap Client | enabled |
| Soap Server | enabled |
| Directive | Local Value | Master Value |
|---|---|---|
| soap.wsdl_cache | 1 | 1 |
| soap.wsdl_cache_dir | /var/services/tmp | /var/services/tmp |
| soap.wsdl_cache_enabled | On | On |
| soap.wsdl_cache_limit | 5 | 5 |
| soap.wsdl_cache_ttl | 86400 | 86400 |
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 |
| Directive | Local Value | Master Value |
|---|---|---|
| sqlite3.defensive | On | On |
| sqlite3.extension_dir | no value | no value |
ssh2
| SSH2 support | enabled |
|---|---|
| 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 |
| Directive | Local Value | Master Value |
|---|---|---|
| assert.active | On | On |
| assert.bail | Off | Off |
| assert.callback | no value | no value |
| assert.exception | On | On |
| assert.warning | On | On |
| auto_detect_line_endings | Off | Off |
| default_socket_timeout | 60 | 60 |
| from | no value | no value |
| session.trans_sid_hosts | no value | no value |
| session.trans_sid_tags | a=href,area=href,frame=src,form= | a=href,area=href,frame=src,form= |
| unserialize_max_depth | 4096 | 4096 |
| url_rewriter.hosts | no value | no value |
| url_rewriter.tags | a=href,area=href,frame=src,input=src,form=fakeentry | a=href,area=href,frame=src,input=src,form=fakeentry |
| user_agent | no value | no value |
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 |
| Directive | Local Value | Master Value |
|---|---|---|
| zlib.output_compression | Off | Off |
| zlib.output_compression_level | -1 | -1 |
| zlib.output_handler | no value | no 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
HTTP
GET https://crm.tomp.eu/user/sign/in/editor:/open?XDEBUG_SESSION_STOP=1&file=%2Fvolume1%2Fweb%2Fnette-crm%2Fvendor%2Fnette%2Fforms%2Fsrc%2FForms%2FControls%2FCsrfProtection.php&line=41
| 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/forms/src/Forms/Controls/CsrfProtection.php'
|
| line | '41'
|
$_COOKIE
empty
Code: 200
| Set-Cookie | 'tracy-session=140385f734; expires=Tue, 09 Mar 2027 23:40:12 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');