
Forma na dort
26x6cm/2,1l, sklo
109 Kč + 600 bodů
Obsah balení
LogicException
Filter 'nl2br' is not defined. search►
Source file
File: .../src/Latte/Runtime/FilterExecutor.php:130
120: foreach ($this->_dynamic as $filter) { 121: $res = (Helpers::checkCallback($filter))(...$args); 122: if ($res !== null) { 123: return $res; 124: } elseif (isset($this->_static[$lname])) { // dynamic converted to classic 125: $this->$name = Helpers::checkCallback($this->_static[$lname][0]); 126: return ($this->$name)(...func_get_args()); 127: } 128: } 129: $hint = ($t = Helpers::getSuggestion(array_keys($this->_static), $name)) ? ", did you mean '$t'?" : '.'; 130: throw new \LogicException("Filter '$name' is not defined$hint"); 131: }; 132: } 133: 134:
Call stack
/home/www/coophorovice_cz/vernost/temp/cache/latte/templates-Odmeny-detail.latte--aa9f39eb5e.php:88 source Latte\Runtime\FilterExecutor->Latte\Runtime\{closure}(arguments)
78: ?> <section class="TechnicalSpec"> 79: <h3>Technické informace</h3> 80: <?php echo ($this->filters->nl2br)($l->TechInfo) /* line 31 */ ?> 81: 82: </section> 83: <?php 84: } 85: if ($l->Includes != '') { 86: ?> <section class="PackageInclude"> 87: <h3>Obsah balení</h3> 88: <?php echo ($this->filters->nl2br)($l->Includes) /* line 35 */ ?> 89: 90: </section> 91: <?php 92: }
#0 "1ks" (3)
.../latte/src/Latte/Runtime/Template.php:258 source Templateaa9f39eb5e->blockContent(arguments)
248: } 249: 250: $block = reset($this->blockQueue[$name]); 251: if ($mod && $mod !== ($blockType = $this->blockTypes[$name])) { 252: if ($filter = (is_string($mod) ? Filters::getConvertor($blockType, $mod) : $mod)) { 253: echo $filter($this->capture(function () use ($block, $params): void { $block($params); }), $blockType); 254: return; 255: } 256: trigger_error("Including block $name with content type " . strtoupper($blockType) . ' into incompatible type ' . strtoupper($mod) . '.', E_USER_WARNING); 257: } 258: $block($params); 259: } 260: 261: 262: /**
$_args /home/www/coophorovice_cz/vernost/temp/cache/latte/presenters-templates-@layout.latte--dd7e78bc4f.php:242 source Latte\Runtime\Template->renderBlock(arguments)
232: <div> 233: <p>a získejte věrnostní kartičku</p> 234: <img src="<?php echo LR\Filters::escapeHtmlAttr(LR\Filters::safeUrl($basePath)) /* line 145 */ ?>/images/karticka_vpcoop_@2x.png"> 235: </div> 236: </div> 237: </aside> 238: </div> 239: 240: <div class="ContentSide"> 241: <?php 242: $this->renderBlock('content', $this->params, 'html'); 243: ?> 244: </div> 245: </div> 246: <?php
$name "content" (7)
$params $mod "html" (4)
.../latte/src/Latte/Runtime/Template.php:179 source Templatedd7e78bc4f->main()
169: // old accumulators for back compatibility 170: $this->params['_l'] = new \stdClass; 171: $this->params['_g'] = $this->global; 172: $this->params['_b'] = (object) ['blocks' => &$this->blockQueue, 'types' => &$this->blockTypes]; 173: if (isset($this->global->snippetDriver) && $this->global->snippetBridge->isSnippetMode()) { 174: if ($this->global->snippetDriver->renderSnippets($this->blockQueue, $this->params)) { 175: return; 176: } 177: } 178: 179: $this->main(); 180: } 181: 182: 183: /**
.../latte/src/Latte/Runtime/Template.php:157 source Latte\Runtime\Template->render()
147: if ($this->referenceType === 'import') { 148: if ($this->parentName) { 149: $this->createTemplate($this->parentName, [], 'import')->render(); 150: } 151: return; 152: 153: } elseif ($this->parentName) { // extends 154: ob_start(function () {}); 155: $params = $this->main(); 156: ob_end_clean(); 157: $this->createTemplate($this->parentName, $params, 'extends')->render(); 158: return; 159: 160: } elseif (!empty($this->params['_renderblock'])) { // single block rendering 161: $tmp = $this;
.../vendor/latte/latte/src/Latte/Engine.php:75 source Latte\Runtime\Template->render()
65: $this->filters = new Runtime\FilterExecutor; 66: } 67: 68: 69: /** 70: * Renders template to output. 71: */ 72: public function render(string $name, array $params = [], string $block = null): void 73: { 74: $this->createTemplate($name, $params + ['_renderblock' => $block]) 75: ->render(); 76: } 77: 78: 79: /**
.../Bridges/ApplicationLatte/Template.php:52 source Latte\Engine->render(arguments)
42: return $this->latte; 43: } 44: 45: 46: /** 47: * Renders template to output. 48: * @return void 49: */ 50: public function render($file = null, array $params = []) 51: { 52: $this->latte->render($file ?: $this->file, $params + $this->params); 53: } 54: 55: 56: /**
$name "/home/www/coophorovice_cz/vernost/app/presenters/templates/Odmeny/detail.latte" (78)
$params .../Application/Responses/TextResponse.php:49 source Nette\Bridges\ApplicationLatte\Template->render()
39: } 40: 41: 42: /** 43: * Sends response to output. 44: * @return void 45: */ 46: public function send(Nette\Http\IRequest $httpRequest, Nette\Http\IResponse $httpResponse) 47: { 48: if ($this->source instanceof Nette\Application\UI\ITemplate) { 49: $this->source->render(); 50: 51: } else { 52: echo $this->source; 53: }
.../src/Application/Application.php:153 source Nette\Application\Responses\TextResponse->send(arguments)
143: } 144: $this->onPresenter($this, $this->presenter); 145: $response = $this->presenter->run(clone $request); 146: 147: if ($response instanceof Responses\ForwardResponse) { 148: $request = $response->getRequest(); 149: goto process; 150: 151: } elseif ($response) { 152: $this->onResponse($this, $response); 153: $response->send($this->httpRequest, $this->httpResponse); 154: } 155: } 156: 157:
$httpRequest $httpResponse .../src/Application/Application.php:83 source Nette\Application\Application->processRequest(arguments)
73: 74: 75: /** 76: * Dispatch a HTTP request to a front controller. 77: * @return void 78: */ 79: public function run() 80: { 81: try { 82: $this->onStartup($this); 83: $this->processRequest($this->createInitialRequest()); 84: $this->onShutdown($this); 85: 86: } catch (\Exception $e) { 87: } catch (\Throwable $e) {
$request .../coophorovice_cz/vernost/www/index.php:8 source Nette\Application\Application->run()
1: <?php 2: 3: // Uncomment this line if you must temporarily take down your site for maintenance. 4: // require __DIR__ . '/.maintenance.php'; 5: 6: $container = require __DIR__ . '/../app/bootstrap.php'; 7: 8: $container->getByType('Nette\Application\Application')->run(); 9:
Last muted error
Deprecated: The each() function is deprecated. This message will be suppressed on further calls
.../nette/http/src/Http/RequestFactory.php:115
105: $useFilter = (!in_array(ini_get('filter.default'), ['', 'unsafe_raw'], true) || ini_get('filter.default_flags')); 106: 107: $query = $url->getQueryParameters(); 108: $post = $useFilter ? filter_input_array(INPUT_POST, FILTER_UNSAFE_RAW) : (empty($_POST) ? [] : $_POST); 109: $cookies = $useFilter ? filter_input_array(INPUT_COOKIE, FILTER_UNSAFE_RAW) : (empty($_COOKIE) ? [] : $_COOKIE); 110: 111: // remove invalid characters 112: $reChars = '#^[' . self::CHARS . ']*+\z#u'; 113: if (!$this->binary) { 114: $list = [&$query, &$post, &$cookies]; 115: while (list($key, $val) = @each($list)) { // @ intentionally, deprecated in PHP 7.2 116: foreach ($val as $k => $v) { 117: if (is_string($k) && (!preg_match($reChars, $k) || preg_last_error())) { 118: unset($list[$key][$k]); 119:
Nette Application
Requests
Presenter
Environment
$_SERVER
REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID | "YooHKqcexLyg7arM9LBcTQAAAAo" (27)
|
---|---|
REDIRECT_REDIRECT_REDIRECT_STATUS | "200" (3)
|
REDIRECT_REDIRECT_UNIQUE_ID | "YooHKqcexLyg7arM9LBcTQAAAAo" (27)
|
REDIRECT_REDIRECT_STATUS | "200" (3)
|
REDIRECT_UNIQUE_ID | "YooHKqcexLyg7arM9LBcTQAAAAo" (27)
|
REDIRECT_STATUS | "200" (3)
|
UNIQUE_ID | "YooHKqcexLyg7arM9LBcTQAAAAo" (27)
|
HTTP_USER_AGENT | "CCBot/2.0 (https://commoncrawl.org/faq/)" (40)
|
HTTP_ACCEPT | "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8" (63)
|
HTTP_ACCEPT_LANGUAGE | "en-US,en;q=0.5" (14)
|
HTTP_ACCEPT_ENCODING | "br,gzip" (7)
|
HTTP_HOST | "vernost.coophorovice.cz" (23)
|
HTTP_CONNECTION | "Keep-Alive" (10)
|
PATH | "/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin" (49)
|
SERVER_SIGNATURE | ""
|
SERVER_SOFTWARE | "Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/7.3.33" (52)
|
SERVER_NAME | "vernost.coophorovice.cz" (23)
|
SERVER_ADDR | "91.228.45.154" (13)
|
SERVER_PORT | "80" (2)
|
REMOTE_ADDR | "44.200.25.51" (12)
|
DOCUMENT_ROOT | "/home/www/coophorovice_cz/vernost" (33)
|
REQUEST_SCHEME | "http" (4)
|
CONTEXT_PREFIX | ""
|
CONTEXT_DOCUMENT_ROOT | "/home/www/coophorovice_cz/vernost" (33)
|
SERVER_ADMIN | "hostmaster@4motion.cz" (21)
|
SCRIPT_FILENAME | "/home/www/coophorovice_cz/vernost/www/index.php" (47)
|
REMOTE_PORT | "50494" (5)
|
REDIRECT_URL | "/index.php" (10)
|
GATEWAY_INTERFACE | "CGI/1.1" (7)
|
SERVER_PROTOCOL | "HTTP/1.1" (8)
|
REQUEST_METHOD | "GET" (3)
|
QUERY_STRING | ""
|
REQUEST_URI | "/odmeny/detail/79" (17)
|
SCRIPT_NAME | "/www/index.php" (14)
|
PHP_SELF | "/www/index.php" (14)
|
REQUEST_TIME_FLOAT | 1653212970.269202
|
REQUEST_TIME | 1653212970
|
$_SESSION
__NF | Nette Session |
---|
Configuration options
Configuration
apache2handler
Apache Version | Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/7.3.33 |
Apache API Version | 20120211 |
Server Administrator | hostmaster@4motion.cz |
Hostname:Port | vernost.coophorovice.cz:0 |
User/Group | apache(48)/48 |
Max Requests | Per Child: 0 - Keep Alive: on - Max Per Connection: 100 |
Timeouts | Connection: 60 - Keep-Alive: 5 |
Virtual Server | Yes |
Server Root | /etc/httpd |
Loaded Modules | core mod_so http_core mod_access_compat mod_actions mod_alias mod_allowmethods mod_auth_basic mod_auth_digest mod_authn_anon mod_authn_core mod_authn_dbd mod_authn_dbm mod_authn_file mod_authn_socache mod_authz_core mod_authz_dbd mod_authz_dbm mod_authz_groupfile mod_authz_host mod_authz_owner mod_authz_user mod_autoindex mod_cache mod_cache_disk mod_data mod_dbd mod_deflate mod_dir mod_dumpio mod_echo mod_env mod_expires mod_ext_filter mod_filter mod_headers mod_include mod_info mod_log_config mod_logio mod_mime_magic mod_mime mod_negotiation mod_remoteip mod_reqtimeout mod_rewrite mod_setenvif mod_slotmem_plain mod_slotmem_shm mod_socache_dbm mod_socache_memcache mod_socache_shmcb mod_status mod_substitute mod_suexec mod_unique_id mod_unixd mod_userdir mod_version mod_vhost_alias mod_dav mod_dav_fs mod_dav_lock mod_lua prefork mod_proxy mod_lbmethod_bybusyness mod_lbmethod_byrequests mod_lbmethod_bytraffic mod_lbmethod_heartbeat mod_proxy_ajp mod_proxy_balancer mod_proxy_connect mod_proxy_express mod_proxy_fcgi mod_proxy_fdpass mod_proxy_ftp mod_proxy_http mod_proxy_scgi mod_proxy_wstunnel mod_ssl mod_systemd mod_cgi mod_php7 |
Directive | Local Value | Master Value |
---|---|---|
engine | 1 | 1 |
last_modified | 0 | 0 |
xbithack | 0 | 0 |
Apache Environment
Variable | Value |
---|---|
REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID | YooHKqcexLyg7arM9LBcTQAAAAo |
REDIRECT_REDIRECT_REDIRECT_STATUS | 200 |
REDIRECT_REDIRECT_UNIQUE_ID | YooHKqcexLyg7arM9LBcTQAAAAo |
REDIRECT_REDIRECT_STATUS | 200 |
REDIRECT_UNIQUE_ID | YooHKqcexLyg7arM9LBcTQAAAAo |
REDIRECT_STATUS | 200 |
UNIQUE_ID | YooHKqcexLyg7arM9LBcTQAAAAo |
HTTP_USER_AGENT | CCBot/2.0 (https://commoncrawl.org/faq/) |
HTTP_ACCEPT | text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 |
HTTP_ACCEPT_LANGUAGE | en-US,en;q=0.5 |
HTTP_ACCEPT_ENCODING | br,gzip |
HTTP_HOST | vernost.coophorovice.cz |
HTTP_CONNECTION | Keep-Alive |
PATH | /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin |
SERVER_SIGNATURE | no value |
SERVER_SOFTWARE | Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/7.3.33 |
SERVER_NAME | vernost.coophorovice.cz |
SERVER_ADDR | 91.228.45.154 |
SERVER_PORT | 80 |
REMOTE_ADDR | 44.200.25.51 |
DOCUMENT_ROOT | /home/www/coophorovice_cz/vernost |
REQUEST_SCHEME | http |
CONTEXT_PREFIX | no value |
CONTEXT_DOCUMENT_ROOT | /home/www/coophorovice_cz/vernost |
SERVER_ADMIN | hostmaster@4motion.cz |
SCRIPT_FILENAME | /home/www/coophorovice_cz/vernost/www/index.php |
REMOTE_PORT | 50494 |
REDIRECT_URL | /index.php |
GATEWAY_INTERFACE | CGI/1.1 |
SERVER_PROTOCOL | HTTP/1.1 |
REQUEST_METHOD | GET |
QUERY_STRING | no value |
REQUEST_URI | /odmeny/detail/79 |
SCRIPT_NAME | /www/index.php |
HTTP Headers Information
HTTP Request Headers | |
---|---|
HTTP Request | GET /odmeny/detail/79 HTTP/1.1 |
User-Agent | CCBot/2.0 (https://commoncrawl.org/faq/) |
Accept | text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 |
Accept-Language | en-US,en;q=0.5 |
Accept-Encoding | br,gzip |
Host | vernost.coophorovice.cz |
Connection | Keep-Alive |
HTTP Response Headers | |
X-Powered-By | Nette Framework |
X-Frame-Options | SAMEORIGIN |
Set-Cookie | PHPSESSID=g0rvek056d7fgfimadg1aauv90; expires=Sun, 05-Jun-2022 09:49:30 GMT; Max-Age=1209600; path=/; HttpOnly |
Expires | Thu, 19 Nov 1981 08:52:00 GMT |
Cache-Control | no-store, no-cache, must-revalidate |
Pragma | no-cache |
Vary | X-Requested-With, Accept-Encoding |
Content-Encoding | gzip |
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 |
Core
PHP Version | 7.3.33 |
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 | Off | Off |
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_prepend_string | no value | no value |
error_reporting | 32767 | 22527 |
expose_php | On | On |
extension_dir | /usr/lib64/php/modules | /usr/lib64/php/modules |
file_uploads | On | On |
hard_timeout | 2 | 2 |
highlight.comment | #998; font-style: italic | #FF8000 |
highlight.default | #000 | #0000BB |
highlight.html | #06B | #000000 |
highlight.keyword | #D24; font-weight: bold | #007700 |
highlight.string | #080 | #DD0000 |
html_errors | Off | On |
ignore_repeated_errors | Off | Off |
ignore_repeated_source | Off | Off |
ignore_user_abort | Off | Off |
implicit_flush | Off | Off |
include_path | .:/usr/share/pear:/usr/share/php | .:/usr/share/pear:/usr/share/php |
input_encoding | no value | no value |
internal_encoding | no value | no value |
log_errors | Off | On |
log_errors_max_len | 1024 | 1024 |
mail.add_x_header | Off | Off |
mail.force_extra_parameters | no value | no value |
mail.log | no value | no value |
max_execution_time | 60 | 60 |
max_file_uploads | 20 | 20 |
max_input_nesting_level | 64 | 64 |
max_input_time | 60 | 60 |
max_input_vars | 1000 | 1000 |
memory_limit | 512M | 512M |
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 | 16M | 16M |
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 | On | On |
request_order | GP | GP |
sendmail_from | no value | no value |
sendmail_path | /usr/sbin/sendmail -t -i | /usr/sbin/sendmail -t -i |
serialize_precision | -1 | -1 |
short_open_tag | Off | Off |
SMTP | localhost | localhost |
smtp_port | 25 | 25 |
sys_temp_dir | no value | no value |
syslog.facility | LOG_USER | LOG_USER |
syslog.filter | no-ctrl | no-ctrl |
syslog.ident | php | php |
track_errors | Off | Off |
unserialize_callback_func | no value | no value |
upload_max_filesize | 60M | 60M |
upload_tmp_dir | no value | no value |
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.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.29.0 |
Age | 3 |
Features | |
AsynchDNS | Yes |
CharConv | No |
Debug | No |
GSS-Negotiate | Yes |
IDN | Yes |
IPv6 | Yes |
krb4 | No |
Largefile | Yes |
libz | Yes |
NTLM | Yes |
NTLMWB | Yes |
SPNEGO | No |
SSL | Yes |
SSPI | No |
TLS-SRP | No |
Protocols | dict, file, ftp, ftps, gopher, http, https, imap, imaps, ldap, ldaps, pop3, pop3s, rtsp, scp, sftp, smtp, smtps, telnet, tftp |
Host | x86_64-redhat-linux-gnu |
SSL Version | NSS/3.53.1 |
ZLib Version | 1.2.7 |
libSSH Version | libssh2/1.8.0 |
Directive | Local Value | Master Value |
---|---|---|
curl.cainfo | no value | no value |
date
date/time support | enabled |
timelib version | 2018.04 |
"Olson" Timezone Database Version | 0.system |
Timezone Database | internal |
Default timezone | Europe/Prague |
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 | no value | no value |
dom
DOM/XML | enabled |
DOM/XML API Version | 20031129 |
libxml Version | 2.9.1 |
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 | 533 |
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 headers Version | 2.3.3 |
GD library Version | 2.3.3 |
FreeType Support | enabled |
FreeType Linkage | with freetype |
FreeType Version | 2.8.0 |
GIF Read Support | enabled |
GIF Create Support | enabled |
JPEG Support | enabled |
libJPEG Version | 6b |
PNG Support | enabled |
libPNG Version | 1.5.13 |
WBMP Support | enabled |
XPM Support | enabled |
libXpm Version | 30411 |
XBM Support | enabled |
WebP Support | enabled |
Directive | Local Value | Master Value |
---|---|---|
gd.jpeg_ignore_warning | 1 | 1 |
gettext
GetText Support | enabled |
hash
hash support | enabled |
Hashing Engines | md2 md4 md5 sha1 sha224 sha256 sha384 sha512/224 sha512/256 sha512 sha3-224 sha3-256 sha3-384 sha3-512 ripemd128 ripemd160 ripemd256 ripemd320 whirlpool tiger128,3 tiger160,3 tiger192,3 tiger128,4 tiger160,4 tiger192,4 snefru snefru256 gost gost-crypto adler32 crc32 crc32b fnv132 fnv1a32 fnv164 fnv1a64 joaat haval128,3 haval160,3 haval192,3 haval224,3 haval256,3 haval128,4 haval160,4 haval192,4 haval224,4 haval256,4 haval128,5 haval160,5 haval192,5 haval224,5 haval256,5 |
MHASH support | Enabled |
MHASH API Version | Emulated Support |
iconv
iconv support | enabled |
iconv implementation | glibc |
iconv library version | 2.17 |
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.7.0 |
imagick classes | Imagick, ImagickDraw, ImagickPixel, ImagickPixelIterator, ImagickKernel |
Imagick compiled with ImageMagick version | ImageMagick 6.9.12-34 Q16 x86_64 2021-12-22 https://imagemagick.org |
Imagick using ImageMagick library version | ImageMagick 6.9.12-41 Q16 x86_64 2022-02-21 https://imagemagick.org |
ImageMagick copyright | (C) 1999-2021 ImageMagick Studio LLC |
ImageMagick release date | 2022-02-21 |
ImageMagick number of supported formats: | 244 |
ImageMagick supported formats | 3FR, 3G2, 3GP, AAI, AI, APNG, ART, ARW, AVI, 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, 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, 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 |
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 | 69.1 |
ICU Data version | 69.1 |
ICU TZData version | 2021a |
ICU Unicode version | 13.0 |
Directive | Local Value | Master Value |
---|---|---|
intl.default_locale | no value | no value |
intl.error_level | 0 | 0 |
intl.use_exceptions | 0 | 0 |
json
json support | enabled |
json version | 1.7.0 |
libxml
libXML support | active |
libXML Compiled Version | 2.9.1 |
libXML Loaded Version | 20901 |
libXML streams | enabled |
mbstring
Multibyte Support | enabled |
Multibyte string engine | libmbfl |
HTTP input encoding translation | disabled |
libmbfl version | 1.3.2 |
oniguruma version | 6.9.7 |
mbstring extension makes use of "streamable kanji code filter and converter", which is distributed under the GNU Lesser General Public License version 2.1. |
---|
Multibyte (japanese) regex support | enabled |
Multibyte regex (oniguruma) version | 6.9.7 |
Directive | Local Value | Master Value |
---|---|---|
mbstring.detect_order | no value | no value |
mbstring.encoding_translation | Off | Off |
mbstring.func_overload | 0 | 0 |
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_stack_limit | 100000 | 100000 |
mbstring.strict_detection | Off | Off |
mbstring.substitute_character | no value | no value |
mysqli
MysqlI Support | enabled |
---|---|
Client API library version | mysqlnd 5.0.12-dev - 20150407 - $Id: 7cc7cc96e675f6d72e5cf0f267f48e167c2abb23 $ |
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 | /var/lib/mysql/mysql.sock | /var/lib/mysql/mysql.sock |
mysqli.default_user | no value | no value |
mysqli.max_links | Unlimited | Unlimited |
mysqli.max_persistent | Unlimited | Unlimited |
mysqli.reconnect | Off | Off |
mysqli.rollback_on_cached_plink | Off | Off |
mysqlnd
mysqlnd | enabled |
---|---|
Version | mysqlnd 5.0.12-dev - 20150407 - $Id: 7cc7cc96e675f6d72e5cf0f267f48e167c2abb23 $ |
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_sha256_password |
API Extensions | mysqli,pdo_mysql |
mysqlnd statistics | |
---|---|
bytes_sent | 81592 |
bytes_received | 4972913 |
packets_sent | 954 |
packets_received | 8749 |
protocol_overhead_in | 34996 |
protocol_overhead_out | 3816 |
bytes_received_ok_packet | 0 |
bytes_received_eof_packet | 0 |
bytes_received_rset_header_packet | 3753 |
bytes_received_rset_field_meta_packet | 0 |
bytes_received_rset_row_packet | 2690 |
bytes_received_prepare_response_packet | 151724 |
bytes_received_change_user_packet | 4811429 |
packets_sent_command | 466 |
packets_received_ok | 0 |
packets_received_eof | 0 |
packets_received_rset_header | 417 |
packets_received_rset_field_meta | 0 |
packets_received_rset_row | 452 |
packets_received_prepare_response | 2037 |
packets_received_change_user | 5817 |
result_set_queries | 417 |
non_result_set_queries | 35 |
no_index_used | 39 |
bad_index_used | 0 |
slow_queries | 0 |
buffered_sets | 417 |
unbuffered_sets | 0 |
ps_buffered_sets | 0 |
ps_unbuffered_sets | 0 |
flushed_normal_sets | 0 |
flushed_ps_sets | 0 |
ps_prepared_never_executed | 0 |
ps_prepared_once_executed | 0 |
rows_fetched_from_server_normal | 5400 |
rows_fetched_from_server_ps | 0 |
rows_buffered_from_client_normal | 5400 |
rows_buffered_from_client_ps | 0 |
rows_fetched_from_client_normal_buffered | 5400 |
rows_fetched_from_client_normal_unbuffered | 0 |
rows_fetched_from_client_ps_buffered | 0 |
rows_fetched_from_client_ps_unbuffered | 0 |
rows_fetched_from_client_ps_cursor | 0 |
rows_affected_normal | 13 |
rows_affected_ps | 0 |
rows_skipped_normal | 5400 |
rows_skipped_ps | 0 |
copy_on_write_saved | 0 |
copy_on_write_performed | 0 |
command_buffer_too_small | 2 |
connect_success | 11 |
connect_failure | 0 |
connection_reused | 0 |
reconnect | 0 |
pconnect_success | 4 |
active_connections | 18446744073709551607 |
active_persistent_connections | 18446744073709551612 |
explicit_close | 10 |
implicit_close | 0 |
disconnect_close | 0 |
in_middle_of_command_close | 0 |
explicit_free_result | 417 |
implicit_free_result | 0 |
explicit_stmt_close | 0 |
implicit_stmt_close | 0 |
mem_emalloc_count | 0 |
mem_emalloc_amount | 0 |
mem_ecalloc_count | 0 |
mem_ecalloc_amount | 0 |
mem_erealloc_count | 0 |
mem_erealloc_amount | 0 |
mem_efree_count | 0 |
mem_efree_amount | 0 |
mem_malloc_count | 0 |
mem_malloc_amount | 0 |
mem_calloc_count | 0 |
mem_calloc_amount | 0 |
mem_realloc_count | 0 |
mem_realloc_amount | 0 |
mem_free_count | 0 |
mem_free_amount | 0 |
mem_estrndup_count | 0 |
mem_strndup_count | 0 |
mem_estrdup_count | 0 |
mem_strdup_count | 0 |
mem_edupl_count | 0 |
mem_dupl_count | 0 |
proto_text_fetched_null | 0 |
proto_text_fetched_bit | 0 |
proto_text_fetched_tinyint | 18 |
proto_text_fetched_short | 0 |
proto_text_fetched_int24 | 2 |
proto_text_fetched_int | 778 |
proto_text_fetched_bigint | 4954 |
proto_text_fetched_decimal | 5 |
proto_text_fetched_float | 0 |
proto_text_fetched_double | 1 |
proto_text_fetched_date | 10 |
proto_text_fetched_year | 0 |
proto_text_fetched_time | 9 |
proto_text_fetched_datetime | 1449 |
proto_text_fetched_timestamp | 2 |
proto_text_fetched_string | 7887 |
proto_text_fetched_blob | 0 |
proto_text_fetched_enum | 6761 |
proto_text_fetched_set | 0 |
proto_text_fetched_geometry | 0 |
proto_text_fetched_other | 0 |
proto_binary_fetched_null | 0 |
proto_binary_fetched_bit | 0 |
proto_binary_fetched_tinyint | 0 |
proto_binary_fetched_short | 0 |
proto_binary_fetched_int24 | 0 |
proto_binary_fetched_int | 0 |
proto_binary_fetched_bigint | 0 |
proto_binary_fetched_decimal | 0 |
proto_binary_fetched_float | 0 |
proto_binary_fetched_double | 0 |
proto_binary_fetched_date | 0 |
proto_binary_fetched_year | 0 |
proto_binary_fetched_time | 0 |
proto_binary_fetched_datetime | 0 |
proto_binary_fetched_timestamp | 0 |
proto_binary_fetched_string | 0 |
proto_binary_fetched_json | 0 |
proto_binary_fetched_blob | 0 |
proto_binary_fetched_enum | 0 |
proto_binary_fetched_set | 0 |
proto_binary_fetched_geometry | 0 |
proto_binary_fetched_other | 0 |
init_command_executed_count | 0 |
init_command_failed_count | 0 |
com_quit | 10 |
com_init_db | 4 |
com_query | 452 |
com_field_list | 0 |
com_create_db | 0 |
com_drop_db | 0 |
com_refresh | 0 |
com_shutdown | 0 |
com_statistics | 0 |
com_process_info | 0 |
com_connect | 0 |
com_process_kill | 0 |
com_debug | 0 |
com_ping | 0 |
com_time | 0 |
com_delayed_insert | 0 |
com_change_user | 0 |
com_binlog_dump | 0 |
com_table_dump | 0 |
com_connect_out | 0 |
com_register_slave | 0 |
com_stmt_prepare | 0 |
com_stmt_execute | 0 |
com_stmt_send_long_data | 0 |
com_stmt_close | 0 |
com_stmt_reset | 0 |
com_stmt_set_option | 0 |
com_stmt_fetch | 0 |
com_deamon | 0 |
bytes_received_real_data_normal | 4765561 |
bytes_received_real_data_ps | 0 |
openssl
OpenSSL support | enabled |
OpenSSL Library Version | OpenSSL 1.0.2k-fips 26 Jan 2017 |
OpenSSL Header Version | OpenSSL 1.0.2k 26 Jan 2017 |
Openssl default config | /etc/pki/tls/openssl.cnf |
Directive | Local Value | Master Value |
---|---|---|
openssl.cafile | no value | no value |
openssl.capath | no value | no value |
pcre
PCRE (Perl Compatible Regular Expressions) Support | enabled |
PCRE Library Version | 10.32 2018-09-10 |
PCRE Unicode Version | 11.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 | 0 | 0 |
pcre.recursion_limit | 100000 | 100000 |
PDO
PDO support | enabled |
---|---|
PDO drivers | mysql, sqlite |
pdo_mysql
PDO Driver for MySQL | enabled |
---|---|
Client API version | mysqlnd 5.0.12-dev - 20150407 - $Id: 7cc7cc96e675f6d72e5cf0f267f48e167c2abb23 $ |
Directive | Local Value | Master Value |
---|---|---|
pdo_mysql.default_socket | /var/lib/mysql/mysql.sock | /var/lib/mysql/mysql.sock |
pdo_sqlite
PDO Driver for SQLite 3.x | enabled |
---|---|
SQLite Library | 3.7.17 |
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. |
Directive | Local Value | Master Value |
---|---|---|
phar.cache_list | no value | no value |
phar.readonly | On | On |
phar.require_hash | On | On |
Reflection
Reflection | enabled |
session
Session Support | enabled |
Registered save handlers | files user |
Registered serializer handlers | php_serialize php php_binary wddx |
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 | 1 | no value |
session.cookie_lifetime | 1209600 | 0 |
session.cookie_path | / | / |
session.cookie_samesite | no value | no value |
session.cookie_secure | 0 | 0 |
session.gc_divisor | 1000 | 1000 |
session.gc_maxlifetime | 1209600 | 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/lib/php/session | no value |
session.serialize_handler | php | php |
session.sid_bits_per_character | 5 | 5 |
session.sid_length | 26 | 26 |
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 | 1 | 1 |
session.use_only_cookies | 1 | 1 |
session.use_strict_mode | 0 | 0 |
session.use_trans_sid | 0 | 0 |
SimpleXML
SimpleXML support | enabled |
Schema support | enabled |
sockets
Sockets Support | enabled |
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.7.17 |
Directive | Local Value | Master Value |
---|---|---|
sqlite3.extension_dir | no value | no value |
standard
Dynamic Library Support | enabled |
Path to sendmail | /usr/sbin/sendmail -t -i |
Directive | Local Value | Master Value |
---|---|---|
assert.active | 1 | 1 |
assert.bail | 0 | 0 |
assert.callback | no value | no value |
assert.exception | 0 | 0 |
assert.quiet_eval | 0 | 0 |
assert.warning | 1 | 1 |
auto_detect_line_endings | 0 | 0 |
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= |
url_rewriter.hosts | no value | no value |
url_rewriter.tags | form= | form= |
user_agent | no value | no value |
tokenizer
Tokenizer Support | enabled |
wddx
WDDX Support | enabled |
---|---|
WDDX Session Serializer | enabled |
xml
XML Support | active |
XML Namespace Support | active |
libxml2 Version | 2.9.1 |
xmlreader
XMLReader | enabled |
xmlwriter
XMLWriter | enabled |
xsl
XSL | enabled |
libxslt Version | 1.1.28 |
libxslt compiled against libxml Version | 2.9.1 |
EXSLT | enabled |
libexslt Version | 1.1.28 |
zip
Zip | enabled |
Zip version | 1.20.0 |
Libzip version | 1.8.0 |
BZIP2 compression | Yes |
XZ compression | Yes |
ZSTD compression | Yes |
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.7 |
Linked Version | 1.2.7 |
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 |
---|
HTTP request
URL
http://vernost.coophorovice.cz/odmeny/detail/79
Headers
User-Agent | CCBot/2.0 (https://commoncrawl.org/faq/) |
---|---|
Accept | text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 |
Accept-Language | en-US,en;q=0.5 |
Accept-Encoding | br,gzip |
Host | vernost.coophorovice.cz |
Connection | Keep-Alive |
$_GET
empty
$_POST
empty
$_COOKIE
empty
HTTP response
Headers
X-Powered-By | Nette Framework |
---|---|
Content-Type | text/html; charset=utf-8 |
X-Frame-Options | SAMEORIGIN |
Set-Cookie | PHPSESSID=g0rvek056d7fgfimadg1aauv90; expires=Sun, 05-Jun-2022 09:49:30 GMT; Max-Age=1209600; path=/; HttpOnly |
Expires | Thu, 19 Nov 1981 08:52:00 GMT |
Cache-Control | no-store, no-cache, must-revalidate |
Pragma | no-cache |
Vary | X-Requested-With |
- Please support Tracy via a donation 💙️
- Report generated at 2022/05/22 11:49:30
- http://vernost.coophorovice.cz/odmeny/detail/79
- PHP 7.3.33
- Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/7.3.33
- Tracy 2.6.4
- Nette Framework 2.5