User Warning

Invalid link: No route for Frontend:Sign:default(google=1, locale=cs) search► skip error►

Source file

File: .../Application/UI/Presenter.php:295

285: static 286: function 287: argsToParams($class,$method,&$args,$supplemental=[],&$missing=[]){$i=0;$rm=new\ReflectionMethod($class,$method);foreach($rm->getParameters()as$param){list($type,$isClass)=ComponentReflection::getParameterType($param);$name=$param->getName();if(array_key_exists($i,$args)){$args[$name]=$args[$i];unset($args[$i]);$i++;}elseif(array_key_exists($name,$args)){}elseif(array_key_exists($name,$supplemental)){$args[$name]=$supplemental[$name];}if(!isset($args[$name])){if(!$param->isDefaultValueAvailable()&&!$param->allowsNull()&&$type!=='NULL'&&$type!=='array'){$missing[]=$param;unset($args[$name]);}continue;}if(!ComponentReflection::convertType($args[$name],$type,$isClass)){throw 288: new 289: InvalidLinkException(sprintf('Argument $%s passed to %s() must be %s, %s given.',$name,$rm->getDeclaringClass()->getName().'::'.$rm->getName(),$type==='NULL'?'scalar':$type,is_object($args[$name])?get_class($args[$name]):gettype($args[$name])));}$def=$param->isDefaultValueAvailable()?$param->getDefaultValue():null;if($args[$name]===$def||($def===null&&$args[$name]==='')){$args[$name]=null;}}if(array_key_exists($i,$args)){throw 290: new 291: InvalidLinkException("Passed more parameters than method $class::{$rm->getName()}() expects.");}}/** 292: @return string 293: **/protected 294: function 295: handleInvalidLink(InvalidLinkException$e){if($this->invalidLinkMode&self::INVALID_LINK_EXCEPTION){throw$e;}elseif($this->invalidLinkMode&self::INVALID_LINK_WARNING){trigger_error('Invalid link: '.$e->getMessage(),E_USER_WARNING);}return$this->invalidLinkMode&self::INVALID_LINK_TEXTUAL?'#error: '.$e->getMessage():'#';}/** 296: @param mixed optional expiration time 297: @return string key 298: **/public 299: function

