Warning

Undefined property: stdClass::$created search► skip error►

File: .../Presenters-templates-@layout.latte--3fa57f96d4.php:195

185: echo '"> 186: '; 187: } 188: if (!empty($cfg->section)) /* line 53 */ { 189: echo ' <meta property="article:section" content="'; 190: echo LR\Filters::escapeHtmlAttr($cfg->section) /* line 53 */; 191: echo '"> 192: '; 193: } 194: echo ' <meta property="article:published_time" content="'; 195: echo LR\Filters::escapeHtmlAttr(($this->filters->date)($page->created, 'c')) /* line 54 */; 196: echo '"> 197: '; 198: if (!empty($page->changed)) /* line 55 */ { 199: echo ' <meta property="article:modified_time" content="';

File: .../momowien.at/app/Presenters/templates/@layout.latte:54

44: <meta itemprop="name" content="{$cfg->companyName}" n:if="!empty($cfg->companyName)"> 45: <meta itemprop="telephone" content="{$cfg->companyTelephone}" n:if="!empty($cfg->companyTelephone)"> 46: <meta itemprop="priceRange" content="{$cfg->companyPriceRange}" n:if="!empty($cfg->companyPriceRange)"> 47: <meta itemprop="description" content="{$page->description}" n:if="!empty($page->description)"> 48: <meta itemprop="image" content="{$urlImg}/momowien_social.jpg{$cfg->cacheKey}"> 49: 50: <meta property="article:publisher" content="{$cfg->companyName}"> 51: <meta property="article:author" content="{$cfg->companyName}"> 52: <meta property="article:tag" content="{$page->tags|replace: ' ', ', '}" n:if="!empty($page->tags)"> 53: <meta property="article:section" content="{$cfg->section}" n:if="!empty($cfg->section)"> 54: <meta property="article:published_time" content="{$page->created|date:'c'}"> 55: <meta property="article:modified_time" content="{$page->changed|date:'c'}" n:if="!empty($page->changed)"> 56: 57: <meta http-equiv="x-ua-compatible" content="ie=edge"> 58:
161: /** 162: * Renders template. 163: * @internal 164: */ 165: public function render(?string $block = null): void 166: { 167: $level = ob_get_level(); 168: try { 169: $this->prepare(); 170: if (!$this->doRender($block)) { 171: $this->main(); 172: } 173: 174: } catch (\Throwable $e) { 175: while (ob_get_level() > $level) {
193: 194: if ($this->referenceType === 'import') { 195: if ($this->parentName) { 196: throw new Latte\RuntimeException('Imported template cannot use {extends} or {layout}, use {import}'); 197: } 198: 199: } elseif ($this->parentName) { // extends 200: ob_start(function () {}); 201: $this->params = $this->main(); 202: ob_end_clean(); 203: $this->createTemplate($this->parentName, $this->params, 'extends')->render($block); 204: 205: } elseif ($block !== null) { // single block rendering 206: $this->renderBlock($block, $this->params); 207:
$block
null
160: 161: /** 162: * Renders template. 163: * @internal 164: */ 165: public function render(?string $block = null): void 166: { 167: $level = ob_get_level(); 168: try { 169: $this->prepare(); 170: if (!$this->doRender($block)) { 171: $this->main(); 172: } 173: 174: } catch (\Throwable $e) {
$block
null
92: 93: /** 94: * Renders template to output. 95: * @param object|mixed[] $params 96: */ 97: public function render(string $name, $params = [], ?string $block = null): void 98: { 99: $template = $this->createTemplate($name, $this->processParams($params)); 100: $template->global->coreCaptured = false; 101: ($this->probe)($template); 102: $template->render($block); 103: } 104: 105: 106: /**
$block
null
36: return $this->latte; 37: } 38: 39: 40: /** 41: * Renders template to output. 42: */ 43: public function render(?string $file = null, array $params = []): void 44: { 45: Nette\Utils\Arrays::toObject($params, $this); 46: $this->latte->render($file ?: $this->file, $this); 47: } 48: 49: 50: /**
$name
'/data/a/e/ae9ebf9b-7ad5-4a3c-8d55-03e1f3291f8b/momowien.at/app/Presenters/templates/Homepage/default.latte'
$params

40: return $this->source; 41: } 42: 43: 44: /** 45: * Sends response to output. 46: */ 47: public function send(Nette\Http\IRequest $httpRequest, Nette\Http\IResponse $httpResponse): void 48: { 49: if ($this->source instanceof Nette\Application\UI\Template) { 50: $this->source->render(); 51: 52: } else { 53: echo $this->source; 54: }
161: 162: Arrays::invoke($this->onPresenter, $this, $this->presenter); 163: $response = $this->presenter->run(clone $request); 164: 165: if ($response instanceof Responses\ForwardResponse) { 166: $request = $response->getRequest(); 167: goto process; 168: } 169: 170: Arrays::invoke($this->onResponse, $this, $response); 171: $response->send($this->httpRequest, $this->httpResponse); 172: } 173: 174: 175: public function processException(\Throwable $e): void
$httpRequest

$httpResponse

80: } 81: 82: 83: /** 84: * Dispatch a HTTP request to a front controller. 85: */ 86: public function run(): void 87: { 88: try { 89: Arrays::invoke($this->onStartup, $this); 90: $this->processRequest($this->createInitialRequest()); 91: Arrays::invoke($this->onShutdown, $this); 92: 93: } catch (\Throwable $e) { 94: Arrays::invoke($this->onError, $this, $e);
$request

4: 5: // Visit check 6: //require __DIR__ . '/visits.php'; 7: 8: require __DIR__ . '/../vendor/autoload.php'; 9: 10: $configurator = App\Bootstrap::boot(); 11: $container = $configurator->createContainer(); 12: $application = $container->getByType(Nette\Application\Application::class); 13: 14: $application->run();

	

Requests


Presenter


			
REDIRECT_HTTPS
'on'
REDIRECT_GEOIP_COUNTRY_CODE
'US'
REDIRECT_UNIQUE_ID
'ZflJdLqKQI0DjJDajlzr0gAAAAE'
REDIRECT_DOCROOT
'/data/a/e/ae9ebf9b-7ad5-4a3c-8d55-03e1f3291f8b/momowien.at/web/'
REDIRECT_filter-errordocs
''
REDIRECT_STATUS
'200'
HTTPS
'on'
GEOIP_COUNTRY_CODE
'US'
UNIQUE_ID
'ZflJdLqKQI0DjJDajlzr0gAAAAE'
DOCROOT
'/data/a/e/ae9ebf9b-7ad5-4a3c-8d55-03e1f3291f8b/momowien.at/web/'
filter-errordocs
''
HTTP_HOST
'momowien.at'
HTTP_X_REAL_IP
'54.85.255.74'
HTTP_X_FORWARDED_FOR
'54.85.255.74, 54.85.255.74'
HTTP_X_FORWARDED_PROTO
'https'
HTTP_HTTPS
'1'
HTTP_X_PROXY_IP
'10.20.6.1'
HTTP_ACCEPT
'*/*'
HTTP_USER_AGENT
'claudebot'
HTTP_WS_GEO_COUNTRY
'US'
HTTP_MAX_FORWARDS
'7'
HTTP_X_FORWARDED_HOST
'momowien.at'
HTTP_X_FORWARDED_SERVER
'momowien.at'
HTTP_CONNECTION
'close'
PATH
'/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin'
SERVER_SIGNATURE
''
SERVER_SOFTWARE
'Apache'
SERVER_NAME
'momowien.at'
SERVER_ADDR
'127.0.0.1'
SERVER_PORT
'443'
REMOTE_ADDR
'54.85.255.74'
DOCUMENT_ROOT
'/data/a/e/ae9ebf9b-7ad5-4a3c-8d55-03e1f3291f8b/momowien.at/web/'
REQUEST_SCHEME
'https'
CONTEXT_PREFIX
''
CONTEXT_DOCUMENT_ROOT
'/data/a/e/ae9ebf9b-7ad5-4a3c-8d55-03e1f3291f8b/momowien.at/web/'
SERVER_ADMIN
'admin@websupport.sk'
SCRIPT_FILENAME
'/data/a/e/ae9ebf9b-7ad5-4a3c-8d55-03e1f3291f8b/momowien.at/web/index.php'
REMOTE_PORT
'50440'
REDIRECT_URL
'/impressum/'
GATEWAY_INTERFACE
'CGI/1.1'
SERVER_PROTOCOL
'HTTP/1.1'
REQUEST_METHOD
'GET'
QUERY_STRING
''
REQUEST_URI
'/impressum/'
SCRIPT_NAME
'/index.php'
PHP_SELF
'/index.php'
REQUEST_TIME_FLOAT
1710836084.99145
REQUEST_TIME
1710836084
argv
array (0)
argc
0
__NFNette Session

Nette Session

Nette.Http.UserStorage/
null

PHP Vendor

Debian Packaging
This PHP version is maintained by Freexian SARL as part of their PHP LTS offer. This service is run together with Ondřej Surý, that's why a small subset of the PHP LTS packages are made freely available on DEB.SURY.ORG.

apache2handler

Apache Version Apache
Apache API Version 20120211
Server Administrator admin@websupport.sk
Hostname:Port momowien.at:0
User/Group apache(996)/996
Max Requests Per Child: 500 - Keep Alive: off - Max Per Connection: 500
Timeouts Connection: 300 - Keep-Alive: 4
Virtual Server Yes
Server Root /usr/lib/apache2
Loaded Modules core mod_so mod_watchdog http_core mod_log_config mod_logio mod_version mod_unixd prefork mod_rewrite mod_access_compat mod_actions mod_alias mod_allowmethods mod_auth_basic mod_auth_digest mod_auth_form 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_buffer mod_cache mod_cache_disk mod_cache_socache mod_dav mod_dav_fs mod_dbd mod_deflate mod_dir mod_dumpio mod_env mod_expires mod_ext_filter mod_fakessl mod_file_cache mod_filter mod_geoip mod_ignorepython mod_include mod_info mod_lbmethod_bybusyness mod_lbmethod_byrequests mod_lbmethod_bytraffic mod_lbmethod_heartbeat mod_log_debug mod_macro mod_mime mod_negotiation mod_php mod_proxy mod_proxy_ajp mod_proxy_balancer mod_proxy_connect mod_proxy_express mod_proxy_fcgi mod_proxy_ftp mod_proxy_http mod_proxy_scgi mod_proxy_wstunnel mod_ratelimit mod_remoteip mod_reqtimeout mod_request mod_rpaf mod_ruid mod_sed mod_session mod_session_cookie mod_session_dbd mod_setenvif mod_slotmem_shm mod_socache_dbm mod_socache_memcache mod_socache_shmcb mod_speling mod_status mod_substitute mod_unique_id mod_userdir mod_vhost_alias mod_vhost_cdb_8 mod_vhost_rusage
DirectiveLocal ValueMaster Value
engineOnOn
last_modifiedOnOff
xbithackOffOff

Apache Environment

VariableValue
REDIRECT_HTTPS on
REDIRECT_GEOIP_COUNTRY_CODE US
REDIRECT_UNIQUE_ID ZflJdLqKQI0DjJDajlzr0gAAAAE
REDIRECT_DOCROOT /data/a/e/ae9ebf9b-7ad5-4a3c-8d55-03e1f3291f8b/momowien.at/web/
REDIRECT_filter-errordocs no value
REDIRECT_STATUS 200
HTTPS on
GEOIP_COUNTRY_CODE US
UNIQUE_ID ZflJdLqKQI0DjJDajlzr0gAAAAE
DOCROOT /data/a/e/ae9ebf9b-7ad5-4a3c-8d55-03e1f3291f8b/momowien.at/web/
filter-errordocs no value
HTTP_HOST momowien.at
HTTP_X_REAL_IP 54.85.255.74
HTTP_X_FORWARDED_FOR 54.85.255.74, 54.85.255.74
HTTP_X_FORWARDED_PROTO https
HTTP_HTTPS 1
HTTP_X_PROXY_IP 10.20.6.1
HTTP_ACCEPT */*
HTTP_USER_AGENT claudebot
HTTP_WS_GEO_COUNTRY US
HTTP_MAX_FORWARDS 7
HTTP_X_FORWARDED_HOST momowien.at
HTTP_X_FORWARDED_SERVER momowien.at
HTTP_CONNECTION close
PATH /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
SERVER_SIGNATURE no value
SERVER_SOFTWARE Apache
SERVER_NAME momowien.at
SERVER_ADDR 127.0.0.1
SERVER_PORT 443
REMOTE_ADDR 54.85.255.74
DOCUMENT_ROOT /data/a/e/ae9ebf9b-7ad5-4a3c-8d55-03e1f3291f8b/momowien.at/web/
REQUEST_SCHEME https
CONTEXT_PREFIX no value
CONTEXT_DOCUMENT_ROOT /data/a/e/ae9ebf9b-7ad5-4a3c-8d55-03e1f3291f8b/momowien.at/web/
SERVER_ADMIN admin@websupport.sk
SCRIPT_FILENAME /data/a/e/ae9ebf9b-7ad5-4a3c-8d55-03e1f3291f8b/momowien.at/web/index.php
REMOTE_PORT 50440
REDIRECT_URL /impressum/
GATEWAY_INTERFACE CGI/1.1
SERVER_PROTOCOL HTTP/1.1
REQUEST_METHOD GET
QUERY_STRING no value
REQUEST_URI /impressum/
SCRIPT_NAME /index.php

HTTP Headers Information

HTTP Request Headers
HTTP Request GET /impressum/ HTTP/1.1
Host momowien.at
X-Real-IP 54.85.255.74
X-Forwarded-For 54.85.255.74, 54.85.255.74
X-Forwarded-Proto https
HTTPS 1
X-Proxy-IP 10.20.6.1
accept */*
user-agent claudebot
WS-GEO-COUNTRY US
Max-Forwards 7
X-Forwarded-Host momowien.at
X-Forwarded-Server momowien.at
Connection close
HTTP Response Headers
Last-Modified Tue, 19 Mar 2024 08:14:45 GMT
Set-Cookie tracy-session=eeefaec8d3; expires=Wed, 19-Mar-2025 14:14:45 GMT; Max-Age=31557600; path=/; HttpOnly
X-Powered-By Tomas Stofik
X-Content-Type-Options nosniff
X-XSS-Protection 1; mode=block
Referrer-Policy strict-origin-when-cross-origin
Strict-Transport-Security max-age=63072000; includeSubDomains; preload
Permissions-Policy geolocation=(self "https://momowien.at"), microphone=()
X-Frame-Options SAMEORIGIN
Content-Security-Policy default-src * 'self' 'unsafe-inline'; style-src * 'self' 'unsafe-inline' 'unsafe-eval'; font-src * 'self' data:; script-src * 'self' 'unsafe-inline' 'unsafe-eval'; img-src * bulma.io 'self' data:;
Set-Cookie _nss=1; path=/; secure; HttpOnly; SameSite=Strict
Vary X-Requested-With
Expires -1
Cache-Control must-revalidate, private
Access-Control-Allow-Origin X-Requested-With

apcu

APCu Support Enabled
Version 5.1.22
APCu Debugging Disabled
MMAP Support Enabled
MMAP File Mask no value
Serialization Support php
Build Date Sep 29 2023 04:40:32
DirectiveLocal ValueMaster Value
apc.coredump_unmapOffOff
apc.enable_cliOffOff
apc.enabledOnOn
apc.entries_hint40964096
apc.gc_ttl36003600
apc.mmap_file_maskno valueno value
apc.preload_pathno valueno value
apc.serializerphpphp
apc.shm_segments11
apc.shm_size32M32M
apc.slam_defenseOffOff
apc.smart00
apc.ttl00
apc.use_request_timeOffOff

bcmath

BCMath support enabled
DirectiveLocal ValueMaster Value
bcmath.scale00

bz2

BZip2 Support Enabled
Stream Wrapper support compress.bzip2://
Stream Filter support bzip2.decompress, bzip2.compress
BZip2 Version 1.0.8, 13-Jul-2019

calendar

Calendar support enabled

Core

PHP Version 8.1.27
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
browscap/etc/php_browscap.ini/etc/php_browscap.ini
default_charsetUTF-8UTF-8
default_mimetypetext/htmltext/html
disable_classesno valueno value
disable_functionsopcache_compile_file,opcache_get_configuration,opcache_invalidate,opcache_resetopcache_compile_file,opcache_get_configuration,opcache_invalidate,opcache_reset
display_errorsOnOn
display_startup_errorsOnOff
doc_rootno valueno value
docref_extno valueno value
docref_rootno valueno value
enable_dlOffOff
enable_post_data_readingOnOn
error_append_stringno valueno value
error_logno valueno value
error_prepend_stringno valueno value
error_reporting3276769
expose_phpOffOff
extension_dir/usr/lib/php/20210902/usr/lib/php/20210902
fiber.stack_sizeno valueno value
file_uploadsOnOn
hard_timeout22
highlight.comment#998; font-style: italic#FF8000
highlight.default#000#0000BB
highlight.html#06B#000000
highlight.keyword#D24; font-weight: bold#007700
highlight.string#080#DD0000
html_errorsOffOn
ignore_repeated_errorsOnOn
ignore_repeated_sourceOffOff
ignore_user_abortOffOff
implicit_flushOffOff
include_path.:/usr/share/php.:/usr/share/php
input_encodingno valueno value
internal_encodingno valueno value
log_errorsOffOn
mail.add_x_headerOffOff
mail.force_extra_parametersno valueno value
mail.logno valueno value
max_execution_time600600
max_file_uploads3030
max_input_nesting_level6464
max_input_time6060
max_input_vars600000000000000001000
max_multipart_body_parts-1-1
memory_limit512M512M
open_basedir/nfsmnt/:/data/:/usr/share/php:/usr/bin/:/apachetmp:/tmp/:/var/tmp/:/dev/urandom:/usr/lib/x86_64-linux-gnu/ImageMagick-6.9.11/bin-q16/:/usr/local/bin/:/etc/ssl/certs/ca-certificates.crt:/usr/lib/php:/usr/php81/bin/no value
output_buffering11
output_encodingno valueno value
output_handlerno valueno value
post_max_size512M512M
precision1212
realpath_cache_size2048K2048K
realpath_cache_ttl600600
register_argc_argvOnOn
report_memleaksOnOn
report_zend_debugOffOff
request_orderno valueno value
sendmail_fromno valueno value
sendmail_path/usr/apachebin/sendmail -t -i/usr/apachebin/sendmail -t -i
serialize_precision100100
short_open_tagOffOn
SMTPlocalhostlocalhost
smtp_port2525
sys_temp_dir/data/a/e/ae9ebf9b-7ad5-4a3c-8d55-03e1f3291f8b/.tmpno value
syslog.facilityLOG_USERLOG_USER
syslog.filterno-ctrlno-ctrl
syslog.identphpphp
unserialize_callback_funcno valueno value
upload_max_filesize256M256M
upload_tmp_dir/data/a/e/ae9ebf9b-7ad5-4a3c-8d55-03e1f3291f8b/.tmp/upload/apachetmp/upload
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.81.0
Age 9
Features
AsynchDNS Yes
CharConv No
Debug No
GSS-Negotiate No
IDN Yes
IPv6 Yes
krb4 No
Largefile Yes
libz Yes
NTLM Yes
NTLMWB Yes
SPNEGO Yes
SSL Yes
SSPI No
TLS-SRP Yes
HTTP2 Yes
GSSAPI Yes
KERBEROS5 Yes
UNIX_SOCKETS Yes
PSL Yes
HTTPS_PROXY Yes
MULTI_SSL No
BROTLI Yes
Protocols dict, file, ftp, ftps, gopher, gophers, http, https, imap, imaps, ldap, ldaps, mqtt, pop3, pop3s, rtmp, rtsp, scp, sftp, smb, smbs, smtp, smtps, telnet, tftp
Host x86_64-pc-linux-gnu
SSL Version OpenSSL/3.0.2
ZLib Version 1.2.11
libSSH Version libssh/0.9.6/openssl/zlib
DirectiveLocal ValueMaster Value
curl.cainfono valueno value

date

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

dom

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

enchant

enchant support enabled
Libenchant Version 2.3.2
aspell Aspell Provider /usr/lib/x86_64-linux-gnu/enchant-2/enchant_aspell.so
hspell Hspell Provider /usr/lib/x86_64-linux-gnu/enchant-2/enchant_hspell.so
hunspell Hunspell Provider /usr/lib/x86_64-linux-gnu/enchant-2/enchant_hunspell.so

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 540

filter

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

ftp

FTP support enabled
FTPS support enabled

gd

GD Support enabled
GD headers Version 2.3.0
GD library Version 2.3.0
FreeType Support enabled
FreeType Linkage with freetype
GIF Read Support enabled
GIF Create Support enabled
JPEG Support enabled
PNG Support enabled
WBMP Support enabled
XPM Support enabled
XBM Support enabled
WebP Support enabled
BMP Support enabled
TGA Read Support enabled
DirectiveLocal ValueMaster Value
gd.jpeg_ignore_warning11

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.35
DirectiveLocal ValueMaster Value
iconv.input_encodingno valueno value
iconv.internal_encodingno valueno value
iconv.output_encodingno valueno value

imagick

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

imap

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

intl

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

ionCube Loader

ionCube Loader developed by ionCube Ltd.
Visit ioncube.com for latest Loaders and support
Loader version 13.0.2
DirectiveLocal ValueMaster Value
ioncube.loader.encoded_pathsno valueno value

json

json support enabled

ldap

LDAP Support enabled
Total Links 0/unlimited
API Version 3001
Vendor Name OpenLDAP
Vendor Version 20511
SASL Support Enabled
DirectiveLocal ValueMaster Value
ldap.max_linksUnlimitedUnlimited

libxml

libXML support active
libXML Compiled Version 2.9.13
libXML Loaded Version 20913
libXML streams enabled

mailparse

mailparse supportenabled
Extension Version 3.1.6
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.7
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

mcrypt

mcrypt supportenabled
mcrypt_filter supportenabled
Extension version 1.0.6
Library version 2.5.8
Api No 20021217
Supported ciphers cast-128 gost rijndael-128 twofish arcfour cast-256 loki97 rijndael-192 saferplus wake blowfish-compat des rijndael-256 serpent xtea blowfish enigma rc2 tripledes
Supported modes cbc cfb ctr ecb ncfb nofb ofb stream
DirectiveLocal ValueMaster Value
mcrypt.algorithms_dirno valueno value
mcrypt.modes_dirno valueno value

memcache

memcache supportenabled
Version 8.2
DirectiveLocal ValueMaster Value
memcache.allow_failover11
memcache.chunk_size3276832768
memcache.compress_threshold2000020000
memcache.default_port1121111211
memcache.hash_functioncrc32crc32
memcache.hash_strategyconsistentconsistent
memcache.lock_timeout1515
memcache.max_failover_attempts2020
memcache.prefix_host_keyOnOn
memcache.prefix_host_key_remove_subdomainOffOff
memcache.prefix_host_key_remove_wwwOnOn
memcache.prefix_static_keyE1x0fcdOrM0QgByQno value
memcache.protocolasciiascii
memcache.redundancy11
memcache.session_prefix_host_keyOnOn
memcache.session_prefix_host_key_remove_subdomainOffOff
memcache.session_prefix_host_key_remove_wwwOnOn
memcache.session_prefix_static_keyE1x0fcdOrM0QgByQno value
memcache.session_redundancy44
memcache.session_save_pathtcp://10.20.5.1:11211?persistent=0&weight=1&timeout=0.1&retry_interval=-1,tcp://10.20.6.1:11211?persistent=0&weight=1&timeout=0.1&retry_interval=-1,tcp://10.20.7.1:11211?persistent=0&weight=1&timeout=0.1&retry_interval=-1tcp://10.20.5.1:11211?persistent=0&weight=1&timeout=0.1&retry_interval=-1,tcp://10.20.6.1:11211?persistent=0&weight=1&timeout=0.1&retry_interval=-1,tcp://10.20.7.1:11211?persistent=0&weight=1&timeout=0.1&retry_interval=-1

mongodb

MongoDB supportenabled
MongoDB extension version 1.17.2
MongoDB extension stability stable
libbson bundled version 1.25.2
libmongoc bundled version 1.25.2
libmongoc SSL enabled
libmongoc SSL library OpenSSL
libmongoc crypto enabled
libmongoc crypto library libcrypto
libmongoc crypto system profile disabled
libmongoc SASL enabled
libmongoc SRV enabled
libmongoc compression enabled
libmongoc compression snappy enabled
libmongoc compression zlib enabled
libmongoc compression zstd enabled
libmongocrypt bundled version 1.8.2
libmongocrypt crypto enabled
libmongocrypt crypto library libcrypto
crypt_shared library version unknown
DirectiveLocal ValueMaster Value
mongodb.debugno valueno value

mysqli

MysqlI Supportenabled
Client API library version mysqlnd 8.1.27
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/tmp/mysql57.sock/var/run/mysqld/mysqld.sock
mysqli.default_userno valueno value
mysqli.local_infile_directoryno valueno value
mysqli.max_linksUnlimitedUnlimited
mysqli.max_persistentUnlimitedUnlimited
mysqli.reconnectOffOff
mysqli.rollback_on_cached_plinkOffOff

mysqlnd

mysqlndenabled
Version mysqlnd 8.1.27
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

OAuth

OAuth supportenabled
PLAINTEXT support enabled
RSA-SHA1 support enabled
HMAC-SHA1 support enabled
Request engine support php_streams
version 2.0.7

odbc

ODBC Supportenabled
Active Persistent Links 0
Active Links 0
ODBC library unixODBC
ODBCVER 0x0380
ODBC_CFLAGS -I/usr/include
ODBC_LFLAGS -L/usr/lib
ODBC_LIBS -lodbc
DirectiveLocal ValueMaster Value
odbc.allow_persistentOnOn
odbc.check_persistentOnOn
odbc.default_cursortypeStatic cursorStatic cursor
odbc.default_dbno valueno value
odbc.default_pwno valueno value
odbc.default_userno valueno value
odbc.defaultbinmodereturn as isreturn as is
odbc.defaultlrlreturn up to 4096 bytesreturn up to 4096 bytes
odbc.max_linksUnlimitedUnlimited
odbc.max_persistentUnlimitedUnlimited

openssl

OpenSSL support enabled
OpenSSL Library Version OpenSSL 3.0.2 15 Mar 2022
OpenSSL Header Version OpenSSL 3.0.2 15 Mar 2022
Openssl default config /usr/lib/ssl/openssl.cnf
DirectiveLocal ValueMaster Value
openssl.cafileno valueno value
openssl.capathno valueno value

pcre

PCRE (Perl Compatible Regular Expressions) Support enabled
PCRE Library Version 10.39 2021-10-29
PCRE Unicode Version 14.0.0
PCRE JIT Support enabled
PCRE JIT Target x86 64bit (little endian + unaligned)
DirectiveLocal ValueMaster Value
pcre.backtrack_limit10000001000000
pcre.jit11
pcre.recursion_limit81928192

PDO

PDO supportenabled
PDO drivers dblib, firebird, mysql, odbc, pgsql, sqlite

pdo_dblib

PDO Driver for FreeTDS/Sybase DB-libenabled
Flavour freetds

PDO_Firebird

PDO Driver for Firebirdenabled
Client Library Version LI-V6.3.8.33535 Firebird 3.0

pdo_mysql

PDO Driver for MySQLenabled
Client API version mysqlnd 8.1.27
DirectiveLocal ValueMaster Value
pdo_mysql.default_socket/tmp/mysql57.sock/var/run/mysqld/mysqld.sock

PDO_ODBC

PDO Driver for ODBC (unixODBC)enabled
ODBC Connection Pooling Enabled, strict matching

pdo_pgsql

PDO Driver for PostgreSQL enabled
PostgreSQL(libpq) Version 14.11

pdo_sqlite

PDO Driver for SQLite 3.xenabled
SQLite Library 3.37.2

pgsql

PostgreSQL Supportenabled
PostgreSQL (libpq) Version 14.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 supportenabled
Phar API version 1.1.1
Phar-based phar archives enabled
Tar-based phar archives enabled
ZIP-based phar archives enabled
gzip compression enabled
bzip2 compression enabled
Native OpenSSL support enabled
Phar based on pear/PHP_Archive, original concept by Davey Shafik.
Phar fully realized by Gregory Beaver and Marcus Boerger.
Portions of tar implementation Copyright (c) 2003-2009 Tim Kientzle.
DirectiveLocal ValueMaster Value
phar.cache_listno valueno value
phar.readonlyOnOn
phar.require_hashOnOn

posix

POSIX support enabled

pspell

PSpell Support enabled

realpath_turbo

realpath_turbo supportenabled
Version 2.0.0
Build Date Dec 8 2023 08:29:27
Creator Artur Graniszewski
DirectiveLocal ValueMaster Value
realpath_turbo.disable_dangerous_functionsOffOff
realpath_turbo.open_basedir/nfsmnt/:/data/:/usr/share/php:/usr/bin/:/apachetmp:/tmp/:/var/tmp/:/dev/urandom:/usr/lib/x86_64-linux-gnu/ImageMagick-6.9.11/bin-q16/:/usr/local/bin/:/etc/ssl/certs/ca-certificates.crt:/usr/lib/php:/usr/php81/bin//nfsmnt/:/data/:/usr/share/php:/usr/bin/:/apachetmp:/tmp/:/var/tmp/:/dev/urandom:/usr/lib/x86_64-linux-gnu/ImageMagick-6.9.11/bin-q16/:/usr/local/bin/:/etc/ssl/certs/ca-certificates.crt:/usr/lib/php:/usr/php81/bin/

Reflection

Reflection enabled

session

Session Support enabled
Registered save handlers files user memcache
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_httponly00
session.cookie_lifetime00
session.cookie_path//
session.cookie_samesiteno valueno value
session.cookie_secure00
session.gc_divisor1000010000
session.gc_maxlifetime2160021600
session.gc_probability11
session.lazy_writeOnOn
session.namePHPSESSIDPHPSESSID
session.referer_checkno valueno value
session.save_handlermemcachememcache
session.save_path/apachetmp/sessions/apachetmp/sessions
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_cookies11
session.use_only_cookies11
session.use_strict_mode00
session.use_trans_sid00

SimpleXML

SimpleXML support enabled
Schema support enabled

soap

Soap Client enabled
Soap Server enabled
DirectiveLocal ValueMaster Value
soap.wsdl_cache11
soap.wsdl_cache_dir/tmp/tmp
soap.wsdl_cache_enabledOnOn
soap.wsdl_cache_limit55
soap.wsdl_cache_ttl8640086400

sockets

Sockets Support enabled

sodium

sodium supportenabled
libsodium headers version 1.0.18
libsodium library version 1.0.18

SPL

SPL supportenabled
Interfaces OuterIterator, RecursiveIterator, SeekableIterator, SplObserver, SplSubject
Classes AppendIterator, ArrayIterator, ArrayObject, BadFunctionCallException, BadMethodCallException, CachingIterator, CallbackFilterIterator, DirectoryIterator, DomainException, EmptyIterator, FilesystemIterator, FilterIterator, GlobIterator, InfiniteIterator, InvalidArgumentException, IteratorIterator, LengthException, LimitIterator, LogicException, MultipleIterator, NoRewindIterator, OutOfBoundsException, OutOfRangeException, OverflowException, ParentIterator, RangeException, RecursiveArrayIterator, RecursiveCachingIterator, RecursiveCallbackFilterIterator, RecursiveDirectoryIterator, RecursiveFilterIterator, RecursiveIteratorIterator, RecursiveRegexIterator, RecursiveTreeIterator, RegexIterator, RuntimeException, SplDoublyLinkedList, SplFileInfo, SplFileObject, SplFixedArray, SplHeap, SplMinHeap, SplMaxHeap, SplObjectStorage, SplPriorityQueue, SplQueue, SplStack, SplTempFileObject, UnderflowException, UnexpectedValueException

sqlite3

SQLite3 supportenabled
SQLite Library 3.37.2
DirectiveLocal ValueMaster Value
sqlite3.defensiveOnOn
sqlite3.extension_dirno valueno value

ssh2

SSH2 supportenabled
extension version 1.4
libssh2 version 1.10.0
banner SSH-2.0-libssh2_1.10.0

standard

Dynamic Library Support enabled
Path to sendmail /usr/apachebin/sendmail -t -i
DirectiveLocal ValueMaster Value
assert.activeOnOn
assert.bailOffOff
assert.callbackno valueno value
assert.exceptionOnOn
assert.warningOnOn
auto_detect_line_endingsOffOff
default_socket_timeout2020
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=,fieldset=a=href,area=href,frame=src,input=src,form=,fieldset=
user_agentno valueno value

tidy

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

tokenizer

Tokenizer Support enabled

uploadprogress

uploadprogress supportenabled
Version 2.0.2
DirectiveLocal ValueMaster Value
uploadprogress.file.contents_template/tmp/upload_contents_%s/tmp/upload_contents_%s
uploadprogress.file.filename_template/tmp/upt_%s.txt/tmp/upt_%s.txt
uploadprogress.get_contents00

xml

XML Support active
XML Namespace Support active
libxml2 Version 2.9.13

xmlreader

XMLReader enabled

xmlrpc

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

xmlwriter

XMLWriter enabled

xsl

XSL enabled
libxslt Version 1.1.34
libxslt compiled against libxml Version 2.9.13
EXSLT enabled
libexslt Version 1.1.34

yaml

LibYAML Support enabled
Module Version 2.2.3
LibYAML Version 0.2.2
DirectiveLocal ValueMaster Value
yaml.decode_binary00
yaml.decode_php00
yaml.decode_timestamp00
yaml.output_canonical00
yaml.output_indent22
yaml.output_width8080

Zend OPcache

Opcode Caching Disabled
Optimization Disabled
SHM Cache Enabled
File Cache Disabled
JIT Disabled
DirectiveLocal ValueMaster Value
opcache.blacklist_filename/etc/opcache_blacklist/etc/opcache_blacklist
opcache.consistency_checks00
opcache.dups_fixOffOff
opcache.enableOffOn
opcache.enable_cliOffOff
opcache.enable_file_overrideOnOn
opcache.error_log/var/log/opcache_log/var/log/opcache_log
opcache.file_cacheno valueno value
opcache.file_cache_consistency_checksOnOn
opcache.file_cache_onlyOffOff
opcache.file_update_protection22
opcache.force_restart_timeout6060
opcache.huge_code_pagesOffOff
opcache.interned_strings_buffer384384
opcache.jittracingtracing
opcache.jit_bisect_limit00
opcache.jit_blacklist_root_trace1616
opcache.jit_blacklist_side_trace88
opcache.jit_buffer_size00
opcache.jit_debug00
opcache.jit_hot_func127127
opcache.jit_hot_loop6464
opcache.jit_hot_return88
opcache.jit_hot_side_exit88
opcache.jit_max_exit_counters81928192
opcache.jit_max_loop_unrolls88
opcache.jit_max_polymorphic_calls22
opcache.jit_max_recursive_calls22
opcache.jit_max_recursive_returns22
opcache.jit_max_root_traces10241024
opcache.jit_max_side_traces128128
opcache.jit_prof_threshold0.0050.005
opcache.lockfile_path/tmp/tmp
opcache.log_verbosity_level22
opcache.max_accelerated_files450000450000
opcache.max_file_size131072131072
opcache.max_wasted_percentage5050
opcache.memory_consumption1024010240
opcache.opt_debug_level00
opcache.optimization_level0x7FFEBFFF0x7FFEBFFF
opcache.preferred_memory_modelno valueno value
opcache.preloadno valueno value
opcache.preload_userno valueno value
opcache.protect_memoryOffOff
opcache.record_warningsOffOff
opcache.restrict_api/data/web/nonexist/data/web/nonexist
opcache.revalidate_freq22
opcache.revalidate_pathOnOn
opcache.save_commentsOnOn
opcache.use_cwdOnOn
opcache.validate_permissionOnOn
opcache.validate_rootOffOff
opcache.validate_timestampsOnOn

zip

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

zlib

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

Additional Modules

Module Name
array (1)
0 => array (7)
| 'name' => 'default output handler' | 'type' => 0 | 'flags' => 112 | 'level' => 0 | 'chunk_size' => 0 | 'buffer_size' => 16384 | 'buffer_used' => 2135

GET https://momowien.at/impressum/

Host
'momowien.at'
X-Real-IP
'54.85.255.74'
X-Forwarded-For
'54.85.255.74, 54.85.255.74'
X-Forwarded-Proto
'https'
HTTPS
'1'
X-Proxy-IP
'10.20.6.1'
accept
'*/*'
user-agent
'claudebot'
WS-GEO-COUNTRY
'US'
Max-Forwards
'7'
X-Forwarded-Host
'momowien.at'
X-Forwarded-Server
'momowien.at'
Connection
'close'

$_GET

empty

$_POST

empty

$_COOKIE

empty

Code: 500

Set-Cookie
'tracy-session=eeefaec8d3; expires=Wed, 19-Mar-2025 14:14:45 GMT; Max-Age=31557600; path=/; HttpOnly'
X-Powered-By
'Tomas Stofik'
X-Content-Type-Options
'nosniff'
X-XSS-Protection
'1; mode=block'
Referrer-Policy
'strict-origin-when-cross-origin'
Strict-Transport-Security
'max-age=63072000; includeSubDomains; preload'
Permissions-Policy
'geolocation=(self "https://momowien.at"), microphone=()'
X-Frame-Options
'SAMEORIGIN'
Set-Cookie
'_nss=1; path=/; secure; HttpOnly; SameSite=Strict'
Vary
'X-Requested-With'
Last-Modified
'Tue, 19 Mar 2024 08:14:45 GMT'
Expires
'-1'
Cache-Control
'must-revalidate, private'
Access-Control-Allow-Origin
'X-Requested-With'
Content-Security-Policy

Content-Type
'text/html; charset=UTF-8'

Headers were not sent at the time the exception was thrown