- Proběhlé
- Konference
- 25. 4. 2019 od 9:00 do 26. 4. 13:00
- Hotel Atom, Třebíč (mapa)
- prezenční školení
- počet účastníků 113
Radiologické metody v hydrosféře 19
Zveme Vás na konferenci
V případě zájmu o přihlášení na akci nás kontaktujte telefonicky na číslo +420 .
Plné na celou akci 4400 Kč s DPH
Vážené kolegyně, vážení kolegové,
zveme Vás na další ročník konference Radiologické metody v hydrosféře.
25. dubna 2019 |
|
09:00 – 09:30 |
Registrace |
09:30 |
Zahájení konference |
09:30 – 09:50 |
Ing. Eduard Hanslík, CSc. |
09:55 – 10:15 |
Ing. Eva Šindelková, SÚJB |
10:20 – 10:40 |
Přestávka na kávu |
10:40 – 11:00 |
RNDr. Hana Bílková, SÚJB |
11:05 – 11:25 |
Ing. Hana Procházková, SÚJB |
11:30 – 11:50 |
Mgr. Michal Fejgl, Ph.D., SÚRO, v.v.i. |
11:55 – 13:00 |
Oběd |
13:00 – 13:20 |
Ing. Růžena Šináglová, SÚJB |
13:25 – 13:45 |
Ing. Tomáš Bouda, CSc., ALS Czech Republic, s.r.o. |
13:50 – 14:10 |
RNDr. Diana Marešová, Ph.D., VÚV TGM, v.v.i. |
14:15 – 14:35 |
Ing. Eva Juranová, VÚV TGM, v.v.i. |
14:40 – 15:00 |
RNDr. Pavel Stierand, ČHMÚ |
15:45 |
Odjezd na exkurzi |
16:00 – 18:00 |
Exkurze v Ekotechnickém centru Alternátor |
18:15 |
Návrat z exkurze |
19:00 – 0:00 |
Společenský večer s hudbou a rautem |
26. dubna 2019 |
|
09:00 – 09:20 |
Ing. Lenka Fremrová, SWECO HYDROPROJEKT, a.s. |
09:25 – 09:45 |
Ing. Barbora Sedlářová, VÚV TGM, v.v.i. |
09:50 – 10:10 |
RNDr. Tomáš Soukup, Český metrologický institut |
10:15 – 10:35 |
Přestávka na kávu |
10:35 – 10:55 |
prof. RNDr. Ľubomír Mátel, CSc., Univerzita Komenského v Bratislave |
11:00 – 11:20 |
Ing. Tomáš Bouda, CSc., ALS Czech Republic, s.r.o. |
11:25 – 11:45 |
RNDr. Dušan Galanda, PhD., Univerzita Komenského v Bratislave |
11:50 – 12:10 |
Ing. Barbora Sedlářová, VÚV TGM, v.v.i. |
12:15 – 12:35 |
Ing. Ivo Světlík, Ph.D. Ústav jaderné fyziky AV ČR, v.v.i. |
12:40 – 12:45 |
Závěrečná diskuse |
12:45 – 13:45 |
Oběd |
13:45 |
Ukončení konference |
Změna programu vyhrazena |
Fotogalerie z proběhlého školení
Přiložené soubory
Zabezpečené soubory
Chcete zobrazit zabepečené soubory? Zadejte heslo, které jste obrželi.
Předběžná přihláška
Radiologické metody v hydrosféře 19
Warning
Invalid argument supplied for foreach() search► skip error►
Source file
138: ->setRequired(TRUE); 139: 140: 141: $participation_options = $this->databaseResolver->getService() 142: ->table('ls_seminars') 143: ->where(['id' => $this->entity->id, 'type' => 'konference']) 144: ->fetch(); 145: 146: $_participation_options = []; 147: 148: foreach (unserialize($participation_options->participation_options) as $key => $value){ 149: $_participation_options[$value] = $value; 150: } 151: 152: $form->addSelect('zucastnim_se', '', $_participation_options)
Call stack
.../src/ComponentModel/Container.php:173 source App\Modules\CustomModule\FrontModule\Components\ConferencePreRegistrationFormComponent->createComponentForm(arguments)
163: /** 164: * Component factory. Delegates the creation of components to a createComponent<Name> method. 165: * @param string $name 166: * @return IComponent|null 167: */ 168: protected function createComponent($name) 169: { 170: $ucname = ucfirst($name); 171: $method = 'createComponent' . $ucname; 172: if ($ucname !== $name && method_exists($this, $method) && (new \ReflectionMethod($this, $method))->getName() === $method) { 173: $component = $this->$method($name); 174: if (!$component instanceof IComponent && !isset($this->components[$name])) { 175: $class = get_class($this); 176: throw new Nette\UnexpectedValueException("Method $class::$method() did not return or create the desired component."); 177: }
$name "form" (4)
.../src/ComponentModel/Container.php:130 source Nette\ComponentModel\Container->createComponent(arguments)
120: list($name) = $parts = explode(self::NAME_SEPARATOR, (string) $name, 2); 121: 122: if (!isset($this->components[$name])) { 123: if (!preg_match('#^[a-zA-Z0-9_]+\z#', $name)) { 124: if ($throw) { 125: throw new Nette\InvalidArgumentException("Component name must be non-empty alphanumeric string, '$name' given."); 126: } 127: return; 128: } 129: 130: $component = $this->createComponent($name); 131: if ($component) { 132: if (!$component instanceof IComponent) { 133: throw new Nette\UnexpectedValueException('Method createComponent() did not return Nette\ComponentModel\IComponent.'); 134:
$name "form" (4)
.../src/Application/UI/Component.php:385 source Nette\ComponentModel\Container->getComponent(arguments)
375: 376: 377: /** 378: * Returns component specified by name. Throws exception if component doesn't exist. 379: * @param string component name 380: * @return Nette\ComponentModel\IComponent 381: * @throws Nette\InvalidArgumentException 382: */ 383: public function offsetGet($name) 384: { 385: return $this->getComponent($name, true); 386: } 387: 388: 389: /**
$name "form" (4)
$throw true
.../latte/default.latte--3dfee2af33.php:13 source Nette\Application\UI\Component->offsetGet(arguments)
3: 4: use Latte\Runtime as LR; 5: 6: class Template3dfee2af33 extends Latte\Runtime\Template 7: { 8: 9: function main() 10: { 11: extract($this->params); 12: /* line 1 */ 13: echo Nette\Bridges\FormsLatte\Runtime::renderFormBegin($form = $_form = $this->global->formsStack[] = $this->global->uiControl["form"], []); 14: ?> 15: 16: <?php 17: if ($form->hasErrors() && $flashes) {
$name "form" (4)
.../latte/src/Latte/Runtime/Template.php:179 source Template3dfee2af33->main()
169: // old accumulators for back compatibility 170: $this->params['_l'] = new \stdClass; 171: $this->params['_g'] = $this->global; 172: $this->params['_b'] = (object) ['blocks' => &$this->blockQueue, 'types' => &$this->blockTypes]; 173: if (isset($this->global->snippetDriver) && $this->global->snippetBridge->isSnippetMode()) { 174: if ($this->global->snippetDriver->renderSnippets($this->blockQueue, $this->params)) { 175: return; 176: } 177: } 178: 179: $this->main(); 180: } 181: 182: 183: /**
.../vendor/latte/latte/src/Latte/Engine.php:75 source Latte\Runtime\Template->render()
65: $this->filters = new Runtime\FilterExecutor; 66: } 67: 68: 69: /** 70: * Renders template to output. 71: */ 72: public function render(string $name, array $params = [], string $block = null): void 73: { 74: $this->createTemplate($name, $params + ['_renderblock' => $block]) 75: ->render(); 76: } 77: 78: 79: /**
.../Bridges/ApplicationLatte/Template.php:52 source Latte\Engine->render(arguments)
42: return $this->latte; 43: } 44: 45: 46: /** 47: * Renders template to output. 48: * @return void 49: */ 50: public function render($file = null, array $params = []) 51: { 52: $this->latte->render($file ?: $this->file, $params + $this->params); 53: } 54: 55: 56: /**
$name "/www/doc/seminare.ekomonitor.cz/www/app/modules/CustomModule/FrontModule/components/templates/ConferencePreRegistrationForm/cs/default.latte" (140)
$params .../UI/Control/BaseControl.php:109 source Nette\Bridges\ApplicationLatte\Template->render()
99: * @return mixed 100: * @throws Nette\MemberAccessException 101: */ 102: public function __call($name, $args) 103: { 104: try { 105: return parent::__call($name, $args); 106: 107: } catch(Nette\MemberAccessException $e) { 108: if($name === 'render') { 109: return $this->getTemplateFile()->render(); 110: } 111: 112: throw $e; 113: }
.../latte/default.latte--ebd0e92ae1.php:614 source LiveSystem\V5\UI\Control\BaseControl->__call(arguments)
604: <p class="text color__brand--3"> 605: <?php echo LR\Filters::escapeHtmlText($item->title) /* line 354 */ ?> 606: 607: </p> 608: <hr class="line--1"> 609: 610: <div class="form form--2"> 611: <?php 612: /* line 360 */ $_tmp = $this->global->uiControl->getComponent("conferencePreRegistrationFormComponent"); 613: if ($_tmp instanceof Nette\Application\UI\IRenderable) $_tmp->redrawControl(null, false); 614: $_tmp->render(); 615: ?> 616: </div> 617: 618: </div>
$name "render" (6)
$args array ()
.../latte/src/Latte/Runtime/Template.php:258 source Templateebd0e92ae1->blockContent(arguments)
248: } 249: 250: $block = reset($this->blockQueue[$name]); 251: if ($mod && $mod !== ($blockType = $this->blockTypes[$name])) { 252: if ($filter = (is_string($mod) ? Filters::getConvertor($blockType, $mod) : $mod)) { 253: echo $filter($this->capture(function () use ($block, $params): void { $block($params); }), $blockType); 254: return; 255: } 256: trigger_error("Including block $name with content type " . strtoupper($blockType) . ' into incompatible type ' . strtoupper($mod) . '.', E_USER_WARNING); 257: } 258: $block($params); 259: } 260: 261: 262: /**
$_args .../cache/latte/layout.latte--a6d2e1a3c2.php:193 source Latte\Runtime\Template->renderBlock(arguments)
183: </button> 184: </div> 185: </nav> 186: </div> 187: </div> 188: </div> 189: </header> 190: 191: <main> 192: <?php 193: $this->renderBlock('content', $this->params, 'html'); 194: ?> 195: </main> 196: </div> 197:
$name "content" (7)
$params $mod "html" (4)
.../latte/src/Latte/Runtime/Template.php:258 source Templatea6d2e1a3c2->blockLayoutContent(arguments)
248: } 249: 250: $block = reset($this->blockQueue[$name]); 251: if ($mod && $mod !== ($blockType = $this->blockTypes[$name])) { 252: if ($filter = (is_string($mod) ? Filters::getConvertor($blockType, $mod) : $mod)) { 253: echo $filter($this->capture(function () use ($block, $params): void { $block($params); }), $blockType); 254: return; 255: } 256: trigger_error("Including block $name with content type " . strtoupper($blockType) . ' into incompatible type ' . strtoupper($mod) . '.', E_USER_WARNING); 257: } 258: $block($params); 259: } 260: 261: 262: /**
$_args /www/doc/seminare.ekomonitor.cz/www/temp/cache/latte/templates-@layout-layout.latte--09d7fb1e62.php:124 source Latte\Runtime\Template->renderBlock(arguments)
114: $iterations++; 115: } 116: ?> 117: 118: <?php 119: $this->renderBlock('layoutScriptBody', get_defined_vars()); 120: ?> 121: 122: <div class="site__wrapper"> 123: <?php 124: $this->renderBlock('layoutContent', get_defined_vars()); 125: ?> 126: </div> 127: 128: <!-- Live System Main JavaScript -->
$name "layoutContent" (13)
$params .../latte/src/Latte/Runtime/Template.php:179 source Template09d7fb1e62->main()
169: // old accumulators for back compatibility 170: $this->params['_l'] = new \stdClass; 171: $this->params['_g'] = $this->global; 172: $this->params['_b'] = (object) ['blocks' => &$this->blockQueue, 'types' => &$this->blockTypes]; 173: if (isset($this->global->snippetDriver) && $this->global->snippetBridge->isSnippetMode()) { 174: if ($this->global->snippetDriver->renderSnippets($this->blockQueue, $this->params)) { 175: return; 176: } 177: } 178: 179: $this->main(); 180: } 181: 182: 183: /**
.../latte/src/Latte/Runtime/Template.php:157 source Latte\Runtime\Template->render()
147: if ($this->referenceType === 'import') { 148: if ($this->parentName) { 149: $this->createTemplate($this->parentName, [], 'import')->render(); 150: } 151: return; 152: 153: } elseif ($this->parentName) { // extends 154: ob_start(function () {}); 155: $params = $this->main(); 156: ob_end_clean(); 157: $this->createTemplate($this->parentName, $params, 'extends')->render(); 158: return; 159: 160: } elseif (!empty($this->params['_renderblock'])) { // single block rendering 161: $tmp = $this;
.../latte/src/Latte/Runtime/Template.php:157 source Latte\Runtime\Template->render()
147: if ($this->referenceType === 'import') { 148: if ($this->parentName) { 149: $this->createTemplate($this->parentName, [], 'import')->render(); 150: } 151: return; 152: 153: } elseif ($this->parentName) { // extends 154: ob_start(function () {}); 155: $params = $this->main(); 156: ob_end_clean(); 157: $this->createTemplate($this->parentName, $params, 'extends')->render(); 158: return; 159: 160: } elseif (!empty($this->params['_renderblock'])) { // single block rendering 161: $tmp = $this;
.../vendor/latte/latte/src/Latte/Engine.php:75 source Latte\Runtime\Template->render()
65: $this->filters = new Runtime\FilterExecutor; 66: } 67: 68: 69: /** 70: * Renders template to output. 71: */ 72: public function render(string $name, array $params = [], string $block = null): void 73: { 74: $this->createTemplate($name, $params + ['_renderblock' => $block]) 75: ->render(); 76: } 77: 78: 79: /**
.../Bridges/ApplicationLatte/Template.php:52 source Latte\Engine->render(arguments)
42: return $this->latte; 43: } 44: 45: 46: /** 47: * Renders template to output. 48: * @return void 49: */ 50: public function render($file = null, array $params = []) 51: { 52: $this->latte->render($file ?: $this->file, $params + $this->params); 53: } 54: 55: 56: /**
$name "/www/doc/seminare.ekomonitor.cz/www/app/modules/CustomModule/FrontModule/presenters/templates/SeminarDetail/cs/default.latte" (124)
$params .../Application/Responses/TextResponse.php:49 source Nette\Bridges\ApplicationLatte\Template->render()
39: } 40: 41: 42: /** 43: * Sends response to output. 44: * @return void 45: */ 46: public function send(Nette\Http\IRequest $httpRequest, Nette\Http\IResponse $httpResponse) 47: { 48: if ($this->source instanceof Nette\Application\UI\ITemplate) { 49: $this->source->render(); 50: 51: } else { 52: echo $this->source; 53: }
.../src/Application/Application.php:157 source Nette\Application\Responses\TextResponse->send(arguments)
147: } 148: $this->onPresenter($this, $this->presenter); 149: $response = $this->presenter->run(clone $request); 150: 151: if ($response instanceof Responses\ForwardResponse) { 152: $request = $response->getRequest(); 153: goto process; 154: 155: } elseif ($response) { 156: $this->onResponse($this, $response); 157: $response->send($this->httpRequest, $this->httpResponse); 158: } 159: } 160: 161:
$httpRequest $httpResponse .../src/Application/Application.php:83 source Nette\Application\Application->processRequest(arguments)
73: 74: 75: /** 76: * Dispatch a HTTP request to a front controller. 77: * @return void 78: */ 79: public function run() 80: { 81: try { 82: $this->onStartup($this); 83: $this->processRequest($this->createInitialRequest()); 84: $this->onShutdown($this); 85: 86: } catch (\Exception $e) { 87: } catch (\Throwable $e) {
$request .../www/public/index.php:23 source Nette\Application\Application->run()
13: // if((int) $_SERVER['SERVER_PORT'] !== 443) { 14: // $_SERVER['SERVER_PORT'] = 443; 15: // } 16: // } 17: //} 18: 19: /** @var \Nette\DI\Container $container */ 20: $container = require __DIR__ . '/../app/bootstrap.php'; 21: 22: $container->getByType(Nette\Application\Application::class) 23: ->run(); 24:
Variables
$name | "form" (4)
|
---|---|
$form | |
$participation_options | |
$_participation_options | array ()
|
Nette Application
Requests
Presenter
Environment
$_SERVER
REDIRECT_REDIRECT_UNIQUE_ID | "ZRU0kB8PDOkAANsoGEoAAAAF" (24)
|
---|---|
REDIRECT_REDIRECT_HTTPS | "on" (2)
|
REDIRECT_REDIRECT_GEOIP_ADDR | "35.175.191.46" (13)
|
REDIRECT_REDIRECT_GEOIP_CONTINENT_CODE | "NA" (2)
|
REDIRECT_REDIRECT_GEOIP_COUNTRY_CODE | "US" (2)
|
REDIRECT_REDIRECT_GEOIP_COUNTRY_NAME | "United States" (13)
|
REDIRECT_REDIRECT_STATUS | "200" (3)
|
REDIRECT_UNIQUE_ID | "ZRU0kB8PDOkAANsoGEoAAAAF" (24)
|
REDIRECT_HTTPS | "on" (2)
|
REDIRECT_GEOIP_ADDR | "35.175.191.46" (13)
|
REDIRECT_GEOIP_CONTINENT_CODE | "NA" (2)
|
REDIRECT_GEOIP_COUNTRY_CODE | "US" (2)
|
REDIRECT_GEOIP_COUNTRY_NAME | "United States" (13)
|
REDIRECT_STATUS | "200" (3)
|
UNIQUE_ID | "ZRU0kB8PDOkAANsoGEoAAAAF" (24)
|
HTTPS | "on" (2)
|
GEOIP_ADDR | "35.175.191.46" (13)
|
GEOIP_CONTINENT_CODE | "NA" (2)
|
GEOIP_COUNTRY_CODE | "US" (2)
|
GEOIP_COUNTRY_NAME | "United States" (13)
|
HTTP_HOST | "seminare.ekomonitor.cz" (22)
|
HTTP_X_REAL_IP | "35.175.191.46" (13)
|
HTTP_X_FORWARDED_PROTO | "https" (5)
|
HTTP_CONNECTION | "close" (5)
|
HTTP_USER_AGENT | "CCBot/2.0 (https://commoncrawl.org/faq/)" (40)
|
HTTP_ACCEPT | "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8" (63)
|
HTTP_ACCEPT_LANGUAGE | "en-US,en;q=0.5" (14)
|
HTTP_IF_MODIFIED_SINCE | "Wed, 07 Jun 2023 09:31:10 GMT" (29)
|
HTTP_ACCEPT_ENCODING | "br,gzip" (7)
|
PATH | "/usr/local/bin:/usr/local/sbin:/bin:/sbin:/usr/bin:/usr/sbin:/usr/X11R6/bin" (75)
|
SERVER_SIGNATURE | ""
|
SERVER_SOFTWARE | "Apache" (6)
|
SERVER_NAME | "seminare.ekomonitor.cz" (22)
|
SERVER_ADDR | "31.15.12.233" (12)
|
SERVER_PORT | "443" (3)
|
REMOTE_ADDR | "35.175.191.46" (13)
|
DOCUMENT_ROOT | "/www/doc/seminare.ekomonitor.cz/www" (35)
|
REQUEST_SCHEME | "https" (5)
|
CONTEXT_PREFIX | ""
|
CONTEXT_DOCUMENT_ROOT | "/www/doc/seminare.ekomonitor.cz/www" (35)
|
SERVER_ADMIN | "info@active24.cz" (16)
|
SCRIPT_FILENAME | "/www/doc/seminare.ekomonitor.cz/www/public/index.php" (52)
|
REMOTE_PORT | "49922" (5)
|
REDIRECT_URL | "/public/skoleni/radiologicke-metody-v-hydrosfere-19-1658837756" (62)
|
GATEWAY_INTERFACE | "CGI/1.1" (7)
|
SERVER_PROTOCOL | "HTTP/1.0" (8)
|
REQUEST_METHOD | "GET" (3)
|
QUERY_STRING | ""
|
REQUEST_URI | "/skoleni/radiologicke-metody-v-hydrosfere-19-1658837756" (55)
|
SCRIPT_NAME | "/public/index.php" (17)
|
PHP_SELF | "/public/index.php" (17)
|
REQUEST_TIME_FLOAT | 1695888528.126336
|
REQUEST_TIME | 1695888528
|
argv | array ()
|
argc | 0
|
$_SESSION
__NF | Nette Session |
---|
Nette Session
tracy_error_presenter_panel | |
---|---|
secretFiles | null
|
Nette.Http.UserStorage/livesystem.security.user.ns-admin |
Constants
FILTER_VALIDATE_BOOL | 258
|
---|
Configuration options
Configuration
apache2handler
Apache Version | Apache |
Apache API Version | 20120211 |
Server Administrator | info@active24.cz |
Hostname:Port | seminare.ekomonitor.cz:0 |
User/Group | www-data(33)/33 |
Max Requests | Per Child: 0 - Keep Alive: on - Max Per Connection: 1000 |
Timeouts | Connection: 35 - Keep-Alive: 5 |
Virtual Server | Yes |
Server Root | /etc/apache86 |
Loaded Modules | core mod_so mod_watchdog http_core mod_log_config mod_logio mod_version mod_unixd mod_access_compat mod_alias mod_auth_basic mod_auth_digest mod_authn_core mod_authn_file mod_authz_core mod_authz_groupfile mod_authz_host mod_authz_user mod_autoindex mod_cgi mod_deflate mod_dir mod_env mod_expires mod_fakessl mod_filter mod_geoip mod_headers mod_include mod_macro mod_mime mpm_itk prefork mod_negotiation mod_php7 mod_proxy mod_remoteip mod_reqtimeout mod_rewrite mod_security2 mod_setenvif mod_socache_shmcb mod_status mod_suexec mod_unique_id |
Directive | Local Value | Master Value |
---|---|---|
engine | 1 | 1 |
last_modified | 0 | 0 |
xbithack | 0 | 0 |
Apache Environment
Variable | Value |
---|---|
REDIRECT_REDIRECT_UNIQUE_ID | ZRU0kB8PDOkAANsoGEoAAAAF |
REDIRECT_REDIRECT_HTTPS | on |
REDIRECT_REDIRECT_GEOIP_ADDR | 35.175.191.46 |
REDIRECT_REDIRECT_GEOIP_CONTINENT_CODE | NA |
REDIRECT_REDIRECT_GEOIP_COUNTRY_CODE | US |
REDIRECT_REDIRECT_GEOIP_COUNTRY_NAME | United States |
REDIRECT_REDIRECT_STATUS | 200 |
REDIRECT_UNIQUE_ID | ZRU0kB8PDOkAANsoGEoAAAAF |
REDIRECT_HTTPS | on |
REDIRECT_GEOIP_ADDR | 35.175.191.46 |
REDIRECT_GEOIP_CONTINENT_CODE | NA |
REDIRECT_GEOIP_COUNTRY_CODE | US |
REDIRECT_GEOIP_COUNTRY_NAME | United States |
REDIRECT_STATUS | 200 |
UNIQUE_ID | ZRU0kB8PDOkAANsoGEoAAAAF |
HTTPS | on |
GEOIP_ADDR | 35.175.191.46 |
GEOIP_CONTINENT_CODE | NA |
GEOIP_COUNTRY_CODE | US |
GEOIP_COUNTRY_NAME | United States |
HTTP_HOST | seminare.ekomonitor.cz |
HTTP_X_REAL_IP | 35.175.191.46 |
HTTP_X_FORWARDED_PROTO | https |
HTTP_CONNECTION | close |
HTTP_USER_AGENT | CCBot/2.0 (https://commoncrawl.org/faq/) |
HTTP_ACCEPT | text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 |
HTTP_ACCEPT_LANGUAGE | en-US,en;q=0.5 |
HTTP_IF_MODIFIED_SINCE | Wed, 07 Jun 2023 09:31:10 GMT |
HTTP_ACCEPT_ENCODING | br,gzip |
PATH | /usr/local/bin:/usr/local/sbin:/bin:/sbin:/usr/bin:/usr/sbin:/usr/X11R6/bin |
SERVER_SIGNATURE | no value |
SERVER_SOFTWARE | Apache |
SERVER_NAME | seminare.ekomonitor.cz |
SERVER_ADDR | 31.15.12.233 |
SERVER_PORT | 443 |
REMOTE_ADDR | 35.175.191.46 |
DOCUMENT_ROOT | /www/doc/seminare.ekomonitor.cz/www |
REQUEST_SCHEME | https |
CONTEXT_PREFIX | no value |
CONTEXT_DOCUMENT_ROOT | /www/doc/seminare.ekomonitor.cz/www |
SERVER_ADMIN | info@active24.cz |
SCRIPT_FILENAME | /www/doc/seminare.ekomonitor.cz/www/public/index.php |
REMOTE_PORT | 49922 |
REDIRECT_URL | /public/skoleni/radiologicke-metody-v-hydrosfere-19-1658837756 |
GATEWAY_INTERFACE | CGI/1.1 |
SERVER_PROTOCOL | HTTP/1.0 |
REQUEST_METHOD | GET |
QUERY_STRING | no value |
REQUEST_URI | /skoleni/radiologicke-metody-v-hydrosfere-19-1658837756 |
SCRIPT_NAME | /public/index.php |
HTTP Headers Information
HTTP Request Headers | |
---|---|
HTTP Request | GET /skoleni/radiologicke-metody-v-hydrosfere-19-1658837756 HTTP/1.0 |
Host | seminare.ekomonitor.cz |
X-Real-IP | 35.175.191.46 |
X-Forwarded-Proto | https |
Connection | close |
User-Agent | CCBot/2.0 (https://commoncrawl.org/faq/) |
Accept | text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 |
Accept-Language | en-US,en;q=0.5 |
If-Modified-Since | Wed, 07 Jun 2023 09:31:10 GMT |
Accept-Encoding | br,gzip |
GEOIP_ADDR | 35.175.191.46 |
GEOIP_CONTINENT_CODE | NA |
GEOIP_COUNTRY_CODE | US |
GEOIP_COUNTRY_NAME | United States |
HTTP Response Headers | |
X-Frame-Options | DENY |
Set-Cookie | PHPSESSID=10ae68eb91d8d4ec78f2da975359364a; expires=Thu, 12-Oct-2023 08:08:48 GMT; Max-Age=1209600; path=/; HttpOnly |
Expires | Thu, 19 Nov 1981 08:52:00 GMT |
Cache-Control | no-store, no-cache, must-revalidate |
Pragma | no-cache |
Vary | X-Requested-With, Accept-Encoding |
Content-Encoding | gzip |
bcmath
BCMath support | enabled |
Directive | Local Value | Master Value |
---|---|---|
bcmath.scale | 0 | 0 |
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.4.33 |
Directive | Local Value | Master Value |
---|---|---|
allow_url_fopen | On | On |
allow_url_include | Off | Off |
arg_separator.input | & | & |
arg_separator.output | & | & |
auto_append_file | no value | no value |
auto_globals_jit | On | On |
auto_prepend_file | no value | no value |
browscap | /usr/local/php/browscap.ini | /usr/local/php/browscap.ini |
default_charset | UTF-8 | UTF-8 |
default_mimetype | text/html | text/html |
disable_classes | no value | no value |
disable_functions | no value | no value |
display_errors | On | On |
display_startup_errors | Off | Off |
doc_root | /www/doc/seminare.ekomonitor.cz/www | 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 | /www/doc/seminare.ekomonitor.cz/logs/php_error.log | /var/log/apache2/php_error_log |
error_prepend_string | no value | no value |
error_reporting | 32767 | 30711 |
expose_php | Off | Off |
extension_dir | /usr/lib/php/20190902 | /usr/lib/php/20190902 |
file_uploads | On | On |
hard_timeout | 2 | 2 |
highlight.comment | #998; font-style: italic | #FF8000 |
highlight.default | #000 | #0000BB |
highlight.html | #06B | #000000 |
highlight.keyword | #D24; font-weight: bold | #007700 |
highlight.string | #080 | #DD0000 |
html_errors | Off | On |
ignore_repeated_errors | Off | Off |
ignore_repeated_source | Off | Off |
ignore_user_abort | Off | Off |
implicit_flush | Off | Off |
include_path | .:/usr/share/php | .:/usr/share/php |
input_encoding | no value | no value |
internal_encoding | no value | no value |
log_errors | Off | On |
log_errors_max_len | 1024 | 1024 |
mail.add_x_header | On | On |
mail.force_extra_parameters | no value | no value |
mail.log | /var/log/phpmail.log | /var/log/phpmail.log |
max_execution_time | 120 | 120 |
max_file_uploads | 20 | 20 |
max_input_nesting_level | 64 | 64 |
max_input_time | 60 | 60 |
max_input_vars | 5000 | 5000 |
memory_limit | 256M | 256M |
open_basedir | /www/doc/seminare.ekomonitor.cz:/disk2/doc/seminare.ekomonitor.cz:/usr/share/php:/www/tmp:/tmp | /www/doc/:/www/tmp/:/etc/apache/errmsg/ |
output_buffering | no value | no value |
output_encoding | no value | no value |
output_handler | no value | no value |
post_max_size | 256M | 256M |
precision | 12 | 12 |
realpath_cache_size | 4096K | 4096K |
realpath_cache_ttl | 120 | 120 |
register_argc_argv | On | On |
report_memleaks | On | On |
report_zend_debug | On | On |
request_order | no value | no value |
sendmail_from | no value | no value |
sendmail_path | MAILHOST=seminare.ekomonitor.cz /usr/bin/sendmail-wrapper -t -f postmaster@seminare.ekomonitor.cz | /usr/sbin/sendmail -t -i |
serialize_precision | -1 | -1 |
short_open_tag | On | On |
SMTP | localhost | localhost |
smtp_port | 25 | 25 |
sys_temp_dir | no value | no value |
syslog.facility | LOG_USER | LOG_USER |
syslog.filter | no-ctrl | no-ctrl |
syslog.ident | php | php |
track_errors | Off | Off |
unserialize_callback_func | no value | no value |
upload_max_filesize | 256M | 256M |
upload_tmp_dir | /www/tmp | /www/tmp |
user_dir | no value | no value |
user_ini.cache_ttl | 300 | 300 |
user_ini.filename | .user.ini | .user.ini |
variables_order | EGPCS | EGPCS |
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 | Off |
zend.multibyte | Off | Off |
zend.script_encoding | no value | no value |
zend.signal_check | Off | Off |
ctype
ctype functions | enabled |
curl
cURL support | enabled |
cURL Information | 7.52.1 |
Age | 3 |
Features | |
AsynchDNS | Yes |
CharConv | No |
Debug | No |
GSS-Negotiate | No |
IDN | Yes |
IPv6 | Yes |
krb4 | No |
Largefile | Yes |
libz | Yes |
NTLM | Yes |
NTLMWB | Yes |
SPNEGO | Yes |
SSL | Yes |
SSPI | No |
TLS-SRP | Yes |
HTTP2 | Yes |
GSSAPI | Yes |
KERBEROS5 | Yes |
UNIX_SOCKETS | Yes |
PSL | Yes |
HTTPS_PROXY | Yes |
Protocols | dict, file, ftp, ftps, gopher, http, https, imap, imaps, ldap, ldaps, pop3, pop3s, rtmp, rtsp, scp, sftp, smb, smbs, smtp, smtps, telnet, tftp |
Host | x86_64-pc-linux-gnu |
SSL Version | OpenSSL/1.0.2u |
ZLib Version | 1.2.8 |
libSSH Version | libssh2/1.7.0 |
Directive | Local Value | Master Value |
---|---|---|
curl.cainfo | no value | no value |
date
date/time support | enabled |
timelib version | 2018.04 |
"Olson" Timezone Database Version | 2022.1 |
Timezone Database | internal |
Default timezone | Europe/Prague |
Directive | Local Value | Master Value |
---|---|---|
date.default_latitude | 50.0594 | 50.0594 |
date.default_longitude | 14.4806 | 14.4806 |
date.sunrise_zenith | 90.583333 | 90.583333 |
date.sunset_zenith | 90.583333 | 90.583333 |
date.timezone | Europe/Prague | Europe/Prague |
dba
DBA support | enabled |
Supported handlers | gdbm cdb cdb_make db4 inifile flatfile |
Directive | Local Value | Master Value |
---|---|---|
dba.default_handler | flatfile | flatfile |
dom
DOM/XML | enabled |
DOM/XML API Version | 20031129 |
libxml Version | 2.9.4 |
HTML Support | enabled |
XPath Support | enabled |
XPointer Support | enabled |
Schema Support | enabled |
RelaxNG Support | enabled |
enchant
enchant support | enabled |
Libenchant Version | 1.6.0 |
aspell | Aspell Provider | /usr/lib/x86_64-linux-gnu/enchant/libenchant_aspell.so |
ispell | Ispell Provider | /usr/lib/x86_64-linux-gnu/enchant/libenchant_ispell.so |
hspell | Hspell Provider | /usr/lib/x86_64-linux-gnu/enchant/libenchant_hspell.so |
myspell | Myspell Provider | /usr/lib/x86_64-linux-gnu/enchant/libenchant_myspell.so |
exif
EXIF Support | enabled |
Supported EXIF Version | 0220 |
Supported filetypes | JPEG, TIFF |
Multibyte decoding support using mbstring | enabled |
Extended EXIF tag formats | Canon, Casio, Fujifilm, Nikon, Olympus, Samsung, Panasonic, DJI, Sony, Pentax, Minolta, Sigma, Foveon, Kyocera, Ricoh, AGFA, Epson |
Directive | Local Value | Master Value |
---|---|---|
exif.decode_jis_intel | JIS | JIS |
exif.decode_jis_motorola | JIS | JIS |
exif.decode_unicode_intel | UCS-2LE | UCS-2LE |
exif.decode_unicode_motorola | UCS-2BE | UCS-2BE |
exif.encode_jis | no value | no value |
exif.encode_unicode | ISO-8859-15 | ISO-8859-15 |
fileinfo
fileinfo support | enabled |
libmagic | 537 |
filter
Input Validation and Filtering | enabled |
Directive | Local Value | Master Value |
---|---|---|
filter.default | unsafe_raw | unsafe_raw |
filter.default_flags | no value | no value |
ftp
FTP support | enabled |
FTPS support | enabled |
gd
GD Support | enabled |
GD Version | bundled (2.1.0 compatible) |
FreeType Support | enabled |
FreeType Linkage | with freetype |
FreeType Version | 2.6.3 |
GIF Read Support | enabled |
GIF Create Support | enabled |
JPEG Support | enabled |
libJPEG Version | 6b |
PNG Support | enabled |
libPNG Version | 1.6.28 |
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 | 1 | 1 |
gettext
GetText Support | enabled |
hash
hash support | enabled |
Hashing Engines | md2 md4 md5 sha1 sha224 sha256 sha384 sha512/224 sha512/256 sha512 sha3-224 sha3-256 sha3-384 sha3-512 ripemd128 ripemd160 ripemd256 ripemd320 whirlpool tiger128,3 tiger160,3 tiger192,3 tiger128,4 tiger160,4 tiger192,4 snefru snefru256 gost gost-crypto adler32 crc32 crc32b crc32c 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.24 |
Directive | Local Value | Master Value |
---|---|---|
iconv.input_encoding | no value | no value |
iconv.internal_encoding | no value | no value |
iconv.output_encoding | no value | no value |
imagick
imagick module | enabled |
---|---|
imagick module version | 3.4.4 |
imagick classes | Imagick, ImagickDraw, ImagickPixel, ImagickPixelIterator, ImagickKernel |
Imagick compiled with ImageMagick version | ImageMagick 6.9.7-4 Q16 x86_64 20170114 http://www.imagemagick.org |
Imagick using ImageMagick library version | ImageMagick 6.9.7-4 Q16 x86_64 20170114 http://www.imagemagick.org |
ImageMagick copyright | © 1999-2017 ImageMagick Studio LLC |
ImageMagick release date | 20170114 |
ImageMagick number of supported formats: | 236 |
ImageMagick supported formats | 3FR, AAI, AI, ART, ARW, AVI, AVS, BGR, BGRA, BGRO, BIE, BMP, BMP2, BMP3, BRF, CAL, CALS, CANVAS, CAPTION, CIN, CIP, CLIP, CMYK, CMYKA, CR2, CRW, CUR, CUT, DATA, DCM, DCR, DCX, DDS, DFONT, DJVU, DNG, DOT, DPX, DXT1, DXT5, EPDF, EPI, EPS, EPS2, EPS3, EPSF, EPSI, EPT, EPT2, EPT3, ERF, EXR, FAX, FILE, FITS, FRACTAL, FTP, FTS, G3, G4, GIF, GIF87, GRADIENT, GRAY, GROUP4, GV, H, HALD, HDR, HISTOGRAM, HRZ, HTM, HTML, HTTP, HTTPS, ICB, ICO, ICON, IIQ, INFO, INLINE, IPL, ISOBRL, ISOBRL6, J2C, J2K, JBG, JBIG, JNG, JNX, JP2, JPC, JPE, JPEG, JPG, JPM, JPS, JPT, JSON, K25, KDC, LABEL, M2V, M4V, MAC, MAGICK, MAP, MASK, MAT, MATTE, MEF, MIFF, MKV, MNG, MONO, MOV, MP4, MPC, 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, 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.locale_fix | 0 | 0 |
imagick.progress_monitor | 0 | 0 |
imagick.skip_version_check | 0 | 0 |
imap
IMAP c-Client Version | 2007f |
SSL Support | enabled |
Kerberos Support | enabled |
Directive | Local Value | Master Value |
---|---|---|
imap.enable_insecure_rsh | Off | Off |
intl
Internationalization support | enabled |
---|---|
ICU version | 57.1 |
ICU Data version | 57.1 |
ICU TZData version | 2016b |
ICU Unicode version | 8.0 |
Directive | Local Value | Master Value |
---|---|---|
intl.default_locale | no value | no value |
intl.error_level | 0 | 0 |
intl.use_exceptions | 0 | 0 |
ionCube Loader
ionCube Loader developed by ionCube Ltd.
Visit ioncube.com for latest Loaders and support. This Loader also includes features for real-time error reporting and malware protection. Visit ioncube24.com for more details. |
Loader version | 12.0.2 |
ionCube24 features | unconfigured |
Directive | Local Value | Master Value |
---|---|---|
ic24.api.log_msg_errors | 0 | 0 |
ic24.api.max_timeout | 7 | 7 |
ic24.api_access_key | ******** | ******** |
ic24.api_check_ip | 1 | 1 |
ic24.enable | 0 | 0 |
ic24.home_dir | no value | no value |
ic24.phperr.enable | auto | auto |
ic24.phperr.ignore | 0 | 0 |
ic24.sec.block_stdin | 1 | 1 |
ic24.sec.block_uploaded_files | 1 | 1 |
ic24.sec.enable | auto | auto |
ic24.sec.exclusion_key | ******** | ******** |
ic24.sec.initial_action | block | block |
ic24.sec.initial_cache_all | 1 | 1 |
ic24.sec.initial_notify | always | always |
ic24.sec.initial_state | 1 | 1 |
ic24.sec.stop_on_error | 1 | 1 |
ic24.sec.trusted_include_paths | ******** | ******** |
ic24.slt | 7 | 7 |
ic24.update_domains_retry_interval | 30 | 30 |
ioncube.loader.encoded_paths | no value | no value |
json
json support | enabled |
ldap
LDAP Support | enabled |
Total Links | 0/unlimited |
API Version | 3001 |
Vendor Name | OpenLDAP |
Vendor Version | 20444 |
Directive | Local Value | Master Value |
---|---|---|
ldap.max_links | Unlimited | Unlimited |
libxml
libXML support | active |
libXML Compiled Version | 2.9.4 |
libXML Loaded Version | 20904 |
libXML streams | enabled |
mbstring
Multibyte Support | enabled |
Multibyte string engine | libmbfl |
HTTP input encoding translation | disabled |
libmbfl version | 1.3.2 |
mbstring extension makes use of "streamable kanji code filter and converter", which is distributed under the GNU Lesser General Public License version 2.1. |
---|
Multibyte (japanese) regex support | enabled |
Multibyte regex (oniguruma) version | 6.1.3 |
Directive | Local Value | Master Value |
---|---|---|
mbstring.detect_order | no value | no value |
mbstring.encoding_translation | Off | Off |
mbstring.func_overload | 0 | 0 |
mbstring.http_input | no value | no value |
mbstring.http_output | no value | no value |
mbstring.http_output_conv_mimetypes | ^(text/|application/xhtml\+xml) | ^(text/|application/xhtml\+xml) |
mbstring.internal_encoding | no value | no value |
mbstring.language | neutral | neutral |
mbstring.regex_retry_limit | 1000000 | 1000000 |
mbstring.regex_stack_limit | 100000 | 100000 |
mbstring.strict_detection | Off | Off |
mbstring.substitute_character | no value | no value |
mysqli
MysqlI Support | enabled |
---|---|
Client API library version | mysqlnd 7.4.33 |
Active Persistent Links | 0 |
Inactive Persistent Links | 0 |
Active Links | 0 |
Directive | Local Value | Master Value |
---|---|---|
mysqli.allow_local_infile | Off | Off |
mysqli.allow_persistent | On | On |
mysqli.default_host | no value | no value |
mysqli.default_port | 3306 | 3306 |
mysqli.default_pw | no value | no value |
mysqli.default_socket | no value | no value |
mysqli.default_user | no value | no value |
mysqli.max_links | Unlimited | Unlimited |
mysqli.max_persistent | Unlimited | Unlimited |
mysqli.reconnect | Off | Off |
mysqli.rollback_on_cached_plink | Off | Off |
mysqlnd
mysqlnd | enabled |
---|---|
Version | mysqlnd 7.4.33 |
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 |
mywrap | enabled |
openssl
OpenSSL support | enabled |
OpenSSL Library Version | OpenSSL 1.1.0l 10 Sep 2019 |
OpenSSL Header Version | OpenSSL 1.1.0l 10 Sep 2019 |
Openssl default config | /usr/lib/ssl/openssl.cnf |
Directive | Local Value | Master Value |
---|---|---|
openssl.cafile | no value | no value |
openssl.capath | no value | no value |
pcre
PCRE (Perl Compatible Regular Expressions) Support | enabled |
PCRE Library Version | 10.35 2020-05-09 |
PCRE Unicode Version | 13.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 | 1 | 1 |
pcre.recursion_limit | 100000 | 100000 |
PDO
PDO support | enabled |
---|---|
PDO drivers | dblib, mysql, pgsql, sqlite |
pdo_dblib
PDO Driver for FreeTDS/Sybase DB-lib | enabled |
---|---|
Flavour | freetds |
pdo_mysql
PDO Driver for MySQL | enabled |
---|---|
Client API version | mysqlnd 7.4.33 |
Directive | Local Value | Master Value |
---|---|---|
pdo_mysql.default_socket | /tmp/mysql.sock | /tmp/mysql.sock |
pdo_pgsql
PDO Driver for PostgreSQL | enabled |
PostgreSQL(libpq) Version | 9.6.24 |
pdo_sqlite
PDO Driver for SQLite 3.x | enabled |
---|---|
SQLite Library | 3.16.2 |
pgsql
PostgreSQL Support | enabled |
---|---|
PostgreSQL(libpq) Version | 9.6.24 |
PostgreSQL(libpq) | PostgreSQL 9.6.24 on x86_64-pc-linux-gnu, compiled by gcc (Debian 6.3.0-18+deb9u1) 6.3.0 20170516, 64-bit |
Multibyte character support | enabled |
SSL support | enabled |
Active Persistent Links | 0 |
Active Links | 0 |
Directive | Local Value | Master Value |
---|---|---|
pgsql.allow_persistent | On | On |
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
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 |
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
POSIX support | enabled |
Reflection
Reflection | enabled |
session
Session Support | enabled |
Registered save handlers | files user |
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 | 1 | 0 |
session.cookie_lifetime | 1209600 | 0 |
session.cookie_path | / | / |
session.cookie_samesite | no value | no value |
session.cookie_secure | 0 | 0 |
session.gc_divisor | 100 | 100 |
session.gc_maxlifetime | 1209600 | 1440 |
session.gc_probability | 1 | 1 |
session.lazy_write | On | On |
session.name | PHPSESSID | PHPSESSID |
session.referer_check | no value | no value |
session.save_handler | files | files |
session.save_path | /www/doc/seminare.ekomonitor.cz/session | /var/lib/php5 |
session.serialize_handler | php | php |
session.sid_bits_per_character | 4 | 4 |
session.sid_length | 32 | 32 |
session.upload_progress.cleanup | On | On |
session.upload_progress.enabled | On | On |
session.upload_progress.freq | 1% | 1% |
session.upload_progress.min_freq | 1 | 1 |
session.upload_progress.name | PHP_SESSION_UPLOAD_PROGRESS | PHP_SESSION_UPLOAD_PROGRESS |
session.upload_progress.prefix | upload_progress_ | upload_progress_ |
session.use_cookies | 1 | 1 |
session.use_only_cookies | 1 | 1 |
session.use_strict_mode | 0 | 0 |
session.use_trans_sid | 0 | 0 |
shmop
shmop support | enabled |
SimpleXML
SimpleXML support | enabled |
Schema support | enabled |
snmp
NET-SNMP Support | enabled |
NET-SNMP Version | 5.7.3 |
soap
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 | 1 | 1 |
soap.wsdl_cache_limit | 5 | 5 |
soap.wsdl_cache_ttl | 86400 | 86400 |
sockets
Sockets Support | enabled |
sodium
sodium support | enabled |
---|---|
libsodium headers version | 1.0.11 |
libsodium library version | 1.0.11 |
SPL
SPL support | enabled |
---|---|
Interfaces | OuterIterator, RecursiveIterator, SeekableIterator, SplObserver, SplSubject |
Classes | AppendIterator, ArrayIterator, ArrayObject, BadFunctionCallException, BadMethodCallException, CachingIterator, CallbackFilterIterator, DirectoryIterator, DomainException, EmptyIterator, FilesystemIterator, FilterIterator, GlobIterator, InfiniteIterator, InvalidArgumentException, IteratorIterator, LengthException, LimitIterator, LogicException, MultipleIterator, NoRewindIterator, OutOfBoundsException, OutOfRangeException, OverflowException, ParentIterator, RangeException, RecursiveArrayIterator, RecursiveCachingIterator, RecursiveCallbackFilterIterator, RecursiveDirectoryIterator, RecursiveFilterIterator, RecursiveIteratorIterator, RecursiveRegexIterator, RecursiveTreeIterator, RegexIterator, RuntimeException, SplDoublyLinkedList, SplFileInfo, SplFileObject, SplFixedArray, SplHeap, SplMinHeap, SplMaxHeap, SplObjectStorage, SplPriorityQueue, SplQueue, SplStack, SplTempFileObject, UnderflowException, UnexpectedValueException |
sqlite3
SQLite3 support | enabled |
---|---|
SQLite Library | 3.16.2 |
Directive | Local Value | Master Value |
---|---|---|
sqlite3.extension_dir | no value | no value |
standard
Dynamic Library Support | enabled |
Path to sendmail | MAILHOST=seminare.ekomonitor.cz /usr/bin/sendmail-wrapper -t -f postmaster@seminare.ekomonitor.cz |
Directive | Local Value | Master Value |
---|---|---|
assert.active | 1 | 1 |
assert.bail | 0 | 0 |
assert.callback | no value | no value |
assert.exception | 0 | 0 |
assert.quiet_eval | 0 | 0 |
assert.warning | 1 | 1 |
auto_detect_line_endings | 0 | 0 |
default_socket_timeout | 60 | 60 |
from | no value | no value |
session.trans_sid_hosts | no value | no value |
session.trans_sid_tags | a=href,area=href,frame=src,form= | a=href,area=href,frame=src,form= |
unserialize_max_depth | 4096 | 4096 |
url_rewriter.hosts | no value | no value |
url_rewriter.tags | a=href,area=href,frame=src,input=src,form=,fieldset= | a=href,area=href,frame=src,input=src,form=,fieldset= |
user_agent | no value | no value |
sysvmsg
sysvmsg support | enabled |
sysvsem
sysvsem support | enabled |
sysvshm
sysvshm support | enabled |
tidy
Tidy support | enabled |
libTidy Version | 5.2.0 |
libTidy Release | 2016/04/07 |
Directive | Local Value | Master Value |
---|---|---|
tidy.clean_output | 0 | 0 |
tidy.default_config | no value | no value |
tokenizer
Tokenizer Support | enabled |
xml
XML Support | active |
XML Namespace Support | active |
libxml2 Version | 2.9.4 |
xmlreader
XMLReader | enabled |
xmlrpc
core library version | xmlrpc-epi v. 0.51 |
author | Dan Libby |
homepage | http://xmlrpc-epi.sourceforge.net |
open sourced by | Epinions.com |
xmlwriter
XMLWriter | enabled |
xsl
XSL | enabled |
libxslt Version | 1.1.29 |
libxslt compiled against libxml Version | 2.9.4 |
EXSLT | enabled |
libexslt Version | 1.1.29 |
Zend OPcache
Opcode Caching | Disabled |
Optimization | Disabled |
SHM Cache | Enabled |
File Cache | Disabled |
Directive | Local Value | Master Value |
---|---|---|
opcache.blacklist_filename | no value | no value |
opcache.consistency_checks | 0 | 0 |
opcache.dups_fix | Off | Off |
opcache.enable | Off | 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.lockfile_path | /tmp | /tmp |
opcache.log_verbosity_level | 1 | 1 |
opcache.max_accelerated_files | 4000 | 4000 |
opcache.max_file_size | 0 | 0 |
opcache.max_wasted_percentage | 5 | 5 |
opcache.memory_consumption | 256 | 256 |
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.restrict_api | no value | no value |
opcache.revalidate_freq | 2 | 2 |
opcache.revalidate_path | Off | Off |
opcache.save_comments | On | On |
opcache.use_cwd | On | On |
opcache.validate_permission | Off | Off |
opcache.validate_root | Off | Off |
opcache.validate_timestamps | On | On |
zip
Zip | enabled |
Zip version | 1.15.6 |
Libzip headers version | 1.5.1 |
Libzip library version | 1.5.1 |
zlib
ZLib Support | enabled |
---|---|
Stream Wrapper | compress.zlib:// |
Stream Filter | zlib.inflate, zlib.deflate |
Compiled Version | 1.2.8 |
Linked Version | 1.2.8 |
Directive | Local Value | Master Value |
---|---|---|
zlib.output_compression | Off | Off |
zlib.output_compression_level | -1 | -1 |
zlib.output_handler | no value | no value |
Additional Modules
Module Name |
---|
HTTP request
URL
https://seminare.ekomonitor.cz/skoleni/radiologicke-metody-v-hydrosfere-19-1658837756
Headers
Host | seminare.ekomonitor.cz |
---|---|
X-Real-IP | 35.175.191.46 |
X-Forwarded-Proto | https |
Connection | close |
User-Agent | CCBot/2.0 (https://commoncrawl.org/faq/) |
Accept | text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 |
Accept-Language | en-US,en;q=0.5 |
If-Modified-Since | Wed, 07 Jun 2023 09:31:10 GMT |
Accept-Encoding | br,gzip |
GEOIP_ADDR | 35.175.191.46 |
GEOIP_CONTINENT_CODE | NA |
GEOIP_COUNTRY_CODE | US |
GEOIP_COUNTRY_NAME | United States |
$_GET
empty
$_POST
empty
$_COOKIE
empty
HTTP response
Headers
Content-Type | text/html; charset=utf-8 |
---|---|
X-Frame-Options | DENY |
Set-Cookie | PHPSESSID=10ae68eb91d8d4ec78f2da975359364a; expires=Thu, 12-Oct-2023 08:08:48 GMT; Max-Age=1209600; path=/; HttpOnly |
Expires | Thu, 19 Nov 1981 08:52:00 GMT |
Cache-Control | no-store, no-cache, must-revalidate |
Pragma | no-cache |
Vary | X-Requested-With |
- Please support Tracy via a donation 💙️
- Report generated at 2023/09/28 10:08:48
- https://seminare.ekomonitor.cz/skoleni/radiologicke-metody-v-hydrosfere-19-1658837756
- PHP 7.4.33
- Apache
- Tracy 2.6.8