Call stack

  1. .../Application/UI/Presenter.php:295 source  trigger_error(arguments)

    285: static 286: function 287: argsToParams($class,$method,&$args,$supplemental=[],&$missing=[]){$i=0;$rm=new\ReflectionMethod($class,$method);foreach($rm->getParameters()as$param){list($type,$isClass)=ComponentReflection::getParameterType($param);$name=$param->getName();if(array_key_exists($i,$args)){$args[$name]=$args[$i];unset($args[$i]);$i++;}elseif(array_key_exists($name,$args)){}elseif(array_key_exists($name,$supplemental)){$args[$name]=$supplemental[$name];}if(!isset($args[$name])){if(!$param->isDefaultValueAvailable()&&!$param->allowsNull()&&$type!=='NULL'&&$type!=='array'){$missing[]=$param;unset($args[$name]);}continue;}if(!ComponentReflection::convertType($args[$name],$type,$isClass)){throw 288: new 289: InvalidLinkException(sprintf('Argument $%s passed to %s() must be %s, %s given.',$name,$rm->getDeclaringClass()->getName().'::'.$rm->getName(),$type==='NULL'?'scalar':$type,is_object($args[$name])?get_class($args[$name]):gettype($args[$name])));}$def=$param->isDefaultValueAvailable()?$param->getDefaultValue():null;if($args[$name]===$def||($def===null&&$args[$name]==='')){$args[$name]=null;}}if(array_key_exists($i,$args)){throw 290: new 291: InvalidLinkException("Passed more parameters than method $class::{$rm->getName()}() expects.");}}/** 292: @return string 293: **/protected 294: function 295: handleInvalidLink(InvalidLinkException$e){if($this->invalidLinkMode&self::INVALID_LINK_EXCEPTION){throw$e;}elseif($this->invalidLinkMode&self::INVALID_LINK_WARNING){trigger_error('Invalid link: '.$e->getMessage(),E_USER_WARNING);}return$this->invalidLinkMode&self::INVALID_LINK_TEXTUAL?'#error: '.$e->getMessage():'#';}/** 296: @param mixed optional expiration time 297: @return string key 298: **/public 299: function
    $message
    "Invalid link: No route for Frontend:Sign:default(google=1, locale=cs)" (69)
    
    $error_type
    512
    
  2. .../Application/UI/Component.php:109 source  Nette\Application\UI\Presenter->handleInvalidLink(arguments)

    99: @return string 100: **/public 101: static 102: function 103: formatSignalMethod($signal){return$signal==null?null:'handle'.$signal;}/** 104: @param string destination in format "[//] [[[module:]presenter:]action | signal! | this] [#fragment]" 105: @param array|mixed 106: @return string 107: **/public 108: function 109: link($destination,$args=[]){try{$args=func_num_args()<3&&is_array($args)?$args:array_slice(func_get_args(),1);return$this->getPresenter()->createRequest($this,$destination,$args,'link');}catch(InvalidLinkException$e){return$this->getPresenter()->handleInvalidLink($e);}}/** 110: @param string destination in format "[//] [[[module:]presenter:]action | signal! | this] [#fragment]" 111: @param array|mixed 112: @return Link 113: **/public
    $e
    
    
  3. .../FrontendModule/presenters/FrontendPresenter.php:495 source  Nette\Application\UI\Component->link(arguments)

    485: if ( empty( $eshopSettings->data()->googleClientId ) || empty( $eshopSettings->data()->googleClientSecret ) ) 486: { 487: $this->flashMessage( $this->translate( 'google_login_not_set' ) ); 488: $this->redirect( 'this' ); 489: return; 490: } 491: 492: $provider = new \League\OAuth2\Client\Provider\Google( [ 493: 'clientId' => $eshopSettings->data()->googleClientId, 494: 'clientSecret' => $eshopSettings->data()->googleClientSecret, 495: 'redirectUri' => $this->link( '//:Frontend:Sign:default', [ 'google' => true ] ) 496: ] ); 497: 498: // Ziskame URL pro Button k prihlaseni skrz Google 499: $authUrl = $provider->getAuthorizationUrl();
    $destination
    "//:Frontend:Sign:default" (24)
    
    $args
    
    
  4. inner-code App\FrontendModule\Presenters\FrontendPresenter->handleGoogleLogin()

  5. .../Application/UI/Component.php:40 source  ReflectionMethod->invokeArgs(arguments)

    30: Presenter){$this->loadState($presenter->popGlobalParameters($this->getUniqueId()));$this->onAnchor($this);}}/** 31: @return void 32: **/protected 33: function 34: validateParent(Nette\ComponentModel\IContainer$parent){parent::validateParent($parent);$this->monitor(Presenter::class);}/** 35: @param string 36: @param array 37: @return bool does method exist? 38: **/protected 39: function 40: tryCall($method,array$params){$rc=$this->getReflection();if($rc->hasMethod($method)){$rm=$rc->getMethod($method);if($rm->isPublic()&&!$rm->isAbstract()&&!$rm->isStatic()){$this->checkRequirements($rm);$rm->invokeArgs($this,$rc->combineArgs($rm,$params));return 41: true;}}return 42: false;}/** 43: @return void 44: **/public
    $object
    
    
    $args
    array ()
    
  6. .../Application/UI/Component.php:95 source  Nette\Application\UI\Component->tryCall(arguments)

    85: @persistent. 86: @return array 87: **/public 88: static 89: function 90: getPersistentParams(){$rc=new\ReflectionClass(get_called_class());$params=[];foreach($rc->getProperties(\ReflectionProperty::IS_PUBLIC)as$rp){if(!$rp->isStatic()&&ComponentReflection::parseAnnotation($rp,'persistent')){$params[]=$rp->getName();}}return$params;}/** 91: @param string 92: @return void 93: **/public 94: function 95: signalReceived($signal){if(!$this->tryCall($this->formatSignalMethod($signal),$this->params)){$class=get_class($this);throw 96: new 97: BadSignalException("There is no handler for signal '$signal' in class $class.");}}/** 98: @param string 99: @return string
    $method
    "handlegoogleLogin" (17)
    
    $params
    
    
  7. .../Application/UI/Presenter.php:84 source  Nette\Application\UI\Component->signalReceived(arguments)

    74: Application\ForbiddenRequestException;}}/** 75: @return void 76: **/public 77: function 78: processSignal(){if($this->signal===null){return;}$component=$this->signalReceiver===''?$this:$this->getComponent($this->signalReceiver,false);if($component===null){throw 79: new 80: BadSignalException("The signal receiver component '$this->signalReceiver' is not found.");}elseif(!$component 81: instanceof 82: ISignalReceiver){throw 83: new 84: BadSignalException("The signal receiver component '$this->signalReceiver' is not ISignalReceiver implementor.");}$component->signalReceived($this->signal);$this->signal=null;}/** 85: @return array|null 86: **/public 87: function 88: getSignal(){return$this->signal===null?null:[$this->signalReceiver,$this->signal];}/**
    $signal
    "googleLogin" (11)
    
  8. .../Application/UI/Presenter.php:47 source  Nette\Application\UI\Presenter->processSignal()

    37: @return string 38: **/public 39: function 40: getUniqueId(){return'';}/** 41: @return Nette\Application\IResponse 42: **/public 43: function 44: run(Application\Request$request){try{$this->request=$request;$this->payload=$this->payload?:new\stdClass;$this->setParent($this->getParent(),$request->getPresenterName());if(!$this->httpResponse->isSent()){$this->httpResponse->addHeader('Vary','X-Requested-With');}$this->initGlobalParameters();$this->checkRequirements($this->getReflection());$this->onStartup($this);$this->startup();if(!$this->startupCheck){$class=$this->getReflection()->getMethod('startup')->getDeclaringClass()->getName();throw 45: new 46: Nette\InvalidStateException("Method $class::startup() or its descendant doesn't call parent::startup().");}$this->tryCall($this->formatActionMethod($this->action),$this->params);foreach($this->globalParams 47: as$id=>$foo){$this->getComponent($id,false);}if($this->autoCanonicalize){$this->canonicalize();}if($this->httpRequest->isMethod('head')){$this->terminate();}$this->processSignal();$this->beforeRender();$this->tryCall($this->formatRenderMethod($this->view),$this->params);$this->afterRender();$this->saveGlobalState();if($this->isAjax()){$this->payload->state=$this->getGlobalState();}if($this->getTemplate()){$this->sendTemplate();}}catch(Application\AbortException$e){if($this->isAjax()){try{$hasPayload=(array)$this->payload;unset($hasPayload['state']);if($this->response 48: instanceof 49: Responses\TextResponse&&$this->isControlInvalid()){$this->snippetMode=true;$this->response->send($this->httpRequest,$this->httpResponse);$this->sendPayload();}elseif(!$this->response&&$hasPayload){trigger_error('Use $presenter->sendPayload() instead of terminate() to send payload.');$this->sendPayload();}}catch(Application\AbortException$e){}}if($this->hasFlashSession()){$this->getFlashSession()->setExpiration($this->response 50: instanceof 51: Responses\RedirectResponse?'+ 30 seconds':'+ 3 seconds');}$this->onShutdown($this,$this->response);$this->shutdown($this->response);return$this->response;}}/**
  9. .../Application/Application.php:32 source  Nette\Application\UI\Presenter->run(arguments)

    22: BadRequestException('No route for HTTP request.');}return$request;}/** 23: @return void 24: **/public 25: function 26: processRequest(Request$request){process:if(count($this->requests)>self::$maxLoop){throw 27: new 28: ApplicationException('Too many loops detected in application life cycle.');}$this->requests[]=$request;$this->onRequest($this,$request);if(!$request->isMethod($request::FORWARD)&&!strcasecmp($request->getPresenterName(),$this->errorPresenter)){throw 29: new 30: BadRequestException('Invalid request. Presenter is not achievable.');}try{$this->presenter=$this->presenterFactory->createPresenter($request->getPresenterName());}catch(InvalidPresenterException$e){throw 31: count($this->requests)>1?$e:new 32: BadRequestException($e->getMessage(),0,$e);}$this->onPresenter($this,$this->presenter);$response=$this->presenter->run(clone$request);if($response 33: instanceof 34: Responses\ForwardResponse){$request=$response->getRequest();goto 35: process;}elseif($response){$this->onResponse($this,$response);$response->send($this->httpRequest,$this->httpResponse);}}/** 36: @param \Exception|\Throwable
    $request
    
    
  10. .../Application/Application.php:14 source  Nette\Application\Application->processRequest(arguments)

    4: Nette\Application;use 5: Nette;class 6: Application{use 7: Nette\SmartObject;public 8: static$maxLoop=20;public$catchExceptions;public$errorPresenter;public$onStartup;public$onShutdown;public$onRequest;public$onPresenter;public$onResponse;public$onError;private$requests=[];private$presenter;private$httpRequest;private$httpResponse;private$presenterFactory;private$router;public 9: function 10: __construct(IPresenterFactory$presenterFactory,IRouter$router,Nette\Http\IRequest$httpRequest,Nette\Http\IResponse$httpResponse){$this->httpRequest=$httpRequest;$this->httpResponse=$httpResponse;$this->presenterFactory=$presenterFactory;$this->router=$router;}/** 11: @return void 12: **/public 13: function 14: run(){try{$this->onStartup($this);$this->processRequest($this->createInitialRequest());$this->onShutdown($this);}catch(\Exception$e){}catch(\Throwable$e){}if(isset($e)){$this->onError($this,$e);if($this->catchExceptions&&$this->errorPresenter){try{$this->processException($e);$this->onShutdown($this,$e);return;}catch(\Exception$e){$this->onError($this,$e);}catch(\Throwable$e){$this->onError($this,$e);}}$this->onShutdown($this,$e);throw$e;}}/** 15: @return Request 16: **/public 17: function 18: createInitialRequest(){$request=$this->router->match($this->httpRequest);if(!$request
    $request
    
    
  11. .../domysyrovice.cz/data/www/domysyrovice.cz/index.php:18 source  Nette\Application\Application->run()

    8: $_SERVER['HTTPS'] = 'Off'; 9: $_SERVER['SERVER_PORT'] = 80; 10: } 11: } 12: 13: // Uncomment this line if you must temporarily take down your site for maintenance 14: //require __DIR__ . '/www/.maintenance.php'; 15: 16: $container = require __DIR__ . '/app/bootstrap.php'; 17: 18: $container->getByType( 'Nette\Application\Application' )->run(); 19:

