InvalidArgumentException

Súbor /var/www/klingger/data/website_article/3a4/a3a/e30/3a4a3ae30d4f3f12ecdcbca3150ca2c936c18b840157dc305241a87c08e8005a694fa73fafa4e6fc neexistuje! search►

Source file

File: ...//app/Modules/File/Lib/FilesystemFileStorage.php:43

33: 34: /** 35: * Získanie obsahu súboru 36: * 37: * @param string $file Cesta k súboru 38: */ 39: public function exists($file, $return = true) 40: { 41: if (file_exists($this->baseDir.$file) === false) { 42: if ($return === false) { 43: throw new InvalidArgumentException('Súbor '.$this->baseDir.$file.' neexistuje!'); 44: } 45: 46: return false; 47: }

Call stack

  1. ...//app/Modules/File/Lib/FilesystemFileStorage.php:59 source  FilesystemFileStorage->exists(arguments)

    49: return true; 50: } 51: 52: /** 53: * Test či súbor existuje 54: * 55: * @param string $file Cesta k súboru 56: */ 57: public function read($file) 58: { 59: $this->exists($file, false); 60: 61: return file_get_contents($this->baseDir.$file); 62: } 63:
    $file
    "website_article/3a4/a3a/e30/3a4a3ae30d4f3f12ecdcbca3150ca2c936c18b840157dc305241a87c08e8005a694fa73fafa4e6fc" (108)
    
    $return
    FALSE
    
  2. .../klingger//app/Modules/Photo/Model/PhotoModel.php:180 source  FilesystemFileStorage->read(arguments)

    170: 171: public function getFullFilePath() 172: { 173: return $this->fileStorage->baseDir.$this->getFilePath(); 174: } 175: 176: public function getFileContent() 177: { 178: $filePath = $this->getFilePath(); 179: 180: return $this->fileStorage->read($filePath); 181: } 182: 183: public function getName() 184: {
    $file
    "website_article/3a4/a3a/e30/3a4a3ae30d4f3f12ecdcbca3150ca2c936c18b840157dc305241a87c08e8005a694fa73fafa4e6fc" (108)
    
  3. .../klingger//app/Modules/Photo/Model/PhotoModel.php:468 source  PhotoModel->getFileContent()

    458: * 459: * @param string Cesta kde má byť súbor uložený 460: * @param string Rozmer fotografie vo formáte sirkaxvyska, napr. 300x300 461: * @param string typ zobraznia fotografie 462: * full - celá fotografia zmenšená aby sa vošla do zadaných rozmerov 463: * crop - orezaná fotografia na zadaný pomer strána 464: * @return string Cesta k súboru 465: */ 466: private function createCacheFile($cacheFile, $size, $type) 467: { 468: $blob = $this->getFileContent(); 469: 470: $image = new Imagick(); 471: $image->readImageBlob($blob); 472: list($width, $height) = explode('x', $size);
  4. .../klingger//app/Modules/Photo/Model/PhotoModel.php:435 source  PhotoModel->createCacheFile(arguments)

    425: if (file_exists($cacheFileDir) === false) { 426: $this->cacheStorage->mkdir($cacheFileDir, 0777, true); 427: } 428: 429: $cacheFile = $cacheFileDir.$size.'.'.$this->getExtension(); 430: 431: if ($this->cacheStorage->exists($cacheFile) === true) { 432: return $cacheFile; 433: } 434: 435: return $this->createCacheFile($cacheFile, $size, $type); 436: } 437: 438: 439: /**
    $cacheFile
    "website_article/3a4/a3a/e30/3a4a3ae30d4f3f12ecdcbca3150ca2c936c18b840157dc305241a87c08e8005a694fa73fafa4e6fc/thumb/160x160.jpg" (126)
    
    $size
    "160x160" (7)
    
    $type
    "thumb" (5)
    
  5. .../klingger//app/Modules/Photo/Model/PhotoModel.php:406 source  PhotoModel->getCacheFilePath(arguments)

    396: if ($type !== null) { 397: $parts[] = $type; 398: } 399: 400: return implode('/', $parts).'/'; 401: } 402: 403: 404: public function getCache($size, $type = 'full') 405: { 406: $cacheFilePath = $this->getCacheFilePath($size, $type); 407: return $this->cacheStorage->read($cacheFilePath); 408: } 409: 410:
    $size
    "160x160" (7)
    
    $type
    "thumb" (5)
    
  6. .../www/klingger//app/Modules/Cache/View/CacheView.php:172 source  PhotoModel->getCache(arguments)

    162: 163: $photo->maxImageSize = $config->getIniValue('modules', 'photo.maxImageSize'); 164: $photo->resourceId = $resource; 165: 166: $photo->setFileStorage(new FilesystemFileStorage($photoStorageDir)); 167: if ($photo['public'] === 't') { 168: $cacheDir = $config->basePath . 'www/cache/'; 169: } 170: $photo->setCacheStorage(new FilesystemFileStorage($cacheDir)); 171: 172: $cache = $photo->getCache($size, $type); 173: 174: header('Content-Type: ' . $photo['mimetype']); 175: header('Cache-Control: private, max-age=10800, pre-check=10800'); 176: header('Pragma: private');
    $size
    "160x160" (7)
    
    $type
    "thumb" (5)
    
  7. .../www/klingger//app/Modules/Cache/View/CacheView.php:39 source  CacheView->photo()

    29: 30: public function unknownAction($action) 31: { 32: switch ($action) { 33: case 'photo': 34: case 'person': 35: case 'auction': 36: case 'event_photo': 37: case 'rtv_channel': 38: case 'website_article': 39: $this->photo(); 40: break; 41: 42: case 'newsmon_article': 43: $this->newsmonArticle();
  8. .../var/www/klingger//main/view/DynamicView.php:51 source  CacheView->unknownAction(arguments)

    41: $action = $http->classParams[0]; 42: } else { 43: $action = "index"; 44: } 45: 46: if (array_key_exists($action, $this->actions)) { // moze byt ako kluc v poli (nove) 47: $this->body = $this->$action(); // volanie funkcie, ktorej nazov je v retazci $action 48: } else if (in_array($action, $this->actions)) { // uz nemoze byt ako hodnota v poli (stare) 49: throw new OutOfBoundsException("action is a value where it should have been key"); 50: } else { 51: $this->body = $this->unknownAction($action); // volanie chybovej funkcie 52: } 53: 54: $this->constructHistory($action, $_REQUEST); 55: $this->title = $this->getTitle($action, $_REQUEST); // TODO: tu by mohlo byt $this->history->getRecentTitle() pretoze inak sa getTitle vola zbytocne 2x
    $action
    "website_article" (15)
    
  9. .../var/www/klingger//main/helpers/HTTPFrontend.php:203 source  DynamicView->show()

    193: die; 194: } else if ($obj->authRequired) { 195: 196: // ak je neprihlaseny a modul vyzaduje prihlaseneho 197: $this->redirect("/Login/?continue=" . urlencode(base64_encode(substr($_SERVER["REQUEST_URI"], strlen($this->baseURL))))); 198: die; 199: } 200: } 201: 202: // zavolame funkciu show, ktora vykona pozadovanu akciu; 203: $obj->show(); 204: 205: } catch (AccessDeniedException $e) { 206: if (\Tracy\Debugger::$productionMode === false) { 207: throw $e;
  10. .../alternet/extranet/var/www/klingger//www/index.php:6 source  HTTPFrontend->run()

    1: <?php 2: 3: require_once "../bootstrap.php"; 4: 5: $http=HTTPFrontend::getInstance(); 6: $http->run(); 7: 8: ?>

Environment

$_SERVER

REDIRECT_HTTPS
"on" (2)
REDIRECT_SSL_TLS_SNI
"www.mojoperator.klingger.21.sk" (30)
REDIRECT_STATUS
"200" (3)
HTTPS
"on" (2)
SSL_TLS_SNI
"www.mojoperator.klingger.21.sk" (30)
SSL_SERVER_S_DN_C
"SK" (2)
SSL_SERVER_S_DN_ST
"Slovakia" (8)
SSL_SERVER_S_DN_L
"Kosice" (6)
SSL_SERVER_S_DN_O
"Alternet" (8)
SSL_SERVER_S_DN_OU
"IT" (2)
SSL_SERVER_S_DN_CN
"extranet.21.sk" (14)
SSL_SERVER_S_DN_Email
"webmaster@21.sk" (15)
SSL_SERVER_I_DN_C
"SK" (2)
SSL_SERVER_I_DN_ST
"Slovakia" (8)
SSL_SERVER_I_DN_L
"Kosice" (6)
SSL_SERVER_I_DN_O
"Alternet" (8)
SSL_SERVER_I_DN_OU
"IT" (2)
SSL_SERVER_I_DN_CN
"extranet.21.sk" (14)
SSL_SERVER_I_DN_Email
"webmaster@21.sk" (15)
SSL_VERSION_INTERFACE
"mod_ssl/2.2.22" (14)
SSL_VERSION_LIBRARY
"OpenSSL/1.0.1t" (14)
SSL_PROTOCOL
"TLSv1.2" (7)
SSL_SECURE_RENEG
"true" (4)
SSL_COMPRESS_METHOD
"NULL" (4)
SSL_CIPHER
"ECDHE-RSA-AES256-GCM-SHA384" (27)
SSL_CIPHER_EXPORT
"false" (5)
SSL_CIPHER_USEKEYSIZE
"256" (3)
SSL_CIPHER_ALGKEYSIZE
"256" (3)
SSL_CLIENT_VERIFY
"NONE" (4)
SSL_SERVER_M_VERSION
"3"
SSL_SERVER_M_SERIAL
"CFA6B57BAB50ED11" (16)
SSL_SERVER_V_START
"Jan 28 14:44:20 2015 GMT" (24)
SSL_SERVER_V_END
"Jan 28 14:44:20 2016 GMT" (24)
SSL_SERVER_S_DN
"/C=SK/ST=Slovakia/L=Kosice/O=Alternet/OU=IT/CN=extranet.21.sk/emailAddress=webmaster@21.sk" (90)
SSL_SERVER_I_DN
"/C=SK/ST=Slovakia/L=Kosice/O=Alternet/OU=IT/CN=extranet.21.sk/emailAddress=webmaster@21.sk" (90)
SSL_SERVER_A_KEY
"rsaEncryption" (13)
SSL_SERVER_A_SIG
"sha1WithRSAEncryption" (21)
SSL_SESSION_ID
"DAC328033E1A63E85A6EF522B078591F37FFA805D1DF98352E028214568361DE" (64)
HTTP_HOST
"www.mojoperator.klingger.21.sk" (30)
HTTP_ACCEPT
"*/*" (3)
PATH
"/usr/local/bin:/usr/bin:/bin" (28)
SERVER_SIGNATURE
"<address>Apache/2.2.22 (Debian) Server at www.mojoperator.klingger.21.sk Port 443</address>
" (92)
SERVER_SOFTWARE
"Apache/2.2.22 (Debian)" (22)
SERVER_NAME
"www.mojoperator.klingger.21.sk" (30)
SERVER_ADDR
"194.145.206.60" (14)
SERVER_PORT
"443" (3)
REMOTE_ADDR
"176.102.98.88" (13)
DOCUMENT_ROOT
"/var/www/klingger/www" (21)
SERVER_ADMIN
"webmaster@localhost" (19)
SCRIPT_FILENAME
"/var/www/klingger/www/index.php" (31)
REMOTE_PORT
"35536" (5)
REDIRECT_URL
"/cache/website_article/3a4/a3a/e30/3a4a3ae30d4f3f12ecdcbca3150ca2c936c18b840157dc305241a87c08e8005a694fa73fafa4e6fc/thumb/160x160.jpg" (133)
GATEWAY_INTERFACE
"CGI/1.1" (7)
SERVER_PROTOCOL
"HTTP/1.1" (8)
REQUEST_METHOD
"GET" (3)
QUERY_STRING
""
REQUEST_URI
"/cache/website_article/3a4/a3a/e30/3a4a3ae30d4f3f12ecdcbca3150ca2c936c18b840157dc305241a87c08e8005a694fa73fafa4e6fc/thumb/160x160.jpg" (133)
SCRIPT_NAME
"/index.php" (10)
PHP_SELF
"/index.php" (10)
REQUEST_TIME_FLOAT
1717313468.762
REQUEST_TIME
1717313468

$_SESSION

empty

Configuration options


Configuration

apache2handler

Apache Version Apache/2.2.22 (Debian)
Apache API Version 20051115
Server Administrator webmaster@localhost
Hostname:Port www.mojoperator.klingger.21.sk:0
User/Group www-data(33)/33
Max Requests Per Child: 0 - Keep Alive: on - Max Per Connection: 100
Timeouts Connection: 300 - Keep-Alive: 15
Virtual Server Yes
Server Root /etc/apache2
Loaded Modules core mod_log_config mod_logio mod_version prefork http_core mod_so mod_alias mod_auth_basic mod_authn_file mod_authz_default mod_authz_groupfile mod_authz_host mod_authz_user mod_autoindex mod_cgi mod_deflate mod_dir mod_env mod_mime mod_negotiation mod_php5 mod_reqtimeout mod_rewrite mod_setenvif mod_ssl mod_status

DirectiveLocal ValueMaster Value
engine11
last_modified00
xbithack00

Apache Environment

VariableValue
REDIRECT_HTTPS on
REDIRECT_SSL_TLS_SNI www.mojoperator.klingger.21.sk
REDIRECT_STATUS 200
HTTPS on
SSL_TLS_SNI www.mojoperator.klingger.21.sk
SSL_SERVER_S_DN_C SK
SSL_SERVER_S_DN_ST Slovakia
SSL_SERVER_S_DN_L Kosice
SSL_SERVER_S_DN_O Alternet
SSL_SERVER_S_DN_OU IT
SSL_SERVER_S_DN_CN extranet.21.sk
SSL_SERVER_S_DN_Email webmaster@21.sk
SSL_SERVER_I_DN_C SK
SSL_SERVER_I_DN_ST Slovakia
SSL_SERVER_I_DN_L Kosice
SSL_SERVER_I_DN_O Alternet
SSL_SERVER_I_DN_OU IT
SSL_SERVER_I_DN_CN extranet.21.sk
SSL_SERVER_I_DN_Email webmaster@21.sk
SSL_VERSION_INTERFACE mod_ssl/2.2.22
SSL_VERSION_LIBRARY OpenSSL/1.0.1t
SSL_PROTOCOL TLSv1.2
SSL_SECURE_RENEG true
SSL_COMPRESS_METHOD NULL
SSL_CIPHER ECDHE-RSA-AES256-GCM-SHA384
SSL_CIPHER_EXPORT false
SSL_CIPHER_USEKEYSIZE 256
SSL_CIPHER_ALGKEYSIZE 256
SSL_CLIENT_VERIFY NONE
SSL_SERVER_M_VERSION 3
SSL_SERVER_M_SERIAL CFA6B57BAB50ED11
SSL_SERVER_V_START Jan 28 14:44:20 2015 GMT
SSL_SERVER_V_END Jan 28 14:44:20 2016 GMT
SSL_SERVER_S_DN /C=SK/ST=Slovakia/L=Kosice/O=Alternet/OU=IT/CN=extranet.21.sk/emailAddress=webmaster@21.sk
SSL_SERVER_I_DN /C=SK/ST=Slovakia/L=Kosice/O=Alternet/OU=IT/CN=extranet.21.sk/emailAddress=webmaster@21.sk
SSL_SERVER_A_KEY rsaEncryption
SSL_SERVER_A_SIG sha1WithRSAEncryption
SSL_SESSION_ID DAC328033E1A63E85A6EF522B078591F37FFA805D1DF98352E028214568361DE
HTTP_HOST www.mojoperator.klingger.21.sk
HTTP_ACCEPT */*
PATH /usr/local/bin:/usr/bin:/bin
SERVER_SIGNATURE <address>Apache/2.2.22 (Debian) Server at www.mojoperator.klingger.21.sk Port 443</address>
SERVER_SOFTWARE Apache/2.2.22 (Debian)
SERVER_NAME www.mojoperator.klingger.21.sk
SERVER_ADDR 194.145.206.60
SERVER_PORT 443
REMOTE_ADDR 176.102.98.88
DOCUMENT_ROOT /var/www/klingger/www
SERVER_ADMIN webmaster@localhost
SCRIPT_FILENAME /var/www/klingger/www/index.php
REMOTE_PORT 35536
REDIRECT_URL /cache/website_article/3a4/a3a/e30/3a4a3ae30d4f3f12ecdcbca3150ca2c936c18b840157dc305241a87c08e8005a694fa73fafa4e6fc/thumb/160x160.jpg
GATEWAY_INTERFACE CGI/1.1
SERVER_PROTOCOL HTTP/1.1
REQUEST_METHOD GET
QUERY_STRING no value
REQUEST_URI /cache/website_article/3a4/a3a/e30/3a4a3ae30d4f3f12ecdcbca3150ca2c936c18b840157dc305241a87c08e8005a694fa73fafa4e6fc/thumb/160x160.jpg
SCRIPT_NAME /index.php

HTTP Headers Information

HTTP Request Headers
HTTP Request GET /cache/website_article/3a4/a3a/e30/3a4a3ae30d4f3f12ecdcbca3150ca2c936c18b840157dc305241a87c08e8005a694fa73fafa4e6fc/thumb/160x160.jpg HTTP/1.1
Host www.mojoperator.klingger.21.sk
Accept */*
HTTP Response Headers
X-Powered-By PHP/5.4.45-0+deb7u14
Set-Cookie PHPSESSID=fdretcs61ublm4qgg8eqdsehu4; path=/; samesite=none; domain=www.mojoperator.klingger.21.sk; secure
Expires Thu, 19 Nov 1981 08:52:00 GMT
Cache-Control no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma no-cache

bcmath

BCMath support enabled

DirectiveLocal ValueMaster Value
bcmath.scale00

bz2

BZip2 Support Enabled
Stream Wrapper support compress.bzip2://
Stream Filter support bzip2.decompress, bzip2.compress
BZip2 Version 1.0.6, 6-Sept-2010

calendar

Calendar support enabled

Core

PHP Version 5.4.45-0+deb7u14

DirectiveLocal ValueMaster Value
allow_url_fopenOnOn
allow_url_includeOffOff
always_populate_raw_post_dataOffOff
arg_separator.input&&
arg_separator.output&&
asp_tagsOffOff
auto_append_fileno valueno value
auto_globals_jitOnOn
auto_prepend_fileno valueno value
browscapno valueno value
default_charsetno valueno value
default_mimetypetext/htmltext/html
disable_classesno valueno value
disable_functionspcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,
display_errorsOffOn
display_startup_errorsOffOff
doc_rootno valueno value
docref_extno valueno value
docref_rootno valueno value
enable_dlOffOff
enable_post_data_readingOnOn
error_append_stringno valueno value
error_logno valueno value
error_prepend_stringno valueno value
error_reporting032767
exit_on_timeoutOffOff
expose_phpOnOn
extension_dir/usr/lib/php5/20100525+lfs/usr/lib/php5/20100525+lfs
file_uploadsOnOn
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_errorsOffOff
ignore_repeated_sourceOffOff
ignore_user_abortOffOff
implicit_flushOffOff
include_path.:/usr/share/php:/usr/share/pear.:/usr/share/php:/usr/share/pear
log_errorsOffOn
log_errors_max_len10241024
mail.add_x_headerOnOn
mail.force_extra_parametersno valueno value
mail.logno valueno value
max_execution_time3030
max_file_uploads2020
max_input_nesting_level6464
max_input_time6060
max_input_vars10001000
memory_limit128M128M
open_basedirno valueno value
output_buffering40964096
output_handlerno valueno value
post_max_size32M32M
precision1414
realpath_cache_size16K16K
realpath_cache_ttl120120
register_argc_argvOffOff
report_memleaksOnOn
report_zend_debugOnOn
request_orderGPGP
sendmail_fromno valueno value
sendmail_path/usr/sbin/sendmail -t -i /usr/sbin/sendmail -t -i 
serialize_precision1717
short_open_tagOnOn
SMTPlocalhostlocalhost
smtp_port2525
sql.safe_modeOffOff
track_errorsOffOff
unserialize_callback_funcno valueno value
upload_max_filesize32M32M
upload_tmp_dirno valueno value
user_dirno valueno value
user_ini.cache_ttl300300
user_ini.filename.user.ini.user.ini
variables_orderGPCSGPCS
xmlrpc_error_number00
xmlrpc_errorsOffOff
zend.detect_unicodeOnOn
zend.enable_gcOnOn
zend.multibyteOffOff
zend.script_encodingno valueno value

ctype

ctype functions enabled

curl

cURL support enabled
cURL Information 7.26.0
Age 3
Features
AsynchDNS No
Debug Yes
GSS-Negotiate Yes
IDN Yes
IPv6 Yes
Largefile Yes
NTLM Yes
SPNEGO No
SSL Yes
SSPI No
krb4 No
libz Yes
CharConv No
Protocols dict, file, ftp, ftps, gopher, http, https, imap, imaps, ldap, pop3, pop3s, rtmp, rtsp, scp, sftp, smtp, smtps, telnet, tftp
Host i486-pc-linux-gnu
SSL Version OpenSSL/1.0.1t
ZLib Version 1.2.7
libSSH Version libssh2/1.4.2

date

date/time support enabled
"Olson" Timezone Database Version 0.system
Timezone Database internal
Default timezone Europe/Bratislava

DirectiveLocal ValueMaster Value
date.default_latitude31.766731.7667
date.default_longitude35.233335.2333
date.sunrise_zenith90.58333390.583333
date.sunset_zenith90.58333390.583333
date.timezoneEurope/BratislavaEurope/Bratislava

dba

DBA support enabled
Supported handlers cdb cdb_make db4 inifile flatfile qdbm

DirectiveLocal ValueMaster Value
dba.default_handlerflatfileflatfile

dom

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

ereg

Regex Library Bundled library enabled

exif

EXIF Support enabled
EXIF Version 1.4 $Id: 05041c5f0094cb46d9b516bd624d593b90cc38f9 $
Supported EXIF Version 0220
Supported filetypes JPEG,TIFF

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
version 1.0.5

filter

Input Validation and Filtering enabled
Revision $Id: ad78b4a085153b8c7f4d6db5dc69df40e969c343 $

DirectiveLocal ValueMaster Value
filter.defaultunsafe_rawunsafe_raw
filter.default_flagsno valueno value

ftp

FTP support enabled

gd

GD Support enabled
GD Version 2.0.36
FreeType Support enabled
FreeType Linkage with freetype
FreeType Version 2.4.9
GIF Read Support enabled
GIF Create Support enabled
JPEG Support enabled
libJPEG Version unknown
PNG Support enabled
libPNG Version 1.2.49
WBMP Support enabled

DirectiveLocal ValueMaster Value
gd.jpeg_ignore_warning00

gettext

GetText Support enabled

hash

hash support enabled
Hashing Engines md2 md4 md5 sha1 sha224 sha256 sha384 sha512 ripemd128 ripemd160 ripemd256 ripemd320 whirlpool tiger128,3 tiger160,3 tiger192,3 tiger128,4 tiger160,4 tiger192,4 snefru snefru256 gost adler32 crc32 crc32b fnv132 fnv164 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

iconv

iconv support enabled
iconv implementation glibc
iconv library version 2.13

DirectiveLocal ValueMaster Value
iconv.input_encodingISO-8859-1ISO-8859-1
iconv.internal_encodingISO-8859-1ISO-8859-1
iconv.output_encodingISO-8859-1ISO-8859-1

imagick

imagick moduleenabled
imagick module version 3.1.0RC1
imagick classes Imagick, ImagickDraw, ImagickPixel, ImagickPixelIterator
ImageMagick version ImageMagick 6.7.7-10 2018-05-23 Q16 http://www.imagemagick.org
ImageMagick copyright Copyright (C) 1999-2012 ImageMagick Studio LLC
ImageMagick release date 2018-05-23
ImageMagick number of supported formats: 204
ImageMagick supported formats 3FR, A, AAI, AI, ART, ARW, AVI, AVS, B, BGR, BGRA, BIE, BMP, BMP2, BMP3, BRF, C, CAL, CALS, CANVAS, CAPTION, CIN, CIP, CLIP, CMYK, CMYKA, CR2, CRW, CUR, CUT, DCM, DCR, DCX, DDS, DFONT, DNG, DPX, EPDF, EPI, EPS, EPS2, EPS3, EPSF, EPSI, EPT, EPT2, EPT3, ERF, FAX, FITS, FRACTAL, FTS, G, G3, GIF, GIF87, GRADIENT, GRAY, GROUP4, HALD, HDR, HISTOGRAM, HRZ, HTM, HTML, ICB, ICO, ICON, INFO, INLINE, IPL, ISOBRL, J2C, J2K, JBG, JBIG, JNG, JP2, JPC, JPEG, JPG, JPX, K, K25, KDC, LABEL, M, M2V, M4V, MAC, MAP, MAT, MATTE, MEF, MIFF, MNG, MONO, MOV, MP4, MPC, MPEG, MPG, MRW, MSL, MTV, MVG, NEF, NRW, NULL, O, ORF, OTB, OTF, PAL, PALM, PAM, PATTERN, PBM, PCD, PCDS, PCL, PCT, PCX, PDB, PDF, PDFA, PEF, PES, PFA, PFB, PFM, PGM, PGX, PICON, PICT, PIX, PJPEG, PLASMA, PNG, PNG24, PNG32, PNG8, PNM, PPM, PREVIEW, PS, PS2, PS3, PSB, PSD, PTIF, PWP, R, RADIAL-GRADIENT, RAF, RAS, RGB, RGBA, RGBO, RLA, RLE, SCR, SCT, SFW, SGI, SHTML, SR2, SRF, STEGANO, SUN, TEXT, TGA, THUMBNAIL, TIFF, TIFF64, TILE, TIM, TTC, TTF, TXT, UBRL, UIL, UYVY, VDA, VICAR, VID, VIFF, VST, WBMP, WMV, WPG, X, X3F, XBM, XC, XCF, XPM, XPS, XV, XWD, Y, YCbCr, YCbCrA, YUV

DirectiveLocal ValueMaster Value
imagick.locale_fix00
imagick.progress_monitor00

json

json support enabled
json version 1.2.1

libxml

libXML support active
libXML Compiled Version 2.8.0
libXML Loaded Version 20800
libXML streams enabled

mbstring

Multibyte Support enabled
Multibyte string engine libmbfl
HTTP input encoding translation disabled
libmbfl version 1.3.2

mbstring extension makes use of "streamable kanji code filter and converter", which is distributed under the GNU Lesser General Public License version 2.1.

Multibyte (japanese) regex support enabled
Multibyte regex (oniguruma) version 5.9.1

DirectiveLocal ValueMaster Value
mbstring.detect_orderno valueno value
mbstring.encoding_translationOffOff
mbstring.func_overload00
mbstring.http_inputpasspass
mbstring.http_outputpasspass
mbstring.http_output_conv_mimetypes^(text/|application/xhtml\+xml)^(text/|application/xhtml\+xml)
mbstring.internal_encodingno valueno value
mbstring.languageneutralneutral
mbstring.strict_detectionOffOff
mbstring.substitute_characterno valueno value

mhash

MHASH support Enabled
MHASH API Version Emulated Support

mysql

MySQL Supportenabled
Active Persistent Links 0
Active Links 0
Client API version 5.5.60
MYSQL_MODULE_TYPE external
MYSQL_SOCKET /var/run/mysqld/mysqld.sock
MYSQL_INCLUDE -I/usr/include/mysql
MYSQL_LIBS -L/usr/lib/i386-linux-gnu -lmysqlclient_r

DirectiveLocal ValueMaster Value
mysql.allow_local_infileOnOn
mysql.allow_persistentOnOn
mysql.connect_timeout6060
mysql.default_hostno valueno value
mysql.default_passwordno valueno value
mysql.default_portno valueno value
mysql.default_socket/var/run/mysqld/mysqld.sock/var/run/mysqld/mysqld.sock
mysql.default_userno valueno value
mysql.max_linksUnlimitedUnlimited
mysql.max_persistentUnlimitedUnlimited
mysql.trace_modeOffOff

mysqli

MysqlI Supportenabled
Client API library version 5.5.60
Active Persistent Links 0
Inactive Persistent Links 0
Active Links 0
Client API header version 5.5.60
MYSQLI_SOCKET /var/run/mysqld/mysqld.sock

DirectiveLocal ValueMaster Value
mysqli.allow_local_infileOnOn
mysqli.allow_persistentOnOn
mysqli.default_hostno valueno value
mysqli.default_port33063306
mysqli.default_pwno valueno value
mysqli.default_socket/var/run/mysqld/mysqld.sock/var/run/mysqld/mysqld.sock
mysqli.default_userno valueno value
mysqli.max_linksUnlimitedUnlimited
mysqli.max_persistentUnlimitedUnlimited
mysqli.reconnectOffOff

openssl

OpenSSL support enabled
OpenSSL Library Version OpenSSL 1.0.1t 3 May 2016
OpenSSL Header Version OpenSSL 1.0.1t 3 May 2016

pcre

PCRE (Perl Compatible Regular Expressions) Support enabled
PCRE Library Version 8.30 2012-02-04

DirectiveLocal ValueMaster Value
pcre.backtrack_limit10000001000000
pcre.recursion_limit100000100000

PDO

PDO supportenabled
PDO drivers mysql, pgsql

pdo_mysql

PDO Driver for MySQLenabled
Client API version 5.5.60

DirectiveLocal ValueMaster Value
pdo_mysql.default_socket/var/run/mysqld/mysqld.sock/var/run/mysqld/mysqld.sock

pdo_pgsql

PDO Driver for PostgreSQLenabled
PostgreSQL(libpq) Version 9.1.24lts2
Module version 1.0.2
Revision $Id: 8e4cc97fb53f418d98b489c3e9d722e48446e676 $

pgsql

PostgreSQL Supportenabled
PostgreSQL(libpq) Version 9.1.24lts2
PostgreSQL(libpq) PostgreSQL 9.1.24lts2 on i686-pc-linux-gnu, compiled by gcc (Debian 4.7.2-5) 4.7.2, 32-bit
Multibyte character support enabled
SSL support enabled
Active Persistent Links 0
Active Links 1

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 EXT version 2.0.1
Phar API version 1.1.1
SVN revision $Id: ba734629367f9671b25202408d13914fa63d8396 $
Phar-based phar archives enabled
Tar-based phar archives enabled
ZIP-based phar archives enabled
gzip compression enabled
bzip2 compression enabled
OpenSSL support enabled

Phar based on pear/PHP_Archive, original concept by Davey Shafik.
Phar fully realized by Gregory Beaver and Marcus Boerger.
Portions of tar implementation Copyright (c) 2003-2009 Tim Kientzle.

DirectiveLocal ValueMaster Value
phar.cache_listno valueno value
phar.readonlyOnOn
phar.require_hashOnOn

posix

Revision $Id: 1dfa9997ed76804e53c91e0ce862f3707617b6ed $

Reflection

Reflectionenabled
Version $Id: f6367cdb4e3f392af4a6d441a6641de87c2e50c4 $

session

Session Support enabled
Registered save handlers files user
Registered serializer handlers php php_binary wddx

DirectiveLocal ValueMaster Value
session.auto_startOffOff
session.cache_expire360360
session.cache_limiternocachenocache
session.cookie_domainwww.mojoperator.klingger.21.skno value
session.cookie_httponlyOffOff
session.cookie_lifetime00
session.cookie_path/; samesite=none/
session.cookie_secureOnOff
session.entropy_file/dev/urandom/dev/urandom
session.entropy_length3232
session.gc_divisor10001000
session.gc_maxlifetime1440014400
session.gc_probability00
session.hash_bits_per_character55
session.hash_function00
session.namePHPSESSIDPHPSESSID
session.referer_checkno valueno value
session.save_handlerfilesfiles
session.save_path/var/lib/php5/var/lib/php5
session.serialize_handlerphpphp
session.upload_progress.cleanupOnOn
session.upload_progress.enabledOnOn
session.upload_progress.freq1%1%
session.upload_progress.min_freq11
session.upload_progress.namePHP_SESSION_UPLOAD_PROGRESSPHP_SESSION_UPLOAD_PROGRESS
session.upload_progress.prefixupload_progress_upload_progress_
session.use_cookiesOnOn
session.use_only_cookiesOnOn
session.use_trans_sid00

shmop

shmop support enabled

SimpleXML

Simplexml supportenabled
Revision $Id: 16070fc92ad6f69cebb2d52ad3f02794f833ce39 $
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_enabled11
soap.wsdl_cache_limit55
soap.wsdl_cache_ttl8640086400

sockets

Sockets Support enabled

SPL

SPL supportenabled
Interfaces Countable, 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

ssh2

SSH2 supportenabled
extension version 0.11.3
libssh2 version 1.2.8
banner SSH-2.0-libssh2_1.2.8
remote forwarding enabled
hostbased auth enabled
polling support enabled
publickey subsystem enabled

standard

Dynamic Library Support enabled
Path to sendmail /usr/sbin/sendmail -t -i

DirectiveLocal ValueMaster Value
assert.active11
assert.bail00
assert.callbackno valueno value
assert.quiet_eval00
assert.warning11
auto_detect_line_endings00
default_socket_timeout6060
fromno valueno value
url_rewriter.tagsa=href,area=href,frame=src,input=src,form=fakeentrya=href,area=href,frame=src,input=src,form=fakeentry
user_agentno valueno value

sysvmsg

sysvmsg support enabled
Revision $Id: adf1d2d6be849c46eed3c3ee6f1cbebd1448d6e5 $

tidy

Tidy supportenabled
libTidy Release 25 March 2009
Extension Version 2.0 ($Id: 14aff36094bdd63f1d0adee006215e5e553294ea $)

DirectiveLocal ValueMaster Value
tidy.clean_outputno valueno value
tidy.default_configno valueno value

tokenizer

Tokenizer Support enabled

wddx

WDDX Supportenabled
WDDX Session Serializer enabled

xdebug

xdebug supportenabled
Version 2.2.1
IDE Key no value

Supported protocolsRevision
DBGp - Common DeBuGger Protocol $Revision: 1.145 $

DirectiveLocal ValueMaster Value
xdebug.auto_traceOffOff
xdebug.cli_color00
xdebug.collect_assignmentsOffOff
xdebug.collect_includesOnOn
xdebug.collect_params33
xdebug.collect_returnOnOn
xdebug.collect_varsOnOn
xdebug.coverage_enableOnOn
xdebug.default_enableOnOn
xdebug.dump.COOKIEno valueno value
xdebug.dump.ENVno valueno value
xdebug.dump.FILESno valueno value
xdebug.dump.GETno valueno value
xdebug.dump.POSTno valueno value
xdebug.dump.REQUESTno valueno value
xdebug.dump.SERVERno valueno value
xdebug.dump.SESSIONno valueno value
xdebug.dump_globalsOnOn
xdebug.dump_onceOnOn
xdebug.dump_undefinedOffOff
xdebug.extended_infoOnOn
xdebug.file_link_formatno valueno value
xdebug.idekeyno valueno value
xdebug.max_nesting_level100100
xdebug.overload_var_dumpOnOn
xdebug.profiler_aggregateOffOff
xdebug.profiler_appendOffOff
xdebug.profiler_enableOffOff
xdebug.profiler_enable_triggerOnOn
xdebug.profiler_output_dir/tmp/xdebug//tmp/xdebug/
xdebug.profiler_output_namecachegrind.out.%pcachegrind.out.%p
xdebug.remote_autostartOffOff
xdebug.remote_connect_backOnOn
xdebug.remote_cookie_expire_time36003600
xdebug.remote_enableOnOn
xdebug.remote_handlerdbgpdbgp
xdebug.remote_hostlocalhostlocalhost
xdebug.remote_logno valueno value
xdebug.remote_modereqreq
xdebug.remote_port90009000
xdebug.screamOffOff
xdebug.show_exception_traceOffOff
xdebug.show_local_varsOffOff
xdebug.show_mem_deltaOffOff
xdebug.trace_enable_triggerOffOff
xdebug.trace_format00
xdebug.trace_options00
xdebug.trace_output_dir/tmp/tmp
xdebug.trace_output_nametrace.%ctrace.%c
xdebug.var_display_max_children10241024
xdebug.var_display_max_data20482048
xdebug.var_display_max_depth1010

xml

XML Support active
XML Namespace Support active
libxml2 Version 2.8.0

xmlreader

XMLReader enabled

xmlwriter

XMLWriter enabled

zip

Zip enabled
Extension Version $Id: 6c872ebfb022206b0cc2a183c7a388c7b6ad8685 $
Zip version 1.11.0
Libzip version 0.10.1

zlib

ZLib Supportenabled
Stream Wrapper compress.zlib://
Stream Filter zlib.inflate, zlib.deflate
Compiled Version 1.2.1.1
Linked Version 1.2.7

DirectiveLocal ValueMaster Value
zlib.output_compressionOffOff
zlib.output_compression_level-1-1
zlib.output_handlerno valueno value

Additional Modules

Module Name
sysvsem
sysvshm

HTTP request

Headers

Hostwww.mojoperator.klingger.21.sk
Accept*/*

$_GET

empty

$_POST

empty

$_COOKIE

empty

HTTP response

Headers

X-Powered-By: PHP/5.4.45-0+deb7u14
Set-Cookie: PHPSESSID=fdretcs61ublm4qgg8eqdsehu4; path=/; samesite=none; domain=www.mojoperator.klingger.21.sk; secure
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma: no-cache
Content-Type: text/html; charset=UTF-8