file_get_contents(): SSL operation failed with code 1. OpenSSL Error messages: error:141A318A:SSL routines:tls_process_ske_dhe:dh key too small
/mnt/devel/Atrium/atriumstudio/vendor/onionCMS/Modules/Atrium/Widgets/AtriumMenu/AtriumMenuWidget.php
http://www.atriumarchitekti.loc/sk/uvod (GET)
Mozilla/5.0 (X11; Linux x86_64; rv:127.0) Gecko/20100101 Firefox/127.0
292293 foreach ($districts as $district) {294 $resource = array(295 'districtUrl' => $district['url']296 );297 $url = $this->app->router->createUrl('groundPlans', $resource);298299 $pageHtml = $parentHtml->create('li');300 $pageHtml->class[] = $page['url'];301 $pageHtml->create('a')302 ->href($url)303 ->setText($district['name']);304 }305306 return $menu;307 }308309 private function updateDistrictsCache($cache)310 {311 $json = file_get_contents('https://www.uzemneplany.sk/aping/api/master_plans/author/111');312 $_groundPlans = json_decode($json, true);313314 $_districts = array(315 2 => 'bbsk',316 3 => 'bsk',317 4 => 'ksk',318 5 => 'nsk',319 6 => 'psk',320 7 => 'tnsk',321 8 => 'task',
292293 foreach ($districts as $district) {294 $resource = array(295 'districtUrl' => $district['url']296 );297 $url = $this->app->router->createUrl('groundPlans', $resource);298299 $pageHtml = $parentHtml->create('li');300 $pageHtml->class[] = $page['url'];301 $pageHtml->create('a')302 ->href($url)303 ->setText($district['name']);304 }305306 return $menu;307 }308309 private function updateDistrictsCache($cache)310 {311 $json = file_get_contents('https://www.uzemneplany.sk/aping/api/master_plans/author/111');312 $_groundPlans = json_decode($json, true);313314 $_districts = array(315 2 => 'bbsk',316 3 => 'bsk',317 4 => 'ksk',318 5 => 'nsk',319 6 => 'psk',320 7 => 'tnsk',321 8 => 'task',
array ( 0 => 'https://www.uzemneplany.sk/aping/api/master_plans/author/111', )
246 $resource = array(247 'categoryUrl' => \Onion\Utils\Strings::webalize($category['name'])248 );249 $url = $this->app->router->createUrl('eshopCategory', $resource);250251 $pageHtml = \Onion\Utils\Html::element('li');252 $pageHtml->class[] = $page['url'];253 $pageHtml->create('a')254 ->href($url)255 ->setText($category['name']);256 $parentHtml->insert($i, $pageHtml);257 $i++;258 }259 }260261 // Kraje262 $cache = $this->services->cache;263 $districts = $cache->fetch('districts', 'groundPlans');264 if ($districts === false) {265 $this->updateDistrictsCache($cache);266 }267 $districts = $cache->fetch('districts', 'groundPlans');268269 $parent = $heap[41]; // Územné plány270 $parent->class[] = 'parent';271272 $iconBefore = \Onion\Utils\Html::element('span')273 ->class('icon icon-before')274 ->setText('d');275
array ( 0 => 'object (Onion\\Caching\\Cache)', )
341 $__tpl_route = $this->app->router->routes["search"];342 $__tpl_route_data = array();343 $__tpl_values = array();344 $this->renderUrl($__tpl_route, $__tpl_values, true);345 ?>">346 <div>s</div>347 <input type="text" name="term" value="<?php348 if (isset($this->searchTerm) === true) {349 $__tpl_var = $this->searchTerm;350 } else {351 $__tpl_var = "";352 }353 $this->printOut($__tpl_var);354 ?>" placeholder="Hľadať">355 </form>356 </li>357358 <?php359 $__tpl_object = new AtriumMenuWidget($this->services, $this);360 echo $__tpl_object->render(null, 2);361362 ?>363364 <li class="facebook"><a href="http://www.facebook.com/pages/Architektonick%C3%A9-%C5%A1t%C3%BAdio-Atrium/382578126095" target="_blank">F</a></li>365 <li class="instagram"><a href="https://www.instagram.com/atrium_architekti" target="_blank">S</a></li>366 <?php367 $__tpl_object = new LanguageSwitcherWidget($this->services, $this);368 echo $__tpl_object->render(true);369370 ?>
array ( 0 => 'NULL', 1 => 2, )
83 }84 }8586 public function render($ajax = false, $template = null)87 {88 if ($template === null) {89 $this['__TEMPLATE__'] = pathinfo($this->templateFile, PATHINFO_BASENAME);90 }91 $template = $this->compile($template);9293 foreach ($this->data as $var => $val) {94 $this->$var = $val;95 }9697 if (DEBUG === true) {98 $tempFile = TEMP_DIR.'/'.uniqid();99 file_put_contents($tempFile, $template);100101 ob_start();102 include($tempFile);103 $content = ob_get_clean();104 unlink($tempFile);105 } else {106 ob_start();107 $ret = eval(' ?>'.$template.'<?php ');108109 if ($ret === false) {110 trigger_error('Template parse error!');111 }112
array ( 0 => '/mnt/devel/Atrium/atriumstudio/temp/667322906d5c9', )
162 $parameters = $this->currentRoute->getResource();163164 $this->runHooks('system.hooks.afterCreateController');165166 call_user_func_array(array($this->controller, 'before'), $parameters);167168 $this->runHooks('system.hooks.beforeControllerRun');169170 call_user_func_array(array($this->controller, $this->actionName), $parameters);171172 $this->runHooks('system.hooks.afterControllerRun');173174 call_user_func_array(array($this->controller, 'after'), $parameters);175176 if (is_object($this->controller->view) === true) {177 $view['flash'] = $this->flash['current'];178179 $this->runHooks('system.hooks.beforeRenderView');180181 $body = $view->render($this->request->isAjax());182183 $this->response->setBody($body);184 } else {185 $this->runHooks('system.hooks.beforeRenderView');186187 $this->response->setBody($this->controller->view);188 }189190 $_SESSION['onion.flash'] = $this->flash['next'];191
array ( 0 => 'false', )
132 WWW_DIR.'/js/vendor/cookie.js',133 WWW_DIR.'/js/vendor/scroll-top.js',134 ),135 'less' => array(136 )137 ),138 'after' => array(139 'js' => array(140 WWW_DIR.'/js/main.js',141 ),142 'less' => array(143 WWW_DIR.'/less/main.less'144 )145 )146 )147 );148149 $app = new \Onion\Application($configuration);150151 $app->run();152 exit;
array ( )
13 // absolute filesystem path to the libraries14 define('LIBS_DIR', realpath(WWW_DIR.'/../vendor'));1516 // absolute filesystem path to the web root17 define('ONION_DIR', LIBS_DIR.'/Onion');1819 // absolute filesystem path to the application root20 define('APP_DIR', WWW_DIR.'/../app');2122 // absolute filesystem path to the temporary files23 define('TEMP_DIR', realpath(WWW_DIR.'/../temp'));2425 // absolute filesystem path to the cache26 define('CACHE_DIR', realpath(WWW_DIR.'/../cache'));2728 define('ONIONCMS_DIR', realpath(ONION_DIR.'/../onionCMS'));2930 // load bootstrap file31 if ($_SERVER["SERVER_ADDR"] === "127.0.0.1") {32 require ONIONCMS_DIR.'/bootstrap.dev.php';33 } else {34 require ONIONCMS_DIR.'/bootstrap.php';35 }
array ( 0 => '/mnt/devel/Atrium/atriumstudio/vendor/onionCMS/bootstrap.dev.php', )
array ( 'REDIRECT_STATUS' => '200', 'HTTP_HOST' => 'www.atriumarchitekti.loc', 'HTTP_USER_AGENT' => 'Mozilla/5.0 (X11; Linux x86_64; rv:127.0) Gecko/20100101 Firefox/127.0', 'HTTP_ACCEPT' => 'text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,*/*;q=0.8', 'HTTP_ACCEPT_LANGUAGE' => 'sk,cs;q=0.8,en-US;q=0.5,en;q=0.3', 'HTTP_ACCEPT_ENCODING' => 'gzip, deflate', 'HTTP_CONNECTION' => 'keep-alive', 'HTTP_COOKIE' => 'language=sk; cookieconsent_dismissed=yes; ws56trt87dfgxzaq=K1JLZkF4bWFNd0wrTkMrbnFRWmVGSDBveGtOWTlBZHI5UlB2V2FXYndCdkpybVg1bGc4ZTRiVUhuQ3ZnNTRCRitEZm5janVEQU1xcGs2NTNxQnA1dmJkMDZaR3BRcDBpMkM1ZXhDdGR6NzFKSUlUZjlXVnZsNnhXQ3dicnppQVBiTlJTSUJDVmxDNXdacVArc1dDUWhPOVE5QS9FaWxJdXZQVkt2RmdmOXJaWDVGMlJMZUtFQUp2R3J1N2ZRZW02Q0lQMUltMG5FNTZGa1ZxakxIWlU3dnlscVN3TUd5ZUxjWWIycG5Cd1JuSERZTUtNRzJsRmpPdTRGUGZVU0pEVXZpMlM3SWw5YXlRPThkMWIyN2Yw; qazfdrtygdfxsw=a1s3bv3rr2mkgko88kojjhdm58', 'HTTP_UPGRADE_INSECURE_REQUESTS' => '1', 'HTTP_PRIORITY' => 'u=1', 'PATH' => '/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin', 'SERVER_SIGNATURE' => '<address>Apache/2.4.38 (Debian) Server at www.atriumarchitekti.loc Port 80</address> ', 'SERVER_SOFTWARE' => 'Apache/2.4.38 (Debian)', 'SERVER_NAME' => 'www.atriumarchitekti.loc', 'SERVER_ADDR' => '127.0.0.1', 'SERVER_PORT' => '80', 'REMOTE_ADDR' => '127.0.0.1', 'DOCUMENT_ROOT' => '/mnt/devel/Atrium/atriumstudio/www_root', 'REQUEST_SCHEME' => 'http', 'CONTEXT_PREFIX' => '', 'CONTEXT_DOCUMENT_ROOT' => '/mnt/devel/Atrium/atriumstudio/www_root', 'SERVER_ADMIN' => 'webmaster@localhost', 'SCRIPT_FILENAME' => '/mnt/devel/Atrium/atriumstudio/www_root/index.php', 'REMOTE_PORT' => '44704', 'REDIRECT_URL' => '/sk/uvod', 'GATEWAY_INTERFACE' => 'CGI/1.1', 'SERVER_PROTOCOL' => 'HTTP/1.1', 'REQUEST_METHOD' => 'GET', 'QUERY_STRING' => '', 'REQUEST_URI' => '/sk/uvod', 'SCRIPT_NAME' => '/index.php', 'PHP_SELF' => '/index.php', 'REQUEST_TIME_FLOAT' => 1718821519.91, 'REQUEST_TIME' => 1718821519, )
array ( )