TypeError
File: .../h577341.linp052.arubabusiness.it/webstack.livedata.it/torneoselis/site/ready.php:68
58: $stat_squadra2->subiti += $partita->gol_squadra_1; 59: 60: $stat_squadra1->differenza_reti = $stat_squadra1->segnati - $stat_squadra1->subiti; 61: $stat_squadra2->differenza_reti = $stat_squadra2->segnati - $stat_squadra2->subiti; 62: 63: if ($partita->gol_squadra_1 > $partita->gol_squadra_2) { 64: $stat_squadra1->vittorie += 1; 65: $stat_squadra2->sconfitte += 1; 66: $stat_squadra1->punti += 3; 67: } elseif ($partita->gol_squadra_1 < $partita->gol_squadra_2) { 68: $stat_squadra2->vittorie += 1; 69: $stat_squadra1->sconfitte += 1; 70: $stat_squadra2->punti += 3; 71: } else { 72: $stat_squadra1->pareggi += 1;
1075: if(!$toMethodCallable && strpos($toMethod, "\\") === false && __NAMESPACE__) { 1076: $_toMethod = $toMethod; 1077: $toMethod = "\\" . __NAMESPACE__ . "\\$toMethod"; 1078: $toMethodCallable = is_callable($toMethod); 1079: if(!$toMethodCallable) { 1080: $toMethod = "\\$_toMethod"; 1081: $toMethodCallable = is_callable($toMethod); 1082: } 1083: } 1084: if($toMethodCallable) { 1085: $returnValue = $toMethod($event); 1086: } else { 1087: // hook fail, not callable 1088: $returnValue = null; 1089: }
#0 |
---|
474: if(empty($arguments) && Fuel::isCommon($method)) { 475: // faster version of _callWireAPI for when conditions allow 476: if($this->_wire && !method_exists($this, "___$method")) { 477: // get a common API var with no arguments as method call more quickly 478: $val = $this->_wire->fuel($method); 479: if($val !== null) return $val; 480: } 481: } 482: $hooks = $this->_wireHooks(); 483: if($hooks) { 484: $result = $hooks->runHooks($this, $method, $arguments); 485: if(!$result['methodExists'] && !$result['numHooksRun']) { 486: $result = $this->_callWireAPI($method, $arguments); 487: if(!$result) return $this->callUnknown($method, $arguments); 488: }
$object | |
---|---|
$method | 'saved'
|
$arguments |
717: $page->parent->numChildren++; 718: } 719: 720: // save any needed updates to pages_parents table 721: $this->pages->parents()->save($page); 722: 723: // if page hasn't changed, don't continue further 724: if(!$page->isChanged() && !$isNew) { 725: $this->pages->debugLog('save', '[not-changed]', true); 726: if(empty($options['noHooks'])) { 727: $this->pages->saved($page, array()); 728: $this->pages->savedPageOrField($page, array()); 729: } 730: return true; 731: }
$method | 'saved'
|
---|---|
$arguments |
485: } 486: } 487: 488: if($options['adjustName']) $this->pages->names()->checkNameConflicts($page); 489: 490: if($page->namePrevious && !$isNew && $page->namePrevious != $page->name) { 491: if($useHooks) $this->pages->renameReady($page); 492: } 493: 494: $result = $this->savePageQuery($page, $options); 495: if($result) $result = $this->savePageFinish($page, $isNew, $options); 496: if($language) $user->setLanguage($language); // restore language 497: 498: if($result && !empty($callback) && $useHooks) { 499: if(is_string($callback) && ctype_alnum($callback)) {
$page | |
---|---|
$isNew | false
|
$options |
831: * - `forceID` (integer): Use this ID instead of an auto-assigned one (new page) or current ID (existing page). 832: * - `ignoreFamily` (boolean): Bypass check of allowed family/parent settings when saving (default=false). 833: * - `noHooks` (boolean): Prevent before/after save hooks (default=false), please also use $pages->___save() for call. 834: * - `noFields` (boolean): Bypass saving of custom fields, leaving only native properties to be saved (default=false). 835: * @return bool True on success, false on failure 836: * @throws WireException 837: * @see Page::save(), Pages::saveField() 838: * 839: */ 840: public function ___save(Page $page, $options = array()) { 841: return $this->editor()->save($page, $options); 842: } 843: 844: /** 845: * Save only a field from the given page
$page | |
---|---|
$options |
409: public function _callMethod($method, $arguments) { 410: $qty = $arguments ? count($arguments) : 0; 411: switch($qty) { 412: case 0: 413: $result = $this->$method(); 414: break; 415: case 1: 416: $result = $this->$method($arguments[0]); 417: break; 418: case 2: 419: $result = $this->$method($arguments[0], $arguments[1]); 420: break; 421: case 3: 422: $result = $this->$method($arguments[0], $arguments[1], $arguments[2]); 423: break;
$page | |
---|---|
$options | array (0)
|
958: } 959: } 960: 961: if($hooks === null) $hooks = $this->getHooks($object, $method); 962: 963: foreach(array('before', 'after') as $when) { 964: 965: if($type === 'method') { 966: if($when === 'after' && $result['replace'] !== true) { 967: if($methodExists) { 968: $result['return'] = $object->_callMethod($realMethod, $arguments); 969: } else { 970: $result['return'] = null; 971: } 972: }
$method | '___save'
|
---|---|
$arguments |
474: if(empty($arguments) && Fuel::isCommon($method)) { 475: // faster version of _callWireAPI for when conditions allow 476: if($this->_wire && !method_exists($this, "___$method")) { 477: // get a common API var with no arguments as method call more quickly 478: $val = $this->_wire->fuel($method); 479: if($val !== null) return $val; 480: } 481: } 482: $hooks = $this->_wireHooks(); 483: if($hooks) { 484: $result = $hooks->runHooks($this, $method, $arguments); 485: if(!$result['methodExists'] && !$result['numHooksRun']) { 486: $result = $this->_callWireAPI($method, $arguments); 487: if(!$result) return $this->callUnknown($method, $arguments); 488: }
$object | |
---|---|
$method | 'save'
|
$arguments |
2209: if($input->post('restore_page') && $page->isTrash() && $page->restorable()) { 2210: if($formErrors) { 2211: $this->warning($this->_('Page cannot be restored while errors are present')); 2212: } else if($pages->restore($page, false)) { 2213: $message = sprintf($this->_('Restored Page: %s'), '{path}') . $numChanges; 2214: } else { 2215: $this->warning($this->_('Error restoring page')); 2216: } 2217: } 2218: 2219: $pages->save($page, $options); 2220: $message = str_replace('{path}', $page->path, $message); 2221: $this->message($message); 2222: 2223: if($name && $name != $page->name) {
$method | 'save'
|
---|---|
$arguments |
566: if($adminTheme) { 567: $className = $this->className(); 568: $adminTheme->addBodyClass("$className-id-{$this->page->id}"); 569: $adminTheme->addBodyClass("$className-template-{$this->page->template->name}"); 570: } 571: 572: $this->form = $this->modules->get('InputfieldForm'); 573: $this->form = $this->buildForm($this->form); 574: $this->form->setTrackChanges(); 575: 576: if($this->isPost && $this->form->isSubmitted()) $this->processSave(); 577: 578: if($this->page->hasStatus(Page::statusLocked)) { 579: if($this->user->hasPermission('page-lock', $this->page)) { 580: $this->warning($this->noticeLocked); // Page locked message
403: * 404: * @param string $method 405: * @param array $arguments 406: * @return mixed 407: * 408: */ 409: public function _callMethod($method, $arguments) { 410: $qty = $arguments ? count($arguments) : 0; 411: switch($qty) { 412: case 0: 413: $result = $this->$method(); 414: break; 415: case 1: 416: $result = $this->$method($arguments[0]); 417: break;
958: } 959: } 960: 961: if($hooks === null) $hooks = $this->getHooks($object, $method); 962: 963: foreach(array('before', 'after') as $when) { 964: 965: if($type === 'method') { 966: if($when === 'after' && $result['replace'] !== true) { 967: if($methodExists) { 968: $result['return'] = $object->_callMethod($realMethod, $arguments); 969: } else { 970: $result['return'] = null; 971: } 972: }
$method | '___execute'
|
---|---|
$arguments | array (0)
|
474: if(empty($arguments) && Fuel::isCommon($method)) { 475: // faster version of _callWireAPI for when conditions allow 476: if($this->_wire && !method_exists($this, "___$method")) { 477: // get a common API var with no arguments as method call more quickly 478: $val = $this->_wire->fuel($method); 479: if($val !== null) return $val; 480: } 481: } 482: $hooks = $this->_wireHooks(); 483: if($hooks) { 484: $result = $hooks->runHooks($this, $method, $arguments); 485: if(!$result['methodExists'] && !$result['numHooksRun']) { 486: $result = $this->_callWireAPI($method, $arguments); 487: if(!$result) return $this->callUnknown($method, $arguments); 488: }
$object | |
---|---|
$method | 'execute'
|
$arguments | array (0)
|
351: if($navJSON === 'navJSON/') { 352: $this->wire()->session->location('../'); 353: } else if($navJSON === '/navJSON') { 354: $this->wire()->session->location('./'); 355: } 356: } 357: 358: // call method from Process (and time it if debug mode enabled) 359: $className = $process->className(); 360: if($debug) Debug::timer("$className.$method()"); 361: $content = $process->$method(); 362: if($debug) Debug::saveTimer("$className.$method()"); 363: 364: // setup breadcrumbs if in some method other than the main execute() method 365: if($method !== 'execute') {
$method | 'execute'
|
---|---|
$arguments | array (0)
|
403: * 404: * @param string $method 405: * @param array $arguments 406: * @return mixed 407: * 408: */ 409: public function _callMethod($method, $arguments) { 410: $qty = $arguments ? count($arguments) : 0; 411: switch($qty) { 412: case 0: 413: $result = $this->$method(); 414: break; 415: case 1: 416: $result = $this->$method($arguments[0]); 417: break;
958: } 959: } 960: 961: if($hooks === null) $hooks = $this->getHooks($object, $method); 962: 963: foreach(array('before', 'after') as $when) { 964: 965: if($type === 'method') { 966: if($when === 'after' && $result['replace'] !== true) { 967: if($methodExists) { 968: $result['return'] = $object->_callMethod($realMethod, $arguments); 969: } else { 970: $result['return'] = null; 971: } 972: }
$method | '___execute'
|
---|---|
$arguments | array (0)
|
474: if(empty($arguments) && Fuel::isCommon($method)) { 475: // faster version of _callWireAPI for when conditions allow 476: if($this->_wire && !method_exists($this, "___$method")) { 477: // get a common API var with no arguments as method call more quickly 478: $val = $this->_wire->fuel($method); 479: if($val !== null) return $val; 480: } 481: } 482: $hooks = $this->_wireHooks(); 483: if($hooks) { 484: $result = $hooks->runHooks($this, $method, $arguments); 485: if(!$result['methodExists'] && !$result['numHooksRun']) { 486: $result = $this->_callWireAPI($method, $arguments); 487: if(!$result) return $this->callUnknown($method, $arguments); 488: }
$object | |
---|---|
$method | 'execute'
|
$arguments | array (0)
|
164: $initFile = $config->paths->adminTemplates . 'init.php'; 165: if(is_file($initFile)) { 166: if(strpos($initFile, $config->paths->site) === 0) { 167: // admin themes in /site/modules/ may be compiled 168: $initFile = $wire->files->compile($initFile); 169: } 170: /** @noinspection PhpIncludeInspection */ 171: include_once($initFile); 172: } 173: if($modal) $session->addHookBefore('redirect', null, '_hookSessionRedirectModal'); 174: $content = $controller->execute(); 175: $process = $controller->wire('process'); 176: 177: if(!$ajax && !$modal && !$demo && $user->isLoggedin()) _checkForTwoFactorAuth($session); 178: if($process) {} // ignore
$method | 'execute'
|
---|---|
$arguments | array (0)
|
8: * to another application. 9: * 10: * Feel free to hook admin-specific functionality from this file, 11: * but remember to leave the require() statement below at the end. 12: * 13: * Note: this template file does not use the _init.php or _main.php 14: * 15: */ 16: 17: /** @var Config $config */ 18: require($config->paths->core . "admin.php");
#0 | '/var/www/vhosts/h577341.linp052.arubabusiness.it/webstack.livedata.it/torneoselis/wire/core/admin.php'
|
---|
318: if($this->fileFailed($this->currentFilename, $e)) throw $this->renderFailed($e); 319: } 320: 321: if($this->halt) { 322: // if prepend file indicates we should halt, then do not render next file 323: $this->returnValue = 0; 324: } else { 325: // include main file to render 326: try { 327: $this->fileReady($this->filename); 328: $this->returnValue = require($this->filename); 329: $this->fileFinished(); 330: } catch(\Exception $e) { 331: if($this->fileFailed($this->filename, $e)) throw $this->renderFailed($e); 332: }
#0 | '/var/www/vhosts/h577341.linp052.arubabusiness.it/webstack.livedata.it/torneoselis/site/templates/admin.php'
|
---|
403: * 404: * @param string $method 405: * @param array $arguments 406: * @return mixed 407: * 408: */ 409: public function _callMethod($method, $arguments) { 410: $qty = $arguments ? count($arguments) : 0; 411: switch($qty) { 412: case 0: 413: $result = $this->$method(); 414: break; 415: case 1: 416: $result = $this->$method($arguments[0]); 417: break;
958: } 959: } 960: 961: if($hooks === null) $hooks = $this->getHooks($object, $method); 962: 963: foreach(array('before', 'after') as $when) { 964: 965: if($type === 'method') { 966: if($when === 'after' && $result['replace'] !== true) { 967: if($methodExists) { 968: $result['return'] = $object->_callMethod($realMethod, $arguments); 969: } else { 970: $result['return'] = null; 971: } 972: }
$method | '___render'
|
---|---|
$arguments | array (0)
|
474: if(empty($arguments) && Fuel::isCommon($method)) { 475: // faster version of _callWireAPI for when conditions allow 476: if($this->_wire && !method_exists($this, "___$method")) { 477: // get a common API var with no arguments as method call more quickly 478: $val = $this->_wire->fuel($method); 479: if($val !== null) return $val; 480: } 481: } 482: $hooks = $this->_wireHooks(); 483: if($hooks) { 484: $result = $hooks->runHooks($this, $method, $arguments); 485: if(!$result['methodExists'] && !$result['numHooksRun']) { 486: $result = $this->_callWireAPI($method, $arguments); 487: if(!$result) return $this->callUnknown($method, $arguments); 488: }
$object | |
---|---|
$method | 'render'
|
$arguments | array (0)
|
571: } 572: } 573: 574: // pass along the $options as a local variable to the template so that one can provide their 575: // own additional variables in it if they want to 576: $output->set('options', $options); 577: 578: /** @var WireProfilerInterface $profiler */ 579: $profiler = $this->wire('profiler'); 580: $profilerEvent = $profiler ? $profiler->start($page->path, $this, array('page' => $page)) : null; 581: $data = $output->render(); 582: if($profilerEvent) $profiler->stop($profilerEvent); 583: if(!strlen($data) && $page->template->name === 'admin' && !is_readable($options['filename'])) { 584: throw new WireException('Missing or non-readable template file: ' . basename($options['filename'])); 585: }
$method | 'render'
|
---|---|
$arguments | array (0)
|
406: * @return mixed 407: * 408: */ 409: public function _callMethod($method, $arguments) { 410: $qty = $arguments ? count($arguments) : 0; 411: switch($qty) { 412: case 0: 413: $result = $this->$method(); 414: break; 415: case 1: 416: $result = $this->$method($arguments[0]); 417: break; 418: case 2: 419: $result = $this->$method($arguments[0], $arguments[1]); 420: break;
$event |
---|
958: } 959: } 960: 961: if($hooks === null) $hooks = $this->getHooks($object, $method); 962: 963: foreach(array('before', 'after') as $when) { 964: 965: if($type === 'method') { 966: if($when === 'after' && $result['replace'] !== true) { 967: if($methodExists) { 968: $result['return'] = $object->_callMethod($realMethod, $arguments); 969: } else { 970: $result['return'] = null; 971: } 972: }
$method | '___renderPage'
|
---|---|
$arguments |
474: if(empty($arguments) && Fuel::isCommon($method)) { 475: // faster version of _callWireAPI for when conditions allow 476: if($this->_wire && !method_exists($this, "___$method")) { 477: // get a common API var with no arguments as method call more quickly 478: $val = $this->_wire->fuel($method); 479: if($val !== null) return $val; 480: } 481: } 482: $hooks = $this->_wireHooks(); 483: if($hooks) { 484: $result = $hooks->runHooks($this, $method, $arguments); 485: if(!$result['methodExists'] && !$result['numHooksRun']) { 486: $result = $this->_callWireAPI($method, $arguments); 487: if(!$result) return $this->callUnknown($method, $arguments); 488: }
$object | |
---|---|
$method | 'renderPage'
|
$arguments |
1084: if($toMethodCallable) { 1085: $returnValue = $toMethod($event); 1086: } else { 1087: // hook fail, not callable 1088: $returnValue = null; 1089: } 1090: } else { 1091: /** @var Wire $toObject */ 1092: if($hook['toPublic']) { 1093: // public 1094: $returnValue = $toObject->$toMethod($event); 1095: } else { 1096: // protected or private 1097: $returnValue = $toObject->_callMethod($toMethod, array($event)); 1098: }
$method | 'renderPage'
|
---|---|
$arguments |
474: if(empty($arguments) && Fuel::isCommon($method)) { 475: // faster version of _callWireAPI for when conditions allow 476: if($this->_wire && !method_exists($this, "___$method")) { 477: // get a common API var with no arguments as method call more quickly 478: $val = $this->_wire->fuel($method); 479: if($val !== null) return $val; 480: } 481: } 482: $hooks = $this->_wireHooks(); 483: if($hooks) { 484: $result = $hooks->runHooks($this, $method, $arguments); 485: if(!$result['methodExists'] && !$result['numHooksRun']) { 486: $result = $this->_callWireAPI($method, $arguments); 487: if(!$result) return $this->callUnknown($method, $arguments); 488: }
$object | |
---|---|
$method | 'render'
|
$arguments | array (0)
|
183: try { 184: if($file) { 185: $this->responseType = self::responseTypeFile; 186: $this->wire()->setStatus(ProcessWire::statusDownload, array('downloadFile' => $file)); 187: $this->sendFile($page, $file); 188: 189: } else { 190: $contentType = $this->contentTypeHeader($page, true); 191: $this->wire()->setStatus(ProcessWire::statusRender, array('contentType' => $contentType)); 192: if($config->ajax) $this->responseType = self::responseTypeAjax; 193: return $page->render(); 194: } 195: 196: } catch(Wire404Exception $e) { 197: // 404 exception thrown during page render
$method | 'render'
|
---|---|
$arguments | array (0)
|
104: 105: if($config->usePoweredBy !== null) header('X-Powered-By:' . ($config->usePoweredBy ? ' ProcessWire CMS' : '')); 106: 107: $pages->setOutputFormatting(true); 108: 109: if($timerKey) Debug::timer($timerKey); 110: $page = $this->getPage(); 111: if($timerKey) Debug::saveTimer($timerKey, ($page && $page->id ? $page->path : '')); 112: 113: if($page && $page->id) { 114: return $this->renderPage($page, $request); 115: } else { 116: return $this->renderNoPage($request); 117: } 118: }
$page | |
---|---|
$request |
406: * @return mixed 407: * 408: */ 409: public function _callMethod($method, $arguments) { 410: $qty = $arguments ? count($arguments) : 0; 411: switch($qty) { 412: case 0: 413: $result = $this->$method(); 414: break; 415: case 1: 416: $result = $this->$method($arguments[0]); 417: break; 418: case 2: 419: $result = $this->$method($arguments[0], $arguments[1]); 420: break;
$internal | true
|
---|
958: } 959: } 960: 961: if($hooks === null) $hooks = $this->getHooks($object, $method); 962: 963: foreach(array('before', 'after') as $when) { 964: 965: if($type === 'method') { 966: if($when === 'after' && $result['replace'] !== true) { 967: if($methodExists) { 968: $result['return'] = $object->_callMethod($realMethod, $arguments); 969: } else { 970: $result['return'] = null; 971: } 972: }
$method | '___execute'
|
---|---|
$arguments |
474: if(empty($arguments) && Fuel::isCommon($method)) { 475: // faster version of _callWireAPI for when conditions allow 476: if($this->_wire && !method_exists($this, "___$method")) { 477: // get a common API var with no arguments as method call more quickly 478: $val = $this->_wire->fuel($method); 479: if($val !== null) return $val; 480: } 481: } 482: $hooks = $this->_wireHooks(); 483: if($hooks) { 484: $result = $hooks->runHooks($this, $method, $arguments); 485: if(!$result['methodExists'] && !$result['numHooksRun']) { 486: $result = $this->_callWireAPI($method, $arguments); 487: if(!$result) return $this->callUnknown($method, $arguments); 488: }
$object | |
---|---|
$method | 'execute'
|
$arguments |
45: } 46: 47: $process = null; 48: $wire = null; 49: 50: try { 51: // Bootstrap ProcessWire's core and make the API available with $wire 52: $wire = new ProcessWire($config); 53: $process = $wire->modules->get('ProcessPageView'); /** @var ProcessPageView $process */ 54: $wire->wire('process', $process); 55: echo $process->execute($config->internal); 56: $config->internal ? $process->finished() : extract($wire->wire('all')->getArray()); 57: 58: } catch(\Exception $e) { 59: // Formulate error message and send to the error handler
$method | 'execute'
|
---|---|
$arguments |
PATH | '/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin'
|
---|---|
PP_CUSTOM_PHP_INI | '/var/www/vhosts/system/webstack.livedata.it/etc/php.ini'
|
PP_CUSTOM_PHP_CGI_INDEX | 'plesk-php82-fastcgi'
|
SCRIPT_NAME | '/torneoselis/index.php'
|
REQUEST_URI | '/torneoselis/processwire/page/edit/?id=1036'
|
QUERY_STRING | |
REQUEST_METHOD | 'POST'
|
SERVER_PROTOCOL | 'HTTP/1.0'
|
GATEWAY_INTERFACE | 'CGI/1.1'
|
REDIRECT_URL | '/torneoselis/processwire/page/edit/'
|
REDIRECT_QUERY_STRING | |
REMOTE_PORT | '18234'
|
SCRIPT_FILENAME | '/var/www/vhosts/h577341.linp052.arubabusiness.it/webstack.livedata.it/torneoselis/index.php'
|
SERVER_ADMIN | 'root@localhost'
|
CONTEXT_DOCUMENT_ROOT | '/var/www/vhosts/h577341.linp052.arubabusiness.it/webstack.livedata.it'
|
CONTEXT_PREFIX | ''
|
REQUEST_SCHEME | 'https'
|
DOCUMENT_ROOT | '/var/www/vhosts/h577341.linp052.arubabusiness.it/webstack.livedata.it'
|
REMOTE_ADDR | '93.39.132.12'
|
SERVER_PORT | '443'
|
SERVER_ADDR | '80.88.87.9'
|
SERVER_NAME | 'webstack.livedata.it'
|
SERVER_SOFTWARE | 'Apache'
|
SERVER_SIGNATURE | ''
|
HTTP_COOKIE | |
HTTP_PRIORITY | 'u=0, i'
|
HTTP_ACCEPT_LANGUAGE | 'it-IT,it;q=0.9,en-US;q=0.8,en;q=0.7,la;q=0.6,fr;q=0.5,de;q=0.4'
|
HTTP_ACCEPT_ENCODING | 'gzip, deflate, br, zstd'
|
HTTP_REFERER | 'https://webstack.livedata.it/torneoselis/processwire/page/edit/?id=1036'
|
HTTP_SEC_FETCH_DEST | 'document'
|
HTTP_SEC_FETCH_USER | '?1'
|
HTTP_SEC_FETCH_MODE | 'navigate'
|
HTTP_SEC_FETCH_SITE | 'same-origin'
|
HTTP_ACCEPT | 'text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7'
|
CONTENT_TYPE | 'multipart/form-data; boundary=----WebKitFormBoundaryyrBX453DM6yqtL9X'
|
HTTP_ORIGIN | 'https://webstack.livedata.it'
|
HTTP_USER_AGENT | 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36'
|
HTTP_UPGRADE_INSECURE_REQUESTS | '1'
|
HTTP_SEC_CH_UA_PLATFORM | '"Windows"'
|
HTTP_SEC_CH_UA_MOBILE | '?0'
|
HTTP_SEC_CH_UA | '"Not A(Brand";v="8", "Chromium";v="132", "Google Chrome";v="132"'
|
HTTP_CACHE_CONTROL | 'max-age=0'
|
CONTENT_LENGTH | '2166'
|
HTTP_CONNECTION | 'close'
|
HTTP_X_ACCEL_INTERNAL | '/internal-nginx-static-location'
|
HTTP_X_REAL_IP | '93.39.132.12'
|
HTTP_HOST | 'webstack.livedata.it'
|
HTTPS | 'on'
|
proto | 'https'
|
HTTP_MOD_REWRITE | 'On'
|
PERL5LIB | '/usr/share/awstats/lib:/usr/share/awstats/plugins'
|
UNIQUE_ID | 'Z7kCjFrSXWVJL2P3Lf4@@AAAAAQ'
|
REDIRECT_STATUS | '200'
|
REDIRECT_HTTPS | 'on'
|
REDIRECT_proto | 'https'
|
REDIRECT_HTTP_MOD_REWRITE | 'On'
|
REDIRECT_PERL5LIB | '/usr/share/awstats/lib:/usr/share/awstats/plugins'
|
REDIRECT_UNIQUE_ID | 'Z7kCjFrSXWVJL2P3Lf4@@AAAAAQ'
|
FCGI_ROLE | 'RESPONDER'
|
PHP_SELF | '/torneoselis/index.php'
|
REQUEST_TIME_FLOAT | 1740178060.41899
|
REQUEST_TIME | 1740178060
|
Session |
---|
PROCESSWIRE | 300
|
---|---|
PROCESSWIRE_CORE_PATH | '/var/www/vhosts/h577341.linp052.arubabusiness.it/webstack.livedata.it/torneoselis/wire/core/'
|
SORT_APPEND_NULLS | 32
|
BCMath support | enabled |
Directive | Local Value | Master Value |
---|---|---|
bcmath.scale | 0 | 0 |
BZip2 Support | Enabled |
Stream Wrapper support | compress.bzip2:// |
Stream Filter support | bzip2.decompress, bzip2.compress |
BZip2 Version | 1.0.6, 6-Sept-2010 |
Calendar support | enabled |
Directive | Local Value | Master Value |
---|---|---|
cgi.check_shebang_line | On | On |
cgi.discard_path | Off | Off |
cgi.fix_pathinfo | On | On |
cgi.force_redirect | On | On |
cgi.nph | Off | Off |
cgi.redirect_status_env | no value | no value |
cgi.rfc2616_headers | Off | Off |
fastcgi.logging | On | On |
PHP Version | 8.2.27 |
Directive | Local Value | Master Value |
---|---|---|
allow_url_fopen | On | On |
allow_url_include | Off | Off |
arg_separator.input | & | & |
arg_separator.output | & | & |
auto_append_file | no value | no value |
auto_globals_jit | On | On |
auto_prepend_file | no value | no value |
browscap | no value | no value |
default_charset | utf-8 | UTF-8 |
default_mimetype | text/html | text/html |
disable_classes | no value | no value |
disable_functions | popen,exec,passthru,pcntl_exec,proc_close,proc_get_status,proc_nice,proc_open,proc_terminate,show_source,shell_exec,symlink,system,posix_getpwuid,opcache_get_status | popen,exec,passthru,pcntl_exec,proc_close,proc_get_status,proc_nice,proc_open,proc_terminate,show_source,shell_exec,symlink,system,posix_getpwuid,opcache_get_status |
display_errors | Off | Off |
display_startup_errors | Off | Off |
doc_root | no value | no value |
docref_ext | no value | no value |
docref_root | no value | no value |
enable_dl | Off | Off |
enable_post_data_reading | On | On |
error_append_string | no value | no value |
error_log | no value | no value |
error_log_mode | 0644 | 0644 |
error_prepend_string | no value | no value |
error_reporting | 32767 | 22519 |
expose_php | Off | Off |
extension_dir | /opt/plesk/php/8.2/lib64/php/modules | /opt/plesk/php/8.2/lib64/php/modules |
fiber.stack_size | no value | no value |
file_uploads | On | On |
hard_timeout | 2 | 2 |
highlight.comment | #FF8000 | #FF8000 |
highlight.default | #0000BB | #0000BB |
highlight.html | #000000 | #000000 |
highlight.keyword | #007700 | #007700 |
highlight.string | #DD0000 | #DD0000 |
html_errors | Off | On |
ignore_repeated_errors | Off | Off |
ignore_repeated_source | Off | Off |
ignore_user_abort | Off | Off |
implicit_flush | Off | Off |
include_path | .:/opt/plesk/php/8.2/share/pear | .:/opt/plesk/php/8.2/share/pear |
input_encoding | no value | no value |
internal_encoding | no value | no value |
log_errors | Off | On |
mail.add_x_header | Off | Off |
mail.force_extra_parameters | -finfo@livedata.it | -finfo@livedata.it |
mail.log | no value | no value |
mail.mixed_lf_and_crlf | Off | Off |
max_execution_time | 299 | 299 |
max_file_uploads | 20 | 20 |
max_input_nesting_level | 64 | 64 |
max_input_time | 60 | 60 |
max_input_vars | 8000 | 8000 |
max_multipart_body_parts | -1 | -1 |
memory_limit | 512M | 512M |
open_basedir | /var/www/vhosts/h577341.linp052.arubabusiness.it/:/tmp/ | /var/www/vhosts/h577341.linp052.arubabusiness.it/:/tmp/ |
output_buffering | 4096 | 4096 |
output_encoding | no value | no value |
output_handler | no value | no value |
post_max_size | 128M | 128M |
precision | 14 | 14 |
realpath_cache_size | 4096K | 4096K |
realpath_cache_ttl | 120 | 120 |
register_argc_argv | Off | Off |
report_memleaks | On | On |
report_zend_debug | Off | Off |
request_order | GP | GP |
sendmail_from | no value | no value |
sendmail_path | /usr/sbin/sendmail -t -i | /usr/sbin/sendmail -t -i |
serialize_precision | -1 | -1 |
short_open_tag | Off | Off |
SMTP | localhost | localhost |
smtp_port | 25 | 25 |
sys_temp_dir | no value | no value |
syslog.facility | LOG_USER | LOG_USER |
syslog.filter | no-ctrl | no-ctrl |
syslog.ident | php | php |
unserialize_callback_func | no value | no value |
upload_max_filesize | 128M | 128M |
upload_tmp_dir | no value | no value |
user_dir | no value | no value |
user_ini.cache_ttl | 300 | 300 |
user_ini.filename | .user.ini | .user.ini |
variables_order | GPCS | GPCS |
xmlrpc_error_number | 0 | 0 |
xmlrpc_errors | Off | Off |
zend.assertions | -1 | -1 |
zend.detect_unicode | On | On |
zend.enable_gc | On | On |
zend.exception_ignore_args | Off | On |
zend.exception_string_param_max_len | 0 | 0 |
zend.multibyte | Off | Off |
zend.script_encoding | no value | no value |
zend.signal_check | Off | Off |
ctype functions | enabled |
cURL support | enabled |
cURL Information | 7.55.0 |
Age | 3 |
Features | |
AsynchDNS | Yes |
CharConv | No |
Debug | No |
GSS-Negotiate | No |
IDN | No |
IPv6 | Yes |
krb4 | No |
Largefile | Yes |
libz | Yes |
NTLM | Yes |
NTLMWB | Yes |
SPNEGO | Yes |
SSL | Yes |
SSPI | No |
TLS-SRP | No |
Protocols | dict, file, ftp, ftps, gopher, http, https, imap, imaps, ldap, ldaps, pop3, pop3s, rtsp, scp, sftp, smb, smbs, smtp, smtps, telnet, tftp |
Host | x86_64-redhat-linux-gnu |
SSL Version | NSS/3.28.4 |
ZLib Version | 1.2.7 |
libSSH Version | libssh2/1.8.0 |
Directive | Local Value | Master Value |
---|---|---|
curl.cainfo | no value | no value |
date/time support | enabled |
timelib version | 2022.12 |
"Olson" Timezone Database Version | 2024.1 |
Timezone Database | system |
Default timezone | Europe/Rome |
Directive | Local Value | Master Value |
---|---|---|
date.default_latitude | 31.7667 | 31.7667 |
date.default_longitude | 35.2333 | 35.2333 |
date.sunrise_zenith | 90.833333 | 90.833333 |
date.sunset_zenith | 90.833333 | 90.833333 |
date.timezone | Europe/Rome | Europe/Rome |
DBA support | enabled |
Supported handlers | cdb cdb_make db4 inifile flatfile |
Directive | Local Value | Master Value |
---|---|---|
dba.default_handler | flatfile | flatfile |
DOM/XML | enabled |
DOM/XML API Version | 20031129 |
libxml Version | 2.9.1 |
HTML Support | enabled |
XPath Support | enabled |
XPointer Support | enabled |
Schema Support | enabled |
RelaxNG Support | enabled |
enchant support | enabled |
Libenchant Version | 1.6.0 |
myspell | Myspell Provider | /usr/lib64/enchant/libenchant_myspell.so |
EXIF Support | enabled |
Supported EXIF Version | 0220 |
Supported filetypes | JPEG, TIFF |
Multibyte decoding support using mbstring | enabled |
Extended EXIF tag formats | Canon, Casio, Fujifilm, Nikon, Olympus, Samsung, Panasonic, DJI, Sony, Pentax, Minolta, Sigma, Foveon, Kyocera, Ricoh, AGFA, Epson |
Directive | Local Value | Master Value |
---|---|---|
exif.decode_jis_intel | JIS | JIS |
exif.decode_jis_motorola | JIS | JIS |
exif.decode_unicode_intel | UCS-2LE | UCS-2LE |
exif.decode_unicode_motorola | UCS-2BE | UCS-2BE |
exif.encode_jis | no value | no value |
exif.encode_unicode | ISO-8859-15 | ISO-8859-15 |
fileinfo support | enabled |
libmagic | 540 |
Input Validation and Filtering | enabled |
Directive | Local Value | Master Value |
---|---|---|
filter.default | unsafe_raw | unsafe_raw |
filter.default_flags | no value | no value |
FTP support | enabled |
FTPS support | enabled |
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 |
BMP Support | enabled |
TGA Read Support | enabled |
Directive | Local Value | Master Value |
---|---|---|
gd.jpeg_ignore_warning | On | On |
GetText Support | enabled |
gmp support | enabled |
GMP version | 6.0.0 |
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 |
iconv support | enabled |
iconv implementation | glibc |
iconv library version | 2.17 |
Directive | Local Value | Master Value |
---|---|---|
iconv.input_encoding | no value | no value |
iconv.internal_encoding | no value | no value |
iconv.output_encoding | no value | no value |
imagick module | enabled |
---|---|
imagick module version | 3.7.0 |
imagick classes | Imagick, ImagickDraw, ImagickPixel, ImagickPixelIterator, ImagickKernel |
Imagick compiled with ImageMagick version | ImageMagick 6.9.10-68 Q16 x86_64 2021-10-14 https://imagemagick.org |
Imagick using ImageMagick library version | ImageMagick 6.9.10-68 Q16 x86_64 2023-10-25 https://imagemagick.org |
ImageMagick copyright | © 1999-2019 ImageMagick Studio LLC |
ImageMagick release date | 2023-10-25 |
ImageMagick number of supported formats: | 236 |
ImageMagick supported formats | 3FR, 3G2, 3GP, AAI, AI, ART, ARW, AVI, AVS, BGR, BGRA, BGRO, BMP, BMP2, BMP3, BRF, CAL, CALS, CANVAS, CAPTION, CIN, CIP, CLIP, CMYK, CMYKA, CR2, CRW, CUR, CUT, DATA, DCM, DCR, DCX, DDS, DFONT, DNG, DOT, DPX, DXT1, DXT5, EPDF, EPI, EPS, EPS2, EPS3, EPSF, EPSI, EPT, EPT2, EPT3, ERF, EXR, FAX, FILE, FITS, FRACTAL, FTP, FTS, G3, G4, GIF, GIF87, GRADIENT, GRAY, GRAYA, GROUP4, GV, H, HALD, HDR, HISTOGRAM, HRZ, HTM, HTML, HTTP, HTTPS, ICB, ICO, ICON, IIQ, INFO, INLINE, IPL, ISOBRL, ISOBRL6, J2C, J2K, 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, MPEG, 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, 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, VIFF, VIPS, VST, WBMP, WMF, WMV, WMZ, WPG, X, X3F, XBM, XC, XCF, XPM, XPS, XV, XWD, YCbCr, YCbCrA, YUV |
Directive | Local Value | Master Value |
---|---|---|
imagick.allow_zero_dimension_images | 0 | 0 |
imagick.locale_fix | 0 | 0 |
imagick.progress_monitor | 0 | 0 |
imagick.set_single_thread | 1 | 1 |
imagick.shutdown_sleep_count | 10 | 10 |
imagick.skip_version_check | 0 | 0 |
IMAP c-Client Version | 2007f |
SSL Support | enabled |
Kerberos Support | enabled |
Directive | Local Value | Master Value |
---|---|---|
imap.enable_insecure_rsh | Off | Off |
Internationalization support | enabled |
---|---|
ICU version | 50.2 |
ICU Data version | 50.2 |
ICU TZData version | 2018e |
ICU Unicode version | 6.2 |
Directive | Local Value | Master Value |
---|---|---|
intl.default_locale | no value | no value |
intl.error_level | 0 | 0 |
intl.use_exceptions | Off | Off |
|
Loader version | 13.0.2 |
Directive | Local Value | Master Value |
---|---|---|
ioncube.loader.encoded_paths | no value | no value |
json support | enabled |
LDAP Support | enabled |
Total Links | 0/unlimited |
API Version | 3001 |
Vendor Name | OpenLDAP |
Vendor Version | 20444 |
SASL Support | Enabled |
Directive | Local Value | Master Value |
---|---|---|
ldap.max_links | Unlimited | Unlimited |
libXML support | active |
libXML Compiled Version | 2.9.1 |
libXML Loaded Version | 20901 |
libXML streams | enabled |
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.8.2 |
Directive | Local Value | Master Value |
---|---|---|
mbstring.detect_order | no value | no value |
mbstring.encoding_translation | Off | Off |
mbstring.http_input | no value | no value |
mbstring.http_output | no value | no value |
mbstring.http_output_conv_mimetypes | ^(text/|application/xhtml\+xml) | ^(text/|application/xhtml\+xml) |
mbstring.internal_encoding | no value | no value |
mbstring.language | neutral | neutral |
mbstring.regex_retry_limit | 1000000 | 1000000 |
mbstring.regex_stack_limit | 100000 | 100000 |
mbstring.strict_detection | Off | Off |
mbstring.substitute_character | no value | no value |
MysqlI Support | enabled |
---|---|
Client API library version | mysqlnd 8.2.27 |
Active Persistent Links | 0 |
Inactive Persistent Links | 0 |
Active Links | 0 |
Directive | Local Value | Master Value |
---|---|---|
mysqli.allow_local_infile | Off | Off |
mysqli.allow_persistent | Off | Off |
mysqli.default_host | no value | no value |
mysqli.default_port | 3306 | 3306 |
mysqli.default_pw | no value | no value |
mysqli.default_socket | /var/lib/mysql/mysql.sock | /var/lib/mysql/mysql.sock |
mysqli.default_user | no value | no value |
mysqli.local_infile_directory | no value | no value |
mysqli.max_links | Unlimited | Unlimited |
mysqli.max_persistent | Unlimited | Unlimited |
mysqli.rollback_on_cached_plink | Off | Off |
mysqlnd | enabled |
---|---|
Version | mysqlnd 8.2.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 |
ODBC Support | enabled |
---|---|
Active Persistent Links | 0 |
Active Links | 0 |
ODBC library | unixODBC |
ODBCVER | 0x0380 |
ODBC_CFLAGS | -I/usr/include |
ODBC_LFLAGS | -L/usr/lib64 |
ODBC_LIBS | -lodbc |
Directive | Local Value | Master Value |
---|---|---|
odbc.allow_persistent | Off | Off |
odbc.check_persistent | On | On |
odbc.default_cursortype | Static cursor | Static cursor |
odbc.default_db | no value | no value |
odbc.default_pw | no value | no value |
odbc.default_user | no value | no value |
odbc.defaultbinmode | return as is | return as is |
odbc.defaultlrl | return up to 4096 bytes | return up to 4096 bytes |
odbc.max_links | Unlimited | Unlimited |
odbc.max_persistent | Unlimited | Unlimited |
OpenSSL support | enabled |
OpenSSL Library Version | OpenSSL 1.0.2k-fips 26 Jan 2017 |
OpenSSL Header Version | OpenSSL 1.0.2k 26 Jan 2017 |
Openssl default config | /etc/pki/tls/openssl.cnf |
Directive | Local Value | Master Value |
---|---|---|
openssl.cafile | no value | no value |
openssl.capath | no value | no value |
pcntl support | enabled |
---|
PCRE (Perl Compatible Regular Expressions) Support | enabled |
PCRE Library Version | 10.40 2022-04-14 |
PCRE Unicode Version | 14.0.0 |
PCRE JIT Support | enabled |
PCRE JIT Target | x86 64bit (little endian + unaligned) |
Directive | Local Value | Master Value |
---|---|---|
pcre.backtrack_limit | 1000000 | 1000000 |
pcre.jit | On | On |
pcre.recursion_limit | 100000 | 100000 |
PDO support | enabled |
---|---|
PDO drivers | mysql, odbc, pgsql, sqlite |
PDO Driver for MySQL | enabled |
---|---|
Client API version | mysqlnd 8.2.27 |
Directive | Local Value | Master Value |
---|---|---|
pdo_mysql.default_socket | /var/lib/mysql/mysql.sock | /var/lib/mysql/mysql.sock |
PDO Driver for ODBC (unixODBC) | enabled |
---|---|
ODBC Connection Pooling | Enabled, strict matching |
PDO Driver for PostgreSQL | enabled |
PostgreSQL(libpq) Version | 9.2.24 |
PDO Driver for SQLite 3.x | enabled |
---|---|
SQLite Library | 3.7.17 |
PostgreSQL Support | enabled |
---|---|
PostgreSQL (libpq) Version | 9.2.24 |
Multibyte character support | enabled |
Active Persistent Links | 0 |
Active Links | 0 |
Directive | Local Value | Master Value |
---|---|---|
pgsql.allow_persistent | Off | Off |
pgsql.auto_reset_persistent | Off | Off |
pgsql.ignore_notice | Off | Off |
pgsql.log_notice | Off | Off |
pgsql.max_links | Unlimited | Unlimited |
pgsql.max_persistent | Unlimited | Unlimited |
Phar: PHP Archive support | enabled |
---|---|
Phar API version | 1.1.1 |
Phar-based phar archives | enabled |
Tar-based phar archives | enabled |
ZIP-based phar archives | enabled |
gzip compression | enabled |
bzip2 compression | enabled |
Native OpenSSL support | enabled |
Phar based on pear/PHP_Archive, original concept by Davey Shafik. Phar fully realized by Gregory Beaver and Marcus Boerger. Portions of tar implementation Copyright (c) 2003-2009 Tim Kientzle. |
Directive | Local Value | Master Value |
---|---|---|
phar.cache_list | no value | no value |
phar.readonly | On | On |
phar.require_hash | On | On |
POSIX support | enabled |
PSpell Support | enabled |
Version | 8.2.27 |
Readline Support | enabled |
---|---|
Readline library | EditLine wrapper |
Directive | Local Value | Master Value |
---|---|---|
cli.pager | no value | no value |
cli.prompt | \b \> | \b \> |
Redis Support | enabled |
---|---|
Redis Version | 6.1.0 |
Redis Sentinel Version | 1.0 |
Available serializers | php, json |
Directive | Local Value | Master Value |
---|---|---|
redis.arrays.algorithm | no value | no value |
redis.arrays.auth | no value | no value |
redis.arrays.autorehash | 0 | 0 |
redis.arrays.connecttimeout | 0 | 0 |
redis.arrays.consistent | 0 | 0 |
redis.arrays.distributor | no value | no value |
redis.arrays.functions | no value | no value |
redis.arrays.hosts | no value | no value |
redis.arrays.index | 0 | 0 |
redis.arrays.lazyconnect | 0 | 0 |
redis.arrays.names | no value | no value |
redis.arrays.pconnect | 0 | 0 |
redis.arrays.previous | no value | no value |
redis.arrays.readtimeout | 0 | 0 |
redis.arrays.retryinterval | 0 | 0 |
redis.clusters.auth | no value | no value |
redis.clusters.cache_slots | 0 | 0 |
redis.clusters.persistent | 0 | 0 |
redis.clusters.read_timeout | 0 | 0 |
redis.clusters.seeds | no value | no value |
redis.clusters.timeout | 0 | 0 |
redis.pconnect.connection_limit | 0 | 0 |
redis.pconnect.echo_check_liveness | 1 | 1 |
redis.pconnect.pool_detect_dirty | 0 | 0 |
redis.pconnect.pool_pattern | no value | no value |
redis.pconnect.pool_poll_timeout | 0 | 0 |
redis.pconnect.pooling_enabled | 1 | 1 |
redis.session.compression | none | none |
redis.session.compression_level | 3 | 3 |
redis.session.early_refresh | 0 | 0 |
redis.session.lock_expire | 0 | 0 |
redis.session.lock_retries | 100 | 100 |
redis.session.lock_wait_time | 20000 | 20000 |
redis.session.locking_enabled | 0 | 0 |
Reflection | enabled |
Session Support | enabled |
Registered save handlers | files user redis rediscluster |
Registered serializer handlers | php_serialize php php_binary |
Directive | Local Value | Master Value |
---|---|---|
session.auto_start | Off | Off |
session.cache_expire | 180 | 180 |
session.cache_limiter | nocache | nocache |
session.cookie_domain | no value | no value |
session.cookie_httponly | On | Off |
session.cookie_lifetime | 0 | 0 |
session.cookie_path | / | / |
session.cookie_samesite | Lax | no value |
session.cookie_secure | On | Off |
session.gc_divisor | 1000 | 1000 |
session.gc_maxlifetime | 86400 | 1440 |
session.gc_probability | 0 | 0 |
session.lazy_write | On | On |
session.name | wires | PHPSESSID |
session.referer_check | no value | no value |
session.save_handler | files | files |
session.save_path | /tmp | /tmp |
session.serialize_handler | php | php |
session.sid_bits_per_character | 5 | 5 |
session.sid_length | 26 | 26 |
session.upload_progress.cleanup | On | On |
session.upload_progress.enabled | On | On |
session.upload_progress.freq | 1% | 1% |
session.upload_progress.min_freq | 1 | 1 |
session.upload_progress.name | PHP_SESSION_UPLOAD_PROGRESS | PHP_SESSION_UPLOAD_PROGRESS |
session.upload_progress.prefix | upload_progress_ | upload_progress_ |
session.use_cookies | On | On |
session.use_only_cookies | On | On |
session.use_strict_mode | Off | Off |
session.use_trans_sid | Off | Off |
SimpleXML support | enabled |
Schema support | enabled |
Soap Client | enabled |
Soap Server | enabled |
Directive | Local Value | Master Value |
---|---|---|
soap.wsdl_cache | 1 | 1 |
soap.wsdl_cache_dir | /tmp | /tmp |
soap.wsdl_cache_enabled | On | On |
soap.wsdl_cache_limit | 5 | 5 |
soap.wsdl_cache_ttl | 86400 | 86400 |
Sockets Support | enabled |
sodium support | enabled |
---|---|
libsodium headers version | 1.0.18 |
libsodium library version | 1.0.18 |
SPL support | enabled |
---|---|
Interfaces | OuterIterator, RecursiveIterator, SeekableIterator, SplObserver, SplSubject |
Classes | AppendIterator, ArrayIterator, ArrayObject, BadFunctionCallException, BadMethodCallException, CachingIterator, CallbackFilterIterator, DirectoryIterator, DomainException, EmptyIterator, FilesystemIterator, FilterIterator, GlobIterator, InfiniteIterator, InvalidArgumentException, IteratorIterator, LengthException, LimitIterator, LogicException, MultipleIterator, NoRewindIterator, OutOfBoundsException, OutOfRangeException, OverflowException, ParentIterator, RangeException, RecursiveArrayIterator, RecursiveCachingIterator, RecursiveCallbackFilterIterator, RecursiveDirectoryIterator, RecursiveFilterIterator, RecursiveIteratorIterator, RecursiveRegexIterator, RecursiveTreeIterator, RegexIterator, RuntimeException, SplDoublyLinkedList, SplFileInfo, SplFileObject, SplFixedArray, SplHeap, SplMinHeap, SplMaxHeap, SplObjectStorage, SplPriorityQueue, SplQueue, SplStack, SplTempFileObject, UnderflowException, UnexpectedValueException |
SQLite3 support | enabled |
---|---|
SQLite Library | 3.7.17 |
Directive | Local Value | Master Value |
---|---|---|
sqlite3.extension_dir | no value | no value |
Dynamic Library Support | enabled |
Path to sendmail | /usr/sbin/sendmail -t -i |
Directive | Local Value | Master Value |
---|---|---|
assert.active | On | On |
assert.bail | Off | Off |
assert.callback | no value | no value |
assert.exception | On | On |
assert.warning | On | On |
auto_detect_line_endings | Off | Off |
default_socket_timeout | 60 | 60 |
from | no value | no value |
session.trans_sid_hosts | no value | no value |
session.trans_sid_tags | a=href,area=href,frame=src,form= | a=href,area=href,frame=src,form= |
unserialize_max_depth | 4096 | 4096 |
url_rewriter.hosts | no value | no value |
url_rewriter.tags | form= | form= |
user_agent | no value | no value |
sysvmsg support | enabled |
sysvsem support | enabled |
sysvshm support | enabled |
Tidy support | enabled |
libTidy Version | 5.4.0 |
libTidy Release | 2017/03/01 |
Directive | Local Value | Master Value |
---|---|---|
tidy.clean_output | Off | Off |
tidy.default_config | no value | no value |
Tokenizer Support | enabled |
XML Support | active |
XML Namespace Support | active |
libxml2 Version | 2.9.1 |
XMLReader | enabled |
XMLWriter | enabled |
XSL | enabled |
libxslt Version | 1.1.28 |
libxslt compiled against libxml Version | 2.9.1 |
EXSLT | enabled |
libexslt Version | 1.1.28 |
Opcode Caching | Up and Running |
Optimization | Enabled |
SHM Cache | Enabled |
File Cache | Disabled |
JIT | Disabled |
Startup | OK |
Shared memory model | mmap |
Cache hits | 4042 |
Cache misses | 226 |
Used memory | 24072248 |
Free memory | 110145480 |
Wasted memory | 0 |
Interned Strings Used memory | 3685648 |
Interned Strings Free memory | 4702960 |
Cached scripts | 226 |
Cached keys | 226 |
Max keys | 16229 |
OOM restarts | 0 |
Hash keys restarts | 0 |
Manual restarts | 0 |
Directive | Local Value | Master Value |
---|---|---|
opcache.blacklist_filename | no value | no value |
opcache.consistency_checks | 0 | 0 |
opcache.dups_fix | Off | Off |
opcache.enable | On | On |
opcache.enable_cli | Off | Off |
opcache.enable_file_override | Off | Off |
opcache.error_log | no value | no value |
opcache.file_cache | no value | no value |
opcache.file_cache_consistency_checks | On | On |
opcache.file_cache_only | Off | Off |
opcache.file_update_protection | 2 | 2 |
opcache.force_restart_timeout | 180 | 180 |
opcache.huge_code_pages | Off | Off |
opcache.interned_strings_buffer | 8 | 8 |
opcache.jit | tracing | tracing |
opcache.jit_bisect_limit | 0 | 0 |
opcache.jit_blacklist_root_trace | 16 | 16 |
opcache.jit_blacklist_side_trace | 8 | 8 |
opcache.jit_buffer_size | 0 | 0 |
opcache.jit_debug | 0 | 0 |
opcache.jit_hot_func | 127 | 127 |
opcache.jit_hot_loop | 64 | 64 |
opcache.jit_hot_return | 8 | 8 |
opcache.jit_hot_side_exit | 8 | 8 |
opcache.jit_max_exit_counters | 8192 | 8192 |
opcache.jit_max_loop_unrolls | 8 | 8 |
opcache.jit_max_polymorphic_calls | 2 | 2 |
opcache.jit_max_recursive_calls | 2 | 2 |
opcache.jit_max_recursive_returns | 2 | 2 |
opcache.jit_max_root_traces | 1024 | 1024 |
opcache.jit_max_side_traces | 128 | 128 |
opcache.jit_prof_threshold | 0.005 | 0.005 |
opcache.lockfile_path | /tmp | /tmp |
opcache.log_verbosity_level | 1 | 1 |
opcache.max_accelerated_files | 10000 | 10000 |
opcache.max_file_size | 0 | 0 |
opcache.max_wasted_percentage | 5 | 5 |
opcache.memory_consumption | 128 | 128 |
opcache.opt_debug_level | 0 | 0 |
opcache.optimization_level | 0x7FFEBFFF | 0x7FFEBFFF |
opcache.preferred_memory_model | no value | no value |
opcache.preload | no value | no value |
opcache.preload_user | no value | no value |
opcache.protect_memory | Off | Off |
opcache.record_warnings | Off | Off |
opcache.restrict_api | no value | no value |
opcache.revalidate_freq | 2 | 2 |
opcache.revalidate_path | On | On |
opcache.save_comments | On | On |
opcache.use_cwd | On | On |
opcache.validate_permission | On | On |
opcache.validate_root | Off | Off |
opcache.validate_timestamps | On | On |
Zip | enabled |
Zip version | 1.21.1 |
Libzip version | 1.3.2 |
ZLib Support | enabled |
---|---|
Stream Wrapper | compress.zlib:// |
Stream Filter | zlib.inflate, zlib.deflate |
Compiled Version | 1.2.7 |
Linked Version | 1.2.7 |
Directive | Local Value | Master Value |
---|---|---|
zlib.output_compression | Off | Off |
zlib.output_compression_level | -1 | -1 |
zlib.output_handler | no value | no value |
Module Name |
---|
array (2)0 => array (7)| 'name' => 'default output handler' | 'type' => 0 | 'flags' => 112 | 'level' => 0 | 'chunk_size' => 4096 | 'buffer_size' => 8192 | 'buffer_used' => 01 => array (7)| 'name' => 'default output handler' | 'type' => 0 | 'flags' => 112 | 'level' => 1 | 'chunk_size' => 0 | 'buffer_size' => 16384 | 'buffer_used' => 0
Cookie | |
---|---|
Priority | 'u=0, i'
|
Accept-Language | 'it-IT,it;q=0.9,en-US;q=0.8,en;q=0.7,la;q=0.6,fr;q=0.5,de;q=0.4'
|
Accept-Encoding | 'gzip, deflate, br, zstd'
|
Referer | 'https://webstack.livedata.it/torneoselis/processwire/page/edit/?id=1036'
|
Sec-Fetch-Dest | 'document'
|
Sec-Fetch-User | '?1'
|
Sec-Fetch-Mode | 'navigate'
|
Sec-Fetch-Site | 'same-origin'
|
Accept | 'text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7'
|
Content-Type | 'multipart/form-data; boundary=----WebKitFormBoundaryyrBX453DM6yqtL9X'
|
Origin | 'https://webstack.livedata.it'
|
User-Agent | 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36'
|
Upgrade-Insecure-Requests | '1'
|
Sec-Ch-Ua-Platform | '"Windows"'
|
Sec-Ch-Ua-Mobile | '?0'
|
Sec-Ch-Ua | '"Not A(Brand";v="8", "Chromium";v="132", "Google Chrome";v="132"'
|
Cache-Control | 'max-age=0'
|
Content-Length | '2166'
|
Connection | 'close'
|
X-Accel-Internal | '/internal-nginx-static-location'
|
X-Real-Ip | '93.39.132.12'
|
Host | 'webstack.livedata.it'
|
Mod-Rewrite | 'On'
|
id | '1036'
|
---|
title | 'Milan - Atalanta'
|
---|---|
title__1019 | ''
|
squadra_1 | '1026'
|
squadra_2 | '1023'
|
data_partita | '2025-05-30'
|
data_partita__time | '09:00'
|
girone | '1028'
|
stadio | 'Tempio Pausania'
|
stadio__1019 | ''
|
gol_squadra_1 | '2'
|
gol_squadra_2 | '5'
|
risultato | ''
|
_pw_page_name | 'milan-atalanta'
|
_pw_page_name1019 | 'milan-atalanta'
|
status1019 | '1'
|
submit_save | 'Salva'
|
id | '1036'
|
TOKEN1616680595X1740177620 | 'JgiGsiSklYFMc34Pc5VBYGDJpdPIqmF5'
|
_InputfieldForm | 'ProcessPageEdit'
|
_after_submit_action | ''
|
WireTabs | 'ProcessPageEdit1036-_ProcessPageEditContent'
|
---|---|
pagelist_open | 'JSON["1-0","1021-0","1028-0","1030-0"]'
|
wires | 'dksma9g41lued9h5vju646p9u7'
|
wires_challenge | 'WYnP4AafT6Tx.VRs0LyGMqkcuIiYhIqF'
|
Expires | 'Thu, 19 Nov 1981 08:52:00 GMT'
|
---|---|
Cache-Control | 'no-store, no-cache, must-revalidate'
|
Pragma | 'no-cache'
|
X-Powered-By | 'ProcessWire CMS'
|
X-Frame-Options | 'SAMEORIGIN'
|
Headers were not sent at the time the exception was thrown