Nette Application

Requests


Presenter


		

Environment

$_SERVER

PATH
"/usr/local/bin:/usr/bin:/bin" (28)
TEMP
"/tmp" (4)
TMP
"/tmp" (4)
TMPDIR
"/tmp" (4)
PWD
"/"
HTTP_ACCEPT
"*/*" (3)
HTTP_CONNECTION
"close" (5)
CONTENT_LENGTH
"0"
HTTP_HOST
"www.domysyrovice.cz" (19)
HTTP_USER_AGENT
"claudebot" (9)
HTTP_X_FORWARDED_PROTO
"https" (5)
HTTP_X_FORWARDED_PORT
"443" (3)
REDIRECT_HTTPS
"on" (2)
REDIRECT_UNIQUE_ID
"ZgbgPrUVqCbV62V9Z2vzfAAAABc" (27)
REDIRECT_PERL5LIB
"/usr/share/awstats/lib:/usr/share/awstats/plugins" (49)
REDIRECT_STATUS
"200" (3)
HTTPS
"On" (2)
UNIQUE_ID
"ZgbgPrUVqCbV62V9Z2vzfAAAABc" (27)
PERL5LIB
"/usr/share/awstats/lib:/usr/share/awstats/plugins" (49)
SERVER_SIGNATURE
""
SERVER_SOFTWARE
"Apache/2.4.6 (CloudLinux) OpenSSL/1.0.2k-fips mod_fcgid/2.3.9 PHP/5.4.16" (72)
SERVER_NAME
"www.domysyrovice.cz" (19)
SERVER_ADDR
"127.0.0.1" (9)
SERVER_PORT
443
REMOTE_ADDR
"3.85.167.119" (12)
DOCUMENT_ROOT
"/var/www/domysyrovice.cz/data/www/domysyrovice.cz" (49)
REQUEST_SCHEME
"http" (4)
CONTEXT_PREFIX
""
CONTEXT_DOCUMENT_ROOT
"/var/www/domysyrovice.cz/data/www/domysyrovice.cz" (49)
SERVER_ADMIN
"webmaster@domysyrovice.cz" (25)
SCRIPT_FILENAME
"/var/www/domysyrovice.cz/data/www/domysyrovice.cz/index.php" (59)
REMOTE_PORT
"46000" (5)
REDIRECT_QUERY_STRING
"do=googleLogin" (14)
REDIRECT_URL
"/nova-stranka" (13)
SERVER_PROTOCOL
"HTTP/1.0" (8)
REQUEST_METHOD
"GET" (3)
QUERY_STRING
"do=googleLogin" (14)
REQUEST_URI
"/nova-stranka?do=googleLogin" (28)
SCRIPT_NAME
"/index.php" (10)
PHP_SELF
"/index.php" (10)
REQUEST_TIME_FLOAT
1711726654.211958
REQUEST_TIME
1711726654

