mysqli_error() expects exactly 1 parameter, 0 given
/home/iplikatore/domains/iplikator.eu/Onion/Core/Database.php
https://www.iplikator.eu/sk/uvod%C3%83%C2%82 (GET)
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.5938.92 Safari/537.36
351 352 } else { 353 $this->command = strtoupper($command); 354 } 355 } 356 357 if (DEBUG === TRUE) { 358 //echo '<pre>'.htmlspecialchars($sql, ENT_QUOTES).'</pre>'; 359 //Log::debug($sql); 360 } 361 362 $result = mysqli_query(self::$connections[$this->active_connection]['link'], $sql); 363 364 if ($result === FALSE) { 365 throw new DatabaseException( mysqli_error() . '<br /><code>' . self::highlight_sql($sql) . '</code>', mysqli_errno()); 366 } 367 368 if ($reset === TRUE) { 369 $this->reset(); 370 } 371 372 if ($this->command === 'COUNT') { 373 if (empty($this->group_by) === TRUE) { 374 $count = mysqli_fetch_array($result); 375 return reset($count); 376 } 377 378 return new DatabaseResult($result); 379 } 380
358 //echo '<pre>'.htmlspecialchars($sql, ENT_QUOTES).'</pre>'; 359 //Log::debug($sql); 360 } 361 362 $result = mysqli_query(self::$connections[$this->active_connection]['link'], $sql); 363 364 if ($result === FALSE) { 365 throw new DatabaseException( mysqli_error() . '<br /><code>' . self::highlight_sql($sql) . '</code>', mysqli_errno()); 366 } 367 368 if ($reset === TRUE) { 369 $this->reset(); 370 } 371 372 if ($this->command === 'COUNT') { 373 if (empty($this->group_by) === TRUE) {
Array ( )
421 422 $where = array(array('id', $where)); 423 } 424 425 $this->where = $where; 426 } 427 428 return $this->_query(); 429 } 430 431 432 /** 433 * Výber jedného záznamu 434 * 435 * @param array|string stĺpce na výber, v prípade pomenovania systémom 436 * tabuľka.stĺpec sa automaticky vytvorí JOIN
Array ( )
435 * @param array|string stĺpce na výber, v prípade pomenovania systémom 436 * tabuľka.stĺpec sa automaticky vytvorí JOIN 437 * @return array dáta záznamu 438 */ 439 public function get_row($columns = '*', $where = NULL) 440 { 441 $this->limit(1); 442 $result = $this->get_rows($columns, $where); 443 444 if ($result === FALSE) { 445 return FALSE; 446 } 447 448 return $result->fetch(); 449 } 450
Array ( [0] => Array ( [0] => pages.id as id [1] => template [2] => system_name [3] => default [4] => show [5] => order [6] => pages_contents.id as content_id [7] => pages_contents.language as language [8] => pages_contents.uri as uri [9] => pages_contents.title as title [10] => pages_contents.content as content ) [1] => NULL )
46 47 } elseif (is_array($uri) === TRUE) { 48 $this->db->where($uri[0], $uri[1]); 49 50 } else { 51 $this->db->where('uri', $uri); 52 } 53 $this->data = $this->db->get_row($this->fields); 54 55 if ($this->data == FALSE) { 56 return FALSE; 57 } 58 59 return $this; 60 } 61
Array ( [0] => Array ( [0] => pages.id as id [1] => template [2] => system_name [3] => default [4] => show [5] => order [6] => pages_contents.id as content_id [7] => pages_contents.language as language [8] => pages_contents.uri as uri [9] => pages_contents.title as title [10] => pages_contents.content as content ) )
26 $this->app->response->redirect($uri); 27 } 28 29 30 public function show($language, $page_uri) 31 { 32 $page = new PageModel($this->app); 33 if ($page->get($language, $page_uri) === FALSE) { 34 $this->app->not_found(); 35 } 36 37 $content_file = WWW_DIR.'/files/pages/'.$language.'/'.$page['uri'].'.texy'; 38 if (file_exists($content_file) === true) { 39 $page['content'] = file_get_contents($content_file); 40 } 41
Array ( [0] => sk [1] => uvodà )
180 181 $this->hooks(Arrays::get_value($this->settings, array('system', 'hooks', 'controller', 'run', 'before'))); 182 183 if (method_exists($this->controller, '_before') === TRUE) { 184 call_user_func_array(array($this->controller, '_before'), $this->arguments); 185 } 186 187 call_user_func_array(array($this->controller, $this->action_name), $this->arguments); 188 189 if (method_exists($this->controller, '_after') === TRUE) { 190 call_user_func_array(array($this->controller, '_after'), $this->arguments); 191 } 192 193 $this->controller->view->set_data('app', $this); 194 195 $flash = array_merge($this->flash['prev'], $this->flash['current']);
Array ( [0] => Array ( [0] => PageController Object ( [view] => Template Object ( [data:protected] => Array ( [assets] => Html Object ( [name:Html:private] => [is_empty:Html:private] => [attributes] => Array ( ) [children:Html:private] => Array ( [0] => Html Object ( [name:Html:private] => link [is_empty:Html:private] => 1 [attributes] => Array ( [rel] => stylesheet [type] => text/css [href] => https://www.iplikator.eu/assets/css/f2fcdd9921291bc05b3d65490c1119d5 [charset] => UTF-8 [media] => screen ) [children:Html:private] => Array ( ) [parent:Html:private] => Html Object *RECURSION* ) ) [parent:Html:private] => ) ) [templates_dir:protected] => /home/iplikatore/domains/iplikator.eu/public_html/../app/Templates [extension:protected] => html [template:protected] => /home/iplikatore/domains/iplikator.eu/public_html/../app/Templates/Default.html [blocks:protected] => Array ( ) [macros:protected] => Array ( [% ] => Array ( [0] => Languages Object ( [app:Languages:private] => Onion Object ( [flash:Onion:private] => Array ( [prev] => Array ( ) [next] => Array ( ) [current] => Array ( ) ) [routes:Onion:private] => Array ( [default] => Array ( [uri] => / [name] => default [controller] => Page [action] => redirect_to_default [uri_template] => /language/page_uri [method] => Array ( [0] => GET [1] => POST [2] => CLI ) ) [languageDefault] => Array ( [uri] => /(sk|en|ru|hu|it|fr|de|es) [name] => languageDefault [controller] => Page [action] => redirect_to_default [uri_template] => /language/page_uri [method] => Array ( [0] => GET [1] => POST [2] => CLI ) ) [add-to-cart] => Array ( [uri] => /(sk|en|ru|hu|it|fr|de|es)/cart/add/[a-zA-Z0-9\ \-\,]+ [name] => add-to-cart [controller] => Cart [action] => add [uri_template] => /language/#/#/product [method] => Array ( [0] => GET [1] => POST [2] => CLI ) ) [edit-cart] => Array ( [uri] => /(sk|en|ru|hu|it|fr|de|es)/cart/edit [name] => edit-cart [controller] => Cart [action] => edit [uri_template] => /language/#/# [method] => Array ( [0] => GET [1] => POST [2] => CLI ) ) [gpwebpay-response] => Array ( [uri] => /(sk|en|ru|hu|it|fr|de|es)/gpwebpay [name] => gpwebpay-response [controller] => Order [action] => gpwebpay_response [uri_template] => /language/# [method] => Array ( [0] => GET [1] => POST [2] => CLI ) ) [page] => Array ( [uri] => /(sk|en|ru|hu|it|fr|de|es)/.+ [name] => page [controller] => Page [action] => show [uri_template] => /language/page_uri [method] => Array ( [0] => GET [1] => POST [2] => CLI ) ) [assets] => Array ( [uri] => /assets/(js|css)/(.+) [name] => assets [controller] => Assets [action] => send [uri_template] => /#/type/name [method] => Array ( [0] => GET [1] => POST [2] => CLI ) ) ) [route:Onion:private] => Array ( [uri] => /(sk|en|ru|hu|it|fr|de|es)/.+ [name] => page [controller] => Page [action] => show [uri_template] => /language/page_uri [method] => Array ( [0] => GET [1] => POST [2] => CLI ) ) [request:Onion:private] => Request Object ( [scheme:Request:private] => https [method:Request:private] => get [host:Request:private] => www.iplikator.eu [subdomain:Request:private] => [base_domain:Request:private] => [root:Request:private] => [base_uri:Request:private] => https://www.iplikator.eu [base_domain_uri:Request:private] => [uri:Request:private] => [resource:Request:private] => /sk/uvodà [resource_array:Request:private] => [ajax:Request:private] => [post:Request:private] => [get:Request:private] => Array ( ) [cookie:Request:private] => [server:Request:private] => Array ( [PATH] => /usr/local/bin:/usr/bin:/bin [TEMP] => /tmp [TMP] => /tmp [TMPDIR] => /tmp [PWD] => / [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 [HTTP_ACCEPT_ENCODING] => gzip, deflate, br [HTTP_CONNECTION] => keep-alive [CONTENT_LENGTH] => 0 [HTTP_HOST] => www.iplikator.eu [HTTP_USER_AGENT] => Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.5938.92 Safari/537.36 [HTTP_SEC_CH_UA] => "Google Chrome";v="117", " Not;A Brand";v="99", "Chromium";v="117" [HTTP_SEC_CH_UA_MOBILE] => ?0 [HTTP_SEC_CH_UA_PLATFORM] => "Windows" [HTTP_SEC_FETCH_DEST] => document [HTTP_SEC_FETCH_MODE] => navigate [HTTP_SEC_FETCH_SITE] => none [HTTP_SEC_FETCH_USER] => ?1 [HTTP_UPGRADE_INSECURE_REQUESTS] => 1 [REDIRECT_UNIQUE_ID] => Z4UBqS683SBZFYd7MMI94AAAAFM [REDIRECT_HTTPS] => on [REDIRECT_SSL_TLS_SNI] => www.iplikator.eu [REDIRECT_STATUS] => 200 [UNIQUE_ID] => Z4UBqS683SBZFYd7MMI94AAAAFM [HTTPS] => on [SSL_TLS_SNI] => www.iplikator.eu [SERVER_SIGNATURE] => [SERVER_SOFTWARE] => Apache/2 [SERVER_NAME] => www.iplikator.eu [SERVER_ADDR] => 91.223.69.7 [SERVER_PORT] => 443 [REMOTE_ADDR] => 146.112.163.40 [DOCUMENT_ROOT] => /home/iplikatore/domains/iplikator.eu/private_html [REQUEST_SCHEME] => https [CONTEXT_PREFIX] => [CONTEXT_DOCUMENT_ROOT] => /home/iplikatore/domains/iplikator.eu/private_html [SERVER_ADMIN] => webmaster@iplikator.eu [SCRIPT_FILENAME] => /home/iplikatore/domains/iplikator.eu/private_html/index.php [REMOTE_PORT] => 31710 [REDIRECT_URL] => /sk/uvodà [SERVER_PROTOCOL] => HTTP/1.1 [REQUEST_METHOD] => GET [QUERY_STRING] => [REQUEST_URI] => /sk/uvod%C3%83%C2%82 [SCRIPT_NAME] => /index.php [PHP_SELF] => /index.php [REQUEST_TIME_FLOAT] => 1736769962.049 [REQUEST_TIME] => 1736769962 ) [files:Request:private] => [referer:Request:private] => [anchor:Request:private] => ) [response:Onion:private] => Response Object ( [app:Response:private] => Onion Object *RECURSION* [status_code] => 200 [headers:Response:private] => Array ( [X-Powered-By] => OnionFramework [Content-Type] => text/html; charset=utf-8 ) [body:Response:private] => [encoding] => gzip [status_messages:Response:private] => Array ( [100] => 100 Continue [101] => 101 Switching Protocols [200] => 200 OK [201] => 201 Created [202] => 202 Accepted [203] => 203 Non-Authoritative Information [204] => 204 No Content [205] => 205 Reset Content [206] => 206 Partial Content [300] => 300 Multiple Choices [301] => 301 Moved Permanently [302] => 302 Found [303] => 303 See Other [304] => 304 Not Modified [305] => 305 Use Proxy [306] => 306 (Unused) [307] => 307 Temporary Redirect [400] => 400 Bad Request [401] => 401 Unauthorized [402] => 402 Payment Required [403] => 403 Forbidden [404] => 404 Not Found [405] => 405 Method Not Allowed [406] => 406 Not Acceptable [407] => 407 Proxy Authentication Required [408] => 408 Request Timeout [409] => 409 Conflict [410] => 410 Gone [411] => 411 Length Required [412] => 412 Precondition Failed [413] => 413 Request Entity Too Large [414] => 414 Request-URI Too Long [415] => 415 Unsupported Media Type [416] => 416 Requested Range Not Satisfiable [417] => 417 Expectation Failed [500] => 500 Internal Server Error [501] => 501 Not Implemented [502] => 502 Bad Gateway [503] => 503 Service Unavailable [504] => 504 Gateway Timeout [505] => 505 HTTP Version Not Supported ) [public_cache] => [cache_lifetime] => 0 ) [controller_name] => PageController [action_name] => show [controller:Onion:private] => PageController Object *RECURSION* [settings:Onion:private] => Array ( [system] => Array ( [timezone] => Europe/Bratislava [cache] => Array ( [http] => Array ( [lifetime] => 0 [public] => ) ) [cookie] => Array ( [domain] => www.iplikator.eu [path] => ) [session] => Array ( [lifetime] => 14400 [name] => onion ) [auth] => Array ( [cookie_name] => onion_autologin [cookie_lifetime] => 31536000 [login] => Array ( [0] => Login [1] => form ) [cookie_domain] => www.iplikator.eu [cookie_path] => / [master_key] => bvnbv5drty87g8h79rt87c6fvgfh79t8y7rtv65bhdf98g7d ) [dev_ip] => Array ( [0] => 88.212.45.6 ) [hooks] => Array ( [controller] => Array ( [run] => Array ( [before] => Array ( [0] => Array ( [0] => Languages [1] => init ) ) ) ) ) [multi_domain] => [error_handler] => Array ( [0] => Error [1] => core_error ) [dev_mail] => jangaspar@webstranky.net ) [languages] => Array ( [0] => sk [1] => en [2] => ru [3] => hu [4] => it [5] => fr [6] => de [7] => es ) [db] => Array ( [host] => localhost [user] => iplikatore_web [password] => NlevCfN6 [database] => iplikatore_web [prefix] => ) [ftp] => Array ( [host] => localhost [user] => iplikatore [password] => AKJ7dUio [root] => /public_html ) [emails] => Array ( [0] => jangaspar@webstranky.net ) [no_oline_payment] => Array ( [0] => 56 [1] => 191 ) [postages] => Array ( [1] => 14 [2] => 17 ) [notification_emails] => Array ( [0] => iplikator@iplikator.eu ) [payment] => Array ( [test] => Array ( [url] => https://test.3dsecure.gpwebpay.com/pgw/order.do [merchantnumber] => 3054939 [private_key] => iplikator.pem [public_key] => muzo.signing_test.pem [password] => 9muoNS# ) [prod] => Array ( [url] => https://3dsecure.gpwebpay.com/pgw/order.do [merchantnumber] => 3054939 [private_key] => iplikator.pem [public_key] => muzo.signing_prod.pem [password] => 9muoNS# ) [environment] => prod ) ) [arguments:Onion:private] => Array ( [language] => sk [page_uri] => uvodà ) [user:Onion:private] => User Object ( [app:User:private] => Onion Object *RECURSION* [db:User:private] => Database Object ( [table] => users [prefix:Database:private] => [joins:Database:private] => Array ( ) [current_table_relations:Database:private] => Array ( ) [current_table_columns:Database:private] => Array ( ) [command] => SELECT [where] => Array ( ) [order] => Array ( ) [limit] => Array ( ) [active_connection:Database:private] => default [columns] => * [distinct] => [update_on_duplicate] => [data] => Array ( ) [values] => Array ( ) [group_by] => [fields] => * ) [storage:User:private] => Array ( ) [permissions:User:private] => Array ( ) [old_permissions:User:private] => Array ( ) [roles:User:private] => Array ( ) [old_roles:User:private] => Array ( ) [is_logged_in] => ) [not_found:Onion:private] => ) ) [1] => translate ) ) [filters:protected] => Array ( ) ) [app:protected] => Onion Object ( [flash:Onion:private] => Array ( [prev] => Array ( ) [next] => Array ( ) [current] => Array ( ) ) [routes:Onion:private] => Array ( [default] => Array ( [uri] => / [name] => default [controller] => Page [action] => redirect_to_default [uri_template] => /language/page_uri [method] => Array ( [0] => GET [1] => POST [2] => CLI ) ) [languageDefault] => Array ( [uri] => /(sk|en|ru|hu|it|fr|de|es) [name] => languageDefault [controller] => Page [action] => redirect_to_default [uri_template] => /language/page_uri [method] => Array ( [0] => GET [1] => POST [2] => CLI ) ) [add-to-cart] => Array ( [uri] => /(sk|en|ru|hu|it|fr|de|es)/cart/add/[a-zA-Z0-9\ \-\,]+ [name] => add-to-cart [controller] => Cart [action] => add [uri_template] => /language/#/#/product [method] => Array ( [0] => GET [1] => POST [2] => CLI ) ) [edit-cart] => Array ( [uri] => /(sk|en|ru|hu|it|fr|de|es)/cart/edit [name] => edit-cart [controller] => Cart [action] => edit [uri_template] => /language/#/# [method] => Array ( [0] => GET [1] => POST [2] => CLI ) ) [gpwebpay-response] => Array ( [uri] => /(sk|en|ru|hu|it|fr|de|es)/gpwebpay [name] => gpwebpay-response [controller] => Order [action] => gpwebpay_response [uri_template] => /language/# [method] => Array ( [0] => GET [1] => POST [2] => CLI ) ) [page] => Array ( [uri] => /(sk|en|ru|hu|it|fr|de|es)/.+ [name] => page [controller] => Page [action] => show [uri_template] => /language/page_uri [method] => Array ( [0] => GET [1] => POST [2] => CLI ) ) [assets] => Array ( [uri] => /assets/(js|css)/(.+) [name] => assets [controller] => Assets [action] => send [uri_template] => /#/type/name [method] => Array ( [0] => GET [1] => POST [2] => CLI ) ) ) [route:Onion:private] => Array ( [uri] => /(sk|en|ru|hu|it|fr|de|es)/.+ [name] => page [controller] => Page [action] => show [uri_template] => /language/page_uri [method] => Array ( [0] => GET [1] => POST [2] => CLI ) ) [request:Onion:private] => Request Object ( [scheme:Request:private] => https [method:Request:private] => get [host:Request:private] => www.iplikator.eu [subdomain:Request:private] => [base_domain:Request:private] => [root:Request:private] => [base_uri:Request:private] => https://www.iplikator.eu [base_domain_uri:Request:private] => [uri:Request:private] => [resource:Request:private] => /sk/uvodà [resource_array:Request:private] => [ajax:Request:private] => [post:Request:private] => [get:Request:private] => Array ( ) [cookie:Request:private] => [server:Request:private] => Array ( [PATH] => /usr/local/bin:/usr/bin:/bin [TEMP] => /tmp [TMP] => /tmp [TMPDIR] => /tmp [PWD] => / [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 [HTTP_ACCEPT_ENCODING] => gzip, deflate, br [HTTP_CONNECTION] => keep-alive [CONTENT_LENGTH] => 0 [HTTP_HOST] => www.iplikator.eu [HTTP_USER_AGENT] => Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.5938.92 Safari/537.36 [HTTP_SEC_CH_UA] => "Google Chrome";v="117", " Not;A Brand";v="99", "Chromium";v="117" [HTTP_SEC_CH_UA_MOBILE] => ?0 [HTTP_SEC_CH_UA_PLATFORM] => "Windows" [HTTP_SEC_FETCH_DEST] => document [HTTP_SEC_FETCH_MODE] => navigate [HTTP_SEC_FETCH_SITE] => none [HTTP_SEC_FETCH_USER] => ?1 [HTTP_UPGRADE_INSECURE_REQUESTS] => 1 [REDIRECT_UNIQUE_ID] => Z4UBqS683SBZFYd7MMI94AAAAFM [REDIRECT_HTTPS] => on [REDIRECT_SSL_TLS_SNI] => www.iplikator.eu [REDIRECT_STATUS] => 200 [UNIQUE_ID] => Z4UBqS683SBZFYd7MMI94AAAAFM [HTTPS] => on [SSL_TLS_SNI] => www.iplikator.eu [SERVER_SIGNATURE] => [SERVER_SOFTWARE] => Apache/2 [SERVER_NAME] => www.iplikator.eu [SERVER_ADDR] => 91.223.69.7 [SERVER_PORT] => 443 [REMOTE_ADDR] => 146.112.163.40 [DOCUMENT_ROOT] => /home/iplikatore/domains/iplikator.eu/private_html [REQUEST_SCHEME] => https [CONTEXT_PREFIX] => [CONTEXT_DOCUMENT_ROOT] => /home/iplikatore/domains/iplikator.eu/private_html [SERVER_ADMIN] => webmaster@iplikator.eu [SCRIPT_FILENAME] => /home/iplikatore/domains/iplikator.eu/private_html/index.php [REMOTE_PORT] => 31710 [REDIRECT_URL] => /sk/uvodà [SERVER_PROTOCOL] => HTTP/1.1 [REQUEST_METHOD] => GET [QUERY_STRING] => [REQUEST_URI] => /sk/uvod%C3%83%C2%82 [SCRIPT_NAME] => /index.php [PHP_SELF] => /index.php [REQUEST_TIME_FLOAT] => 1736769962.049 [REQUEST_TIME] => 1736769962 ) [files:Request:private] => [referer:Request:private] => [anchor:Request:private] => ) [response:Onion:private] => Response Object ( [app:Response:private] => Onion Object *RECURSION* [status_code] => 200 [headers:Response:private] => Array ( [X-Powered-By] => OnionFramework [Content-Type] => text/html; charset=utf-8 ) [body:Response:private] => [encoding] => gzip [status_messages:Response:private] => Array ( [100] => 100 Continue [101] => 101 Switching Protocols [200] => 200 OK [201] => 201 Created [202] => 202 Accepted [203] => 203 Non-Authoritative Information [204] => 204 No Content [205] => 205 Reset Content [206] => 206 Partial Content [300] => 300 Multiple Choices [301] => 301 Moved Permanently [302] => 302 Found [303] => 303 See Other [304] => 304 Not Modified [305] => 305 Use Proxy [306] => 306 (Unused) [307] => 307 Temporary Redirect [400] => 400 Bad Request [401] => 401 Unauthorized [402] => 402 Payment Required [403] => 403 Forbidden [404] => 404 Not Found [405] => 405 Method Not Allowed [406] => 406 Not Acceptable [407] => 407 Proxy Authentication Required [408] => 408 Request Timeout [409] => 409 Conflict [410] => 410 Gone [411] => 411 Length Required [412] => 412 Precondition Failed [413] => 413 Request Entity Too Large [414] => 414 Request-URI Too Long [415] => 415 Unsupported Media Type [416] => 416 Requested Range Not Satisfiable [417] => 417 Expectation Failed [500] => 500 Internal Server Error [501] => 501 Not Implemented [502] => 502 Bad Gateway [503] => 503 Service Unavailable [504] => 504 Gateway Timeout [505] => 505 HTTP Version Not Supported ) [public_cache] => [cache_lifetime] => 0 ) [controller_name] => PageController [action_name] => show [controller:Onion:private] => PageController Object *RECURSION* [settings:Onion:private] => Array ( [system] => Array ( [timezone] => Europe/Bratislava [cache] => Array ( [http] => Array ( [lifetime] => 0 [public] => ) ) [cookie] => Array ( [domain] => www.iplikator.eu [path] => ) [session] => Array ( [lifetime] => 14400 [name] => onion ) [auth] => Array ( [cookie_name] => onion_autologin [cookie_lifetime] => 31536000 [login] => Array ( [0] => Login [1] => form ) [cookie_domain] => www.iplikator.eu [cookie_path] => / [master_key] => bvnbv5drty87g8h79rt87c6fvgfh79t8y7rtv65bhdf98g7d ) [dev_ip] => Array ( [0] => 88.212.45.6 ) [hooks] => Array ( [controller] => Array ( [run] => Array ( [before] => Array ( [0] => Array ( [0] => Languages [1] => init ) ) ) ) ) [multi_domain] => [error_handler] => Array ( [0] => Error [1] => core_error ) [dev_mail] => jangaspar@webstranky.net ) [languages] => Array ( [0] => sk [1] => en [2] => ru [3] => hu [4] => it [5] => fr [6] => de [7] => es ) [db] => Array ( [host] => localhost [user] => iplikatore_web [password] => NlevCfN6 [database] => iplikatore_web [prefix] => ) [ftp] => Array ( [host] => localhost [user] => iplikatore [password] => AKJ7dUio [root] => /public_html ) [emails] => Array ( [0] => jangaspar@webstranky.net ) [no_oline_payment] => Array ( [0] => 56 [1] => 191 ) [postages] => Array ( [1] => 14 [2] => 17 ) [notification_emails] => Array ( [0] => iplikator@iplikator.eu ) [payment] => Array ( [test] => Array ( [url] => https://test.3dsecure.gpwebpay.com/pgw/order.do [merchantnumber] => 3054939 [private_key] => iplikator.pem [public_key] => muzo.signing_test.pem [password] => 9muoNS# ) [prod] => Array ( [url] => https://3dsecure.gpwebpay.com/pgw/order.do [merchantnumber] => 3054939 [private_key] => iplikator.pem [public_key] => muzo.signing_prod.pem [password] => 9muoNS# ) [environment] => prod ) ) [arguments:Onion:private] => Array ( [language] => sk [page_uri] => uvodà ) [user:Onion:private] => User Object ( [app:User:private] => Onion Object *RECURSION* [db:User:private] => Database Object ( [table] => users [prefix:Database:private] => [joins:Database:private] => Array ( ) [current_table_relations:Database:private] => Array ( ) [current_table_columns:Database:private] => Array ( ) [command] => SELECT [where] => Array ( ) [order] => Array ( ) [limit] => Array ( ) [active_connection:Database:private] => default [columns] => * [distinct] => [update_on_duplicate] => [data] => Array ( ) [values] => Array ( ) [group_by] => [fields] => * ) [storage:User:private] => Array ( ) [permissions:User:private] => Array ( ) [old_permissions:User:private] => Array ( ) [roles:User:private] => Array ( ) [old_roles:User:private] => Array ( ) [is_logged_in] => ) [not_found:Onion:private] => ) [format] => Format Object ( [app:Format:private] => Onion Object ( [flash:Onion:private] => Array ( [prev] => Array ( ) [next] => Array ( ) [current] => Array ( ) ) [routes:Onion:private] => Array ( [default] => Array ( [uri] => / [name] => default [controller] => Page [action] => redirect_to_default [uri_template] => /language/page_uri [method] => Array ( [0] => GET [1] => POST [2] => CLI ) ) [languageDefault] => Array ( [uri] => /(sk|en|ru|hu|it|fr|de|es) [name] => languageDefault [controller] => Page [action] => redirect_to_default [uri_template] => /language/page_uri [method] => Array ( [0] => GET [1] => POST [2] => CLI ) ) [add-to-cart] => Array ( [uri] => /(sk|en|ru|hu|it|fr|de|es)/cart/add/[a-zA-Z0-9\ \-\,]+ [name] => add-to-cart [controller] => Cart [action] => add [uri_template] => /language/#/#/product [method] => Array ( [0] => GET [1] => POST [2] => CLI ) ) [edit-cart] => Array ( [uri] => /(sk|en|ru|hu|it|fr|de|es)/cart/edit [name] => edit-cart [controller] => Cart [action] => edit [uri_template] => /language/#/# [method] => Array ( [0] => GET [1] => POST [2] => CLI ) ) [gpwebpay-response] => Array ( [uri] => /(sk|en|ru|hu|it|fr|de|es)/gpwebpay [name] => gpwebpay-response [controller] => Order [action] => gpwebpay_response [uri_template] => /language/# [method] => Array ( [0] => GET [1] => POST [2] => CLI ) ) [page] => Array ( [uri] => /(sk|en|ru|hu|it|fr|de|es)/.+ [name] => page [controller] => Page [action] => show [uri_template] => /language/page_uri [method] => Array ( [0] => GET [1] => POST [2] => CLI ) ) [assets] => Array ( [uri] => /assets/(js|css)/(.+) [name] => assets [controller] => Assets [action] => send [uri_template] => /#/type/name [method] => Array ( [0] => GET [1] => POST [2] => CLI ) ) ) [route:Onion:private] => Array ( [uri] => /(sk|en|ru|hu|it|fr|de|es)/.+ [name] => page [controller] => Page [action] => show [uri_template] => /language/page_uri [method] => Array ( [0] => GET [1] => POST [2] => CLI ) ) [request:Onion:private] => Request Object ( [scheme:Request:private] => https [method:Request:private] => get [host:Request:private] => www.iplikator.eu [subdomain:Request:private] => [base_domain:Request:private] => [root:Request:private] => [base_uri:Request:private] => https://www.iplikator.eu [base_domain_uri:Request:private] => [uri:Request:private] => [resource:Request:private] => /sk/uvodà [resource_array:Request:private] => [ajax:Request:private] => [post:Request:private] => [get:Request:private] => Array ( ) [cookie:Request:private] => [server:Request:private] => Array ( [PATH] => /usr/local/bin:/usr/bin:/bin [TEMP] => /tmp [TMP] => /tmp [TMPDIR] => /tmp [PWD] => / [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 [HTTP_ACCEPT_ENCODING] => gzip, deflate, br [HTTP_CONNECTION] => keep-alive [CONTENT_LENGTH] => 0 [HTTP_HOST] => www.iplikator.eu [HTTP_USER_AGENT] => Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.5938.92 Safari/537.36 [HTTP_SEC_CH_UA] => "Google Chrome";v="117", " Not;A Brand";v="99", "Chromium";v="117" [HTTP_SEC_CH_UA_MOBILE] => ?0 [HTTP_SEC_CH_UA_PLATFORM] => "Windows" [HTTP_SEC_FETCH_DEST] => document [HTTP_SEC_FETCH_MODE] => navigate [HTTP_SEC_FETCH_SITE] => none [HTTP_SEC_FETCH_USER] => ?1 [HTTP_UPGRADE_INSECURE_REQUESTS] => 1 [REDIRECT_UNIQUE_ID] => Z4UBqS683SBZFYd7MMI94AAAAFM [REDIRECT_HTTPS] => on [REDIRECT_SSL_TLS_SNI] => www.iplikator.eu [REDIRECT_STATUS] => 200 [UNIQUE_ID] => Z4UBqS683SBZFYd7MMI94AAAAFM [HTTPS] => on [SSL_TLS_SNI] => www.iplikator.eu [SERVER_SIGNATURE] => [SERVER_SOFTWARE] => Apache/2 [SERVER_NAME] => www.iplikator.eu [SERVER_ADDR] => 91.223.69.7 [SERVER_PORT] => 443 [REMOTE_ADDR] => 146.112.163.40 [DOCUMENT_ROOT] => /home/iplikatore/domains/iplikator.eu/private_html [REQUEST_SCHEME] => https [CONTEXT_PREFIX] => [CONTEXT_DOCUMENT_ROOT] => /home/iplikatore/domains/iplikator.eu/private_html [SERVER_ADMIN] => webmaster@iplikator.eu [SCRIPT_FILENAME] => /home/iplikatore/domains/iplikator.eu/private_html/index.php [REMOTE_PORT] => 31710 [REDIRECT_URL] => /sk/uvodà [SERVER_PROTOCOL] => HTTP/1.1 [REQUEST_METHOD] => GET [QUERY_STRING] => [REQUEST_URI] => /sk/uvod%C3%83%C2%82 [SCRIPT_NAME] => /index.php [PHP_SELF] => /index.php [REQUEST_TIME_FLOAT] => 1736769962.049 [REQUEST_TIME] => 1736769962 ) [files:Request:private] => [referer:Request:private] => [anchor:Request:private] => ) [response:Onion:private] => Response Object ( [app:Response:private] => Onion Object *RECURSION* [status_code] => 200 [headers:Response:private] => Array ( [X-Powered-By] => OnionFramework [Content-Type] => text/html; charset=utf-8 ) [body:Response:private] => [encoding] => gzip [status_messages:Response:private] => Array ( [100] => 100 Continue [101] => 101 Switching Protocols [200] => 200 OK [201] => 201 Created [202] => 202 Accepted [203] => 203 Non-Authoritative Information [204] => 204 No Content [205] => 205 Reset Content [206] => 206 Partial Content [300] => 300 Multiple Choices [301] => 301 Moved Permanently [302] => 302 Found [303] => 303 See Other [304] => 304 Not Modified [305] => 305 Use Proxy [306] => 306 (Unused) [307] => 307 Temporary Redirect [400] => 400 Bad Request [401] => 401 Unauthorized [402] => 402 Payment Required [403] => 403 Forbidden [404] => 404 Not Found [405] => 405 Method Not Allowed [406] => 406 Not Acceptable [407] => 407 Proxy Authentication Required [408] => 408 Request Timeout [409] => 409 Conflict [410] => 410 Gone [411] => 411 Length Required [412] => 412 Precondition Failed [413] => 413 Request Entity Too Large [414] => 414 Request-URI Too Long [415] => 415 Unsupported Media Type [416] => 416 Requested Range Not Satisfiable [417] => 417 Expectation Failed [500] => 500 Internal Server Error [501] => 501 Not Implemented [502] => 502 Bad Gateway [503] => 503 Service Unavailable [504] => 504 Gateway Timeout [505] => 505 HTTP Version Not Supported ) [public_cache] => [cache_lifetime] => 0 ) [controller_name] => PageController [action_name] => show [controller:Onion:private] => PageController Object *RECURSION* [settings:Onion:private] => Array ( [system] => Array ( [timezone] => Europe/Bratislava [cache] => Array ( [http] => Array ( [lifetime] => 0 [public] => ) ) [cookie] => Array ( [domain] => www.iplikator.eu [path] => ) [session] => Array ( [lifetime] => 14400 [name] => onion ) [auth] => Array ( [cookie_name] => onion_autologin [cookie_lifetime] => 31536000 [login] => Array ( [0] => Login [1] => form ) [cookie_domain] => www.iplikator.eu [cookie_path] => / [master_key] => bvnbv5drty87g8h79rt87c6fvgfh79t8y7rtv65bhdf98g7d ) [dev_ip] => Array ( [0] => 88.212.45.6 ) [hooks] => Array ( [controller] => Array ( [run] => Array ( [before] => Array ( [0] => Array ( [0] => Languages [1] => init ) ) ) ) ) [multi_domain] => [error_handler] => Array ( [0] => Error [1] => core_error ) [dev_mail] => jangaspar@webstranky.net ) [languages] => Array ( [0] => sk [1] => en [2] => ru [3] => hu [4] => it [5] => fr [6] => de [7] => es ) [db] => Array ( [host] => localhost [user] => iplikatore_web [password] => NlevCfN6 [database] => iplikatore_web [prefix] => ) [ftp] => Array ( [host] => localhost [user] => iplikatore [password] => AKJ7dUio [root] => /public_html ) [emails] => Array ( [0] => jangaspar@webstranky.net ) [no_oline_payment] => Array ( [0] => 56 [1] => 191 ) [postages] => Array ( [1] => 14 [2] => 17 ) [notification_emails] => Array ( [0] => iplikator@iplikator.eu ) [payment] => Array ( [test] => Array ( [url] => https://test.3dsecure.gpwebpay.com/pgw/order.do [merchantnumber] => 3054939 [private_key] => iplikator.pem [public_key] => muzo.signing_test.pem [password] => 9muoNS# ) [prod] => Array ( [url] => https://3dsecure.gpwebpay.com/pgw/order.do [merchantnumber] => 3054939 [private_key] => iplikator.pem [public_key] => muzo.signing_prod.pem [password] => 9muoNS# ) [environment] => prod ) ) [arguments:Onion:private] => Array ( [language] => sk [page_uri] => uvodà ) [user:Onion:private] => User Object ( [app:User:private] => Onion Object *RECURSION* [db:User:private] => Database Object ( [table] => users [prefix:Database:private] => [joins:Database:private] => Array ( ) [current_table_relations:Database:private] => Array ( ) [current_table_columns:Database:private] => Array ( ) [command] => SELECT [where] => Array ( ) [order] => Array ( ) [limit] => Array ( ) [active_connection:Database:private] => default [columns] => * [distinct] => [update_on_duplicate] => [data] => Array ( ) [values] => Array ( ) [group_by] => [fields] => * ) [storage:User:private] => Array ( ) [permissions:User:private] => Array ( ) [old_permissions:User:private] => Array ( ) [roles:User:private] => Array ( ) [old_roles:User:private] => Array ( ) [is_logged_in] => ) [not_found:Onion:private] => ) ) ) [1] => show ) [1] => Array ( [language] => sk [page_uri] => uvodà ) )
133 'name' => 'page', 134 'controller' => 'Page', 135 'action' => 'show', 136 'uri_template' => '/language/page_uri', 137 )); 138 139 140 $app->run(); 141 exit;
Array ( )
15 // absolute filesystem path to the temporary files 16 define('TEMP_DIR', WWW_DIR . '/../temp'); 17 18 // absolute filesystem path to the temporary files 19 define('CACHE_DIR', TEMP_DIR . '/cache'); 20 21 // load bootstrap file 22 require APP_DIR . '/bootstrap.php';
Array ( [0] => /home/iplikatore/domains/iplikator.eu/app/bootstrap.php )
Array ( [PATH] => /usr/local/bin:/usr/bin:/bin [TEMP] => /tmp [TMP] => /tmp [TMPDIR] => /tmp [PWD] => / [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 [HTTP_ACCEPT_ENCODING] => gzip, deflate, br [HTTP_CONNECTION] => keep-alive [CONTENT_LENGTH] => 0 [HTTP_HOST] => www.iplikator.eu [HTTP_USER_AGENT] => Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.5938.92 Safari/537.36 [HTTP_SEC_CH_UA] => "Google Chrome";v="117", " Not;A Brand";v="99", "Chromium";v="117" [HTTP_SEC_CH_UA_MOBILE] => ?0 [HTTP_SEC_CH_UA_PLATFORM] => "Windows" [HTTP_SEC_FETCH_DEST] => document [HTTP_SEC_FETCH_MODE] => navigate [HTTP_SEC_FETCH_SITE] => none [HTTP_SEC_FETCH_USER] => ?1 [HTTP_UPGRADE_INSECURE_REQUESTS] => 1 [REDIRECT_UNIQUE_ID] => Z4UBqS683SBZFYd7MMI94AAAAFM [REDIRECT_HTTPS] => on [REDIRECT_SSL_TLS_SNI] => www.iplikator.eu [REDIRECT_STATUS] => 200 [UNIQUE_ID] => Z4UBqS683SBZFYd7MMI94AAAAFM [HTTPS] => on [SSL_TLS_SNI] => www.iplikator.eu [SERVER_SIGNATURE] => [SERVER_SOFTWARE] => Apache/2 [SERVER_NAME] => www.iplikator.eu [SERVER_ADDR] => 91.223.69.7 [SERVER_PORT] => 443 [REMOTE_ADDR] => 146.112.163.40 [DOCUMENT_ROOT] => /home/iplikatore/domains/iplikator.eu/private_html [REQUEST_SCHEME] => https [CONTEXT_PREFIX] => [CONTEXT_DOCUMENT_ROOT] => /home/iplikatore/domains/iplikator.eu/private_html [SERVER_ADMIN] => webmaster@iplikator.eu [SCRIPT_FILENAME] => /home/iplikatore/domains/iplikator.eu/private_html/index.php [REMOTE_PORT] => 31710 [REDIRECT_URL] => /sk/uvodà [SERVER_PROTOCOL] => HTTP/1.1 [REQUEST_METHOD] => GET [QUERY_STRING] => [REQUEST_URI] => /sk/uvod%C3%83%C2%82 [SCRIPT_NAME] => /index.php [PHP_SELF] => /index.php [REQUEST_TIME_FLOAT] => 1736769962.049 [REQUEST_TIME] => 1736769962 )