$_SESSION

__NFNette Session

Nette Session

basketItems
null
customImages
null
customTexts
null
order

productOptions
null
productUids
null
bookingItems
null
bookingOrder
null
roomOptions
null
roomUids
null
currency

look

clicked

seenPopUps
null
savedCategorySettings
null
favorite
null
Nette.Http.UserStorage/

Constants

AXIS_FORMAT_DEFAULT
680001
AXIS_FORMAT_TIME
680002
AXIS_FORMAT_DATE
680003
AXIS_FORMAT_METRIC
680004
AXIS_FORMAT_CURRENCY
680005
AXIS_FORMAT_TRAFFIC
680006
AXIS_FORMAT_CUSTOM
680007
AXIS_POSITION_LEFT
681001
AXIS_POSITION_RIGHT
681002
AXIS_POSITION_TOP
681001
AXIS_POSITION_BOTTOM
681002
SERIE_SHAPE_FILLEDCIRCLE
681011
SERIE_SHAPE_FILLEDTRIANGLE
681012
SERIE_SHAPE_FILLEDSQUARE
681013
SERIE_SHAPE_FILLEDDIAMOND
681017
SERIE_SHAPE_CIRCLE
681014
SERIE_SHAPE_TRIANGLE
681015
SERIE_SHAPE_SQUARE
681016
SERIE_SHAPE_DIAMOND
681018
AXIS_X
682001
AXIS_Y
682002
ABSOLUTE_MIN
-10000000000000
ABSOLUTE_MAX
10000000000000
VOID
0.123456789
EURO_SYMBOL
"&#8364;" (7)
DIRECTION_VERTICAL
690001
DIRECTION_HORIZONTAL
690002
SCALE_POS_LEFTRIGHT
690101
SCALE_POS_TOPBOTTOM
690102
SCALE_MODE_FLOATING
690201
SCALE_MODE_START0
690202
SCALE_MODE_ADDALL
690203
SCALE_MODE_ADDALL_START0
690204
SCALE_MODE_MANUAL
690205
SCALE_SKIP_NONE
690301
SCALE_SKIP_SAME
690302
SCALE_SKIP_NUMBERS
690303
TEXT_ALIGN_TOPLEFT
690401
TEXT_ALIGN_TOPMIDDLE
690402
TEXT_ALIGN_TOPRIGHT
690403
TEXT_ALIGN_MIDDLELEFT
690404
TEXT_ALIGN_MIDDLEMIDDLE
690405
TEXT_ALIGN_MIDDLERIGHT
690406
TEXT_ALIGN_BOTTOMLEFT
690407
TEXT_ALIGN_BOTTOMMIDDLE
690408
TEXT_ALIGN_BOTTOMRIGHT
690409
POSITION_TOP
690501
POSITION_BOTTOM
690502
LABEL_POS_LEFT
690601
LABEL_POS_CENTER
690602
LABEL_POS_RIGHT
690603
LABEL_POS_TOP
690604
LABEL_POS_BOTTOM
690605
LABEL_POS_INSIDE
690606
LABEL_POS_OUTSIDE
690607
ORIENTATION_HORIZONTAL
690701
ORIENTATION_VERTICAL
690702
ORIENTATION_AUTO
690703
LEGEND_NOBORDER
690800
LEGEND_BOX
690801
LEGEND_ROUND
690802
LEGEND_VERTICAL
690901
LEGEND_HORIZONTAL
690902
LEGEND_FAMILY_BOX
691051
LEGEND_FAMILY_CIRCLE
691052
LEGEND_FAMILY_LINE
691053
DISPLAY_AUTO
691001
DISPLAY_MANUAL
691002
LABELING_ALL
691011
LABELING_DIFFERENT
691012
BOUND_MIN
691021
BOUND_MAX
691022
BOUND_BOTH
691023
BOUND_LABEL_POS_TOP
691031
BOUND_LABEL_POS_BOTTOM
691032
BOUND_LABEL_POS_AUTO
691033
CAPTION_LEFT_TOP
691041
CAPTION_RIGHT_BOTTOM
691042
GRADIENT_SIMPLE
691051
GRADIENT_EFFECT_CAN
691052
LABEL_TITLE_NOBACKGROUND
691061
LABEL_TITLE_BACKGROUND
691062
LABEL_POINT_NONE
691071
LABEL_POINT_CIRCLE
691072
LABEL_POINT_BOX
691073
ZONE_NAME_ANGLE_AUTO
691081
PI
3.14159265
ALL
69
NONE
31
AUTO
690000
OUT_OF_SIGHT
-10000000000000
IMAGE_MAP_STORAGE_FILE
680001
IMAGE_MAP_STORAGE_SESSION
680002
CHART_LAST_LAYOUT_REGULAR
680011
CHART_LAST_LAYOUT_STACKED
680012
IMAGE_MAP_DELIMITER
"\x01"

Configuration options


Configuration

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 7.1.33
DirectiveLocal ValueMaster Value
allow_url_fopenOnOn
allow_url_includeOffOff
arg_separator.input&&
arg_separator.output&&
auto_append_fileno valueno value
auto_globals_jitOnOn
auto_prepend_fileno valueno value
browscapno valueno value
default_charsetUTF-8UTF-8
default_mimetypetext/htmltext/html
disable_classesno valueno value
disable_functionsno valueno value
display_errorsOnOff
display_startup_errorsOffOff
doc_rootno valueno value
docref_extno valueno value
docref_rootno valueno value
enable_dlOnOn
enable_post_data_readingOnOn
error_append_stringno valueno value
error_logno valueno value
error_prepend_stringno valueno value
error_reporting3276732767
expose_phpOnOn
extension_dir/opt/alt/php71/usr/lib64/php/modules/opt/alt/php71/usr/lib64/php/modules
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_errorsOffOff
ignore_repeated_sourceOffOff
ignore_user_abortOffOff
implicit_flushOffOff
include_path.:/opt/alt/php71/usr/share/pear.:/opt/alt/php71/usr/share/pear
input_encodingno valueno value
internal_encodingno valueno value
log_errorsOffOn
log_errors_max_len10241024
mail.add_x_headerOffOff
mail.force_extra_parametersno valueno value
mail.logno valueno value
max_execution_time3030
max_file_uploads4040
max_input_nesting_level6464
max_input_time6060
max_input_vars10001000
max_multipart_body_parts-1-1
memory_limit128M128M
open_basedir/var/www/domysyrovice.cz/data:.no value
output_buffering40964096
output_encodingno valueno value
output_handlerno valueno value
post_max_size100M100M
precision1414
realpath_cache_size4096K4096K
realpath_cache_ttl120120
register_argc_argvOffOff
report_memleaksOnOn
report_zend_debugOnOn
request_orderno valueno value
sendmail_fromno valueno value
sendmail_path/usr/sbin/sendmail -t -i -f webmaster@domysyrovice.cz/usr/sbin/sendmail -t -i
serialize_precision-1-1
short_open_tagOnOn
SMTPlocalhostlocalhost
smtp_port2525
sql.safe_modeOffOff
sys_temp_dirno valueno value
track_errorsOffOff
unserialize_callback_funcno valueno value
upload_max_filesize100M100M
upload_tmp_dir/var/www/domysyrovice.cz/data/mod-tmpno value
user_dirno valueno value
user_ini.cache_ttl300300
user_ini.filename.user.ini.user.ini
variables_orderEGPCSEGPCS
xmlrpc_error_number00
xmlrpc_errorsOffOff
zend.assertions11
zend.detect_unicodeOnOn
zend.enable_gcOnOn
zend.multibyteOffOff
zend.script_encodingno valueno value
zend.signal_checkOffOff

ctype

ctype functions enabled

curl

cURL support enabled
cURL Information 7.87.0
Age 10
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 No
Protocols dict, file, ftp, ftps, gopher, gophers, http, https, imap, imaps, ldap, ldaps, mqtt, pop3, pop3s, rtsp, scp, sftp, smb, smbs, smtp, smtps, telnet, tftp
Host x86_64-redhat-linux-gnu
SSL Version OpenSSL/1.1.1w
ZLib Version 1.2.7
libSSH Version libssh2/1.10.0

date

date/time support enabled
timelib version 2016.05
"Olson" Timezone Database Version 2018.7
Timezone Database internal
Default timezone Europe/Prague
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/PragueEurope/Prague

dom

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

exif

EXIF Support enabled
EXIF Version 7.1.33
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
libmagic 522

filter

Input Validation and Filtering enabled
Revision $Id: 5a34caaa246b9df197f4b43af8ac66a07464fe4b $
DirectiveLocal ValueMaster Value
filter.defaultunsafe_rawunsafe_raw
filter.default_flagsno valueno value

ftp

FTP support enabled
FTPS support enabled

gd

GD Support enabled
GD Version bundled (2.1.0 compatible)
FreeType Support enabled
FreeType Linkage with freetype
FreeType Version 2.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
DirectiveLocal ValueMaster Value
gd.jpeg_ignore_warning11

gettext

GetText Support enabled

gmp

gmp support enabled
GMP version 6.0.0

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

igbinary

igbinary support enabled
igbinary version 3.2.1
igbinary APCu serializer ABI 0
igbinary session support yes
DirectiveLocal ValueMaster Value
igbinary.compact_stringsOnOn

imagick

imagick moduleenabled
imagick module version 3.7.0
imagick classes Imagick, ImagickDraw, ImagickPixel, ImagickPixelIterator, ImagickKernel
Imagick compiled with ImageMagick version ImageMagick 7.1.1-19 Q16-HDRI x86_64 21601 https://imagemagick.org
Imagick using ImageMagick library version ImageMagick 7.1.1-19 Q16-HDRI x86_64 21601 https://imagemagick.org
ImageMagick copyright (C) 1999 ImageMagick Studio LLC
ImageMagick release date 2023-09-30
ImageMagick number of supported formats: 273
ImageMagick supported formats 3FR, 3G2, 3GP, A, AAI, AI, APNG, ART, ARW, ASHLAR, AVI, AVIF, AVS, B, BAYER, BAYERA, BGR, BGRA, BGRO, BIE, BMP, BMP2, BMP3, BRF, C, CAL, CALS, CANVAS, CAPTION, CIN, CIP, CLIP, CMYK, CMYKA, CR2, CR3, CRW, CUBE, CUR, CUT, DATA, DCM, DCR, DCRAW, DCX, DDS, DFONT, DNG, DOT, DPX, DXT1, DXT5, EPDF, EPI, EPS, EPS2, EPS3, EPSF, EPSI, EPT, EPT2, EPT3, ERF, EXR, FARBFELD, FAX, FF, FILE, FITS, FL32, FLV, FRACTAL, FTP, FTS, FTXT, G, G3, G4, GIF, GIF87, GRADIENT, GRAY, GRAYA, GROUP4, GV, HALD, HDR, HEIC, HEIF, 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, K, K25, KDC, LABEL, M, M2V, M4V, MAC, MAP, MASK, MAT, MATTE, MEF, MIFF, MKV, MNG, MONO, MOV, MP4, MPC, MPEG, MPG, MPO, MRW, MSL, MSVG, MTV, MVG, NEF, NRW, NULL, O, ORA, ORF, OTB, OTF, PAL, PALM, PAM, PANGO, PATTERN, PBM, PCD, PCDS, PCL, PCT, PCX, PDB, PDF, PDFA, PEF, PES, PFA, PFB, PFM, PGM, PGX, PHM, PICON, PICT, PIX, PJPEG, PLASMA, PNG, PNG00, PNG24, PNG32, PNG48, PNG64, PNG8, PNM, POCKETMOD, PPM, PS, PS2, PS3, PSB, PSD, PTIF, PWP, QOI, R, RADIAL-GRADIENT, RAF, RAS, RAW, RGB, RGB565, RGBA, RGBO, RGF, RLA, RLE, RMF, RSVG, RW2, SCR, SCREENSHOT, SCT, SFW, SGI, SHTML, SIX, SIXEL, SPARSE-COLOR, SR2, SRF, STEGANO, STRIMG, SUN, SVG, SVGZ, TEXT, TGA, THUMBNAIL, TIFF, TIFF64, TILE, TIM, TM2, TTC, TTF, TXT, UBRL, UBRL6, UIL, UYVY, VDA, VICAR, VID, VIFF, VIPS, VST, WBMP, WEBM, WEBP, WMF, WMV, WMZ, WPG, X, X3F, XBM, XC, XCF, XPM, XPS, XV, XWD, Y, YAML, 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_check00

intl

Internationalization supportenabled
version 1.1.0
ICU version 63.1
ICU Data version 63.1
DirectiveLocal ValueMaster Value
intl.default_localeno valueno value
intl.error_level00
intl.use_exceptions00

json

json support enabled
json version 1.5.0

ldap

LDAP Support enabled
RCS Version $Id: 5f1913de8e05a346da913956f81e0c0d8991c7cb $
Total Links 0/unlimited
API Version 3001
Vendor Name OpenLDAP
Vendor Version 20446
SASL Support Enabled
DirectiveLocal ValueMaster Value
ldap.max_linksUnlimitedUnlimited

libxml

libXML support active
libXML Compiled Version 2.10.2
libXML Loaded Version 21002
libXML streams enabled

mbstring

Multibyte Support enabled
Multibyte string engine libmbfl
HTTP input encoding translation disabled
libmbfl version 1.3.2
oniguruma version 5.9.6
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) backtrack check On
Multibyte regex (oniguruma) version 5.9.6
DirectiveLocal ValueMaster Value
mbstring.detect_orderno valueno value
mbstring.encoding_translationOffOff
mbstring.func_overload00
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.strict_detectionOffOff
mbstring.substitute_characterno valueno value

memcache

memcache supportenabled
Version 4.0.5.2
Revision $Revision$
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_key00
memcache.prefix_host_key_remove_subdomain00
memcache.prefix_host_key_remove_www11
memcache.prefix_static_keyno valueno value
memcache.protocolasciiascii
memcache.redundancy11
memcache.session_prefix_host_key00
memcache.session_prefix_host_key_remove_subdomain00
memcache.session_prefix_host_key_remove_www11
memcache.session_prefix_static_keyno valueno value
memcache.session_redundancy22
memcache.session_save_pathno valueno value

memcached

memcached supportenabled
Version 3.1.5
libmemcached version 1.0.18
SASL support yes
Session support yes
igbinary support yes
json support no
msgpack support no
DirectiveLocal ValueMaster Value
memcached.compression_factor1.31.3
memcached.compression_threshold20002000
memcached.compression_typefastlzfastlz
memcached.default_binary_protocolOffOff
memcached.default_connect_timeout00
memcached.default_consistent_hashOffOff
memcached.serializerigbinaryigbinary
memcached.sess_binary_protocolOnOn
memcached.sess_connect_timeout00
memcached.sess_consistent_hashOnOn
memcached.sess_consistent_hash_typeketamaketama
memcached.sess_lock_expire00
memcached.sess_lock_max_waitnot setnot set
memcached.sess_lock_retries55
memcached.sess_lock_waitnot setnot set
memcached.sess_lock_wait_max150150
memcached.sess_lock_wait_min150150
memcached.sess_lockingOnOn
memcached.sess_number_of_replicas00
memcached.sess_persistentOffOff
memcached.sess_prefixmemc.sess.key.memc.sess.key.
memcached.sess_randomize_replica_readOffOff
memcached.sess_remove_failed_serversOffOff
memcached.sess_sasl_passwordno valueno value
memcached.sess_sasl_usernameno valueno value
memcached.sess_server_failure_limit00
memcached.store_retry_count22

mysqli

MysqlI Supportenabled
Client API library version mysqlnd 5.0.12-dev - 20150407 - $Id: 38fea24f2847fa7519001be390c98ae0acafe387 $
Active Persistent Links 0
Inactive Persistent Links 0
Active Links 0
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_socketno valueno value
mysqli.default_userno valueno value
mysqli.max_linksUnlimitedUnlimited
mysqli.max_persistentUnlimitedUnlimited
mysqli.reconnectOffOff
mysqli.rollback_on_cached_plinkOffOff

mysqlnd

mysqlndenabled
Version mysqlnd 5.0.12-dev - 20150407 - $Id: 38fea24f2847fa7519001be390c98ae0acafe387 $
Compression supported
core SSL supported
extended SSL supported
Command buffer size 4096
Read buffer size 32768
Read timeout 31536000
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
mysqlnd statistics
bytes_sent 0
bytes_received 0
packets_sent 0
packets_received 0
protocol_overhead_in 0
protocol_overhead_out 0
bytes_received_ok_packet 0
bytes_received_eof_packet 0
bytes_received_rset_header_packet 0
bytes_received_rset_field_meta_packet 0
bytes_received_rset_row_packet 0
bytes_received_prepare_response_packet 0
bytes_received_change_user_packet 0
packets_sent_command 0
packets_received_ok 0
packets_received_eof 0
packets_received_rset_header 0
packets_received_rset_field_meta 0
packets_received_rset_row 0
packets_received_prepare_response 0
packets_received_change_user 0
result_set_queries 0
non_result_set_queries 0
no_index_used 0
bad_index_used 0
slow_queries 0
buffered_sets 0
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 0
rows_fetched_from_server_ps 0
rows_buffered_from_client_normal 0
rows_buffered_from_client_ps 0
rows_fetched_from_client_normal_buffered 0
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 0
rows_affected_ps 0
rows_skipped_normal 0
rows_skipped_ps 0
copy_on_write_saved 0
copy_on_write_performed 0
command_buffer_too_small 0
connect_success 0
connect_failure 0
connection_reused 0
reconnect 0
pconnect_success 0
active_connections 0
active_persistent_connections 0
explicit_close 0
implicit_close 0
disconnect_close 0
in_middle_of_command_close 0
explicit_free_result 0
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 0
proto_text_fetched_short 0
proto_text_fetched_int24 0
proto_text_fetched_int 0
proto_text_fetched_bigint 0
proto_text_fetched_decimal 0
proto_text_fetched_float 0
proto_text_fetched_double 0
proto_text_fetched_date 0
proto_text_fetched_year 0
proto_text_fetched_time 0
proto_text_fetched_datetime 0
proto_text_fetched_timestamp 0
proto_text_fetched_string 0
proto_text_fetched_blob 0
proto_text_fetched_enum 0
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 0
com_init_db 0
com_query 0
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 0
bytes_received_real_data_ps 0

openssl

OpenSSL support enabled
OpenSSL Library Version OpenSSL 1.1.1w 11 Sep 2023
OpenSSL Header Version OpenSSL 1.1.1w 11 Sep 2023
Openssl default config /opt/alt/openssl11/etc/pki/tls/openssl.cnf
DirectiveLocal ValueMaster Value
openssl.cafileno valueno value
openssl.capathno valueno value

pcntl

pcntl supportenabled

pcre

PCRE (Perl Compatible Regular Expressions) Support enabled
PCRE Library Version 8.38 2015-11-23
PCRE JIT Support enabled
DirectiveLocal ValueMaster Value
pcre.backtrack_limit10000001000000
pcre.jit11
pcre.recursion_limit100000100000

PDO

PDO supportenabled
PDO drivers mysql, sqlite

pdo_mysql

PDO Driver for MySQLenabled
Client API version 10.1.48-MariaDB
DirectiveLocal ValueMaster Value
pdo_mysql.default_socket/var/lib/mysql/mysql.sock/var/lib/mysql/mysql.sock

pdo_sqlite

PDO Driver for SQLite 3.xenabled
SQLite Library 3.39.4

Phar

Phar: PHP Archive supportenabled
Phar EXT version 2.0.2
Phar API version 1.1.1
SVN revision $Id: e117ab0dc068703c55b505e78a0d3b3752e9c0b7 $
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: e3a2bc739dee8e0d29094e30e1cfbe3e87e2ceb4 $

pspell

PSpell Support enabled

readline

Readline Supportenabled
Readline library 6.2
DirectiveLocal ValueMaster Value
cli.pagerno valueno value
cli.prompt\b \> \b \> 

Reflection

Reflectionenabled
Version $Id: 279be19a9e466fb7cfea9841a630521f99644504 $

session

Session Support enabled
Registered save handlers files user memcache memcached
Registered serializer handlers php_serialize php php_binary igbinary wddx
DirectiveLocal ValueMaster Value
session.auto_startOffOff
session.cache_expire180180
session.cache_limiternocachenocache
session.cookie_domainno valueno value
session.cookie_httponlyOnOff
session.cookie_lifetime12060000
session.cookie_path//
session.cookie_secureOffOff
session.gc_divisor10001000
session.gc_maxlifetime12060001440
session.gc_probability11
session.lazy_writeOnOn
session.namePHPSESSIDPHPSESSID
session.referer_checkno valueno value
session.save_handlerfilesfiles
session.save_path/var/www/domysyrovice.cz/data/mod-tmp/opt/alt/php71/var/lib/php/session
session.serialize_handlerphpphp
session.sid_bits_per_character44
session.sid_length3232
session.upload_progress.cleanupOnOn
session.upload_progress.enabledOnOn
session.upload_progress.freq1%1%
session.upload_progress.min_freq11
session.upload_progress.namePHP_SESSION_UPLOAD_PROGRESSPHP_SESSION_UPLOAD_PROGRESS
session.upload_progress.prefixupload_progress_upload_progress_
session.use_cookiesOnOn
session.use_only_cookiesOnOn
session.use_strict_modeOffOff
session.use_trans_sid00

shmop

shmop support enabled

SimpleXML

Simplexml supportenabled
Revision $Id: ae067cdcddf424d6e762603905b98798bc924a00 $
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

sqlite3

SQLite3 supportenabled
SQLite3 module version 7.1.33
SQLite Library 3.28.0
DirectiveLocal ValueMaster Value
sqlite3.defensive11
sqlite3.extension_dirno valueno value

standard

Dynamic Library Support enabled
Path to sendmail /usr/sbin/sendmail -t -i -f webmaster@domysyrovice.cz
DirectiveLocal ValueMaster Value
assert.active11
assert.bail00
assert.callbackno valueno value
assert.exception00
assert.quiet_eval00
assert.warning11
auto_detect_line_endings00
default_socket_timeout6060
fromno valueno value
session.trans_sid_hostsno valueno value
session.trans_sid_tagsa=href,area=href,frame=src,form=a=href,area=href,frame=src,form=
url_rewriter.hostsno valueno value
url_rewriter.tagsa=href,area=href,frame=src,input=src,form=fakeentrya=href,area=href,frame=src,input=src,form=fakeentry
user_agentno valueno value

sysvmsg

sysvmsg support enabled
Revision $Id: 483c70b5c54718693a4b95633a097e33d1120ba9 $

sysvsem

Version 7.1.33

sysvshm

Version 7.1.33

tidy

Tidy supportenabled
libTidy Version 5.4.0
libTidy Release 2017/03/01
Extension Version 7.1.33 ($Id: c6d6b80d55c5d351deaa745c3c540971e5583c24 $)
DirectiveLocal ValueMaster Value
tidy.clean_outputno valueno value
tidy.default_configno valueno value

tokenizer

Tokenizer Support enabled

wddx

WDDX Supportenabled
WDDX Session Serializer enabled

xml

XML Support active
XML Namespace Support active
libxml2 Version 2.10.2

xmlreader

XMLReader enabled

xmlrpc

core library version xmlrpc-epi v. 0.51
php extension version 7.1.33
author Dan Libby
homepage http://xmlrpc-epi.sourceforge.net
open sourced by Epinions.com

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

Zend OPcache

Opcode Caching Up and Running
Optimization Enabled
SHM Cache Enabled
File Cache Disabled
Startup OK
Shared memory model mmap
Cache hits 215
Cache misses 263
Used memory 29489200
Free memory 104728528
Wasted memory 0
Interned Strings Used memory 1475456
Interned Strings Free memory 6913152
Cached scripts 263
Cached keys 415
Max keys 16229
OOM restarts 0
Hash keys restarts 0
Manual restarts 0
DirectiveLocal ValueMaster Value
opcache.blacklist_filenameno valueno value
opcache.consistency_checks00
opcache.dups_fixOffOff
opcache.enableOnOn
opcache.enable_cliOffOff
opcache.enable_file_overrideOffOff
opcache.error_logno valueno value
opcache.fast_shutdown00
opcache.file_cacheno valueno value
opcache.file_cache_consistency_checks11
opcache.file_cache_only00
opcache.file_update_protection22
opcache.force_restart_timeout180180
opcache.huge_code_pagesOffOff
opcache.inherited_hackOnOn
opcache.interned_strings_buffer88
opcache.lockfile_path/tmp/tmp
opcache.log_verbosity_level11
opcache.max_accelerated_files1000010000
opcache.max_file_size00
opcache.max_wasted_percentage55
opcache.memory_consumption128128
opcache.opt_debug_level00
opcache.optimization_level0x7FFFBFFF0x7FFFBFFF
opcache.preferred_memory_modelno valueno value
opcache.protect_memory00
opcache.restrict_apino valueno value
opcache.revalidate_freq22
opcache.revalidate_pathOffOff
opcache.save_comments11
opcache.use_cwdOnOn
opcache.validate_permissionOffOff
opcache.validate_rootOffOff
opcache.validate_timestampsOnOn

zip

Zip enabled
Zip version 1.13.5
Libzip version 1.3.2

zlib

ZLib Supportenabled
Stream Wrapper compress.zlib://
Stream Filter zlib.inflate, zlib.deflate
Compiled Version 1.2.7
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
litespeed

HTTP request

Headers

Hostwww.domysyrovice.cz
X-Forwarded-Protohttps
X-Forwarded-Port443
Connectionclose
Accept*/*
User-Agentclaudebot
Content-Length0

$_GET

do
"googleLogin" (11)

$_POST

empty

$_COOKIE

empty

HTTP response

Headers

X-Powered-By: Nette Framework
X-Frame-Options: SAMEORIGIN
Set-Cookie: PHPSESSID=57cf4dfc8adbcf3249c9b6c723d2bebc; expires=Fri, 12-Apr-2024 14:37:34 GMT; Max-Age=1206000; 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
Content-Type: text/html; charset=UTF-8