Üdvözöljük a Synergolab
internetes áruházában!
Database_Exception [ 1044 ]:
MODPATH/database/classes/kohana/database/mysql.php [ 108 ]
103 protected function _select_db($database)
104 {
105 if ( ! mysql_select_db($database, $this->_connection))
106 {
107 // Unable to select database
108 throw new Database_Exception(':error',
109 array(':error' => mysql_error($this->_connection)),
110 mysql_errno($this->_connection));
111 }
112
113 Database_MySQL::$_current_databases[$this->_connection_id] = $database;
-
MODPATH/database/classes/kohana/database/mysql.php [ 75 ] » Kohana_Database_MySQL->_select_db(arguments)
0string(17) "synergoh_teszt_v2"70 } 71 72 // \xFF is a better delimiter, but the PHP driver uses underscore 73 $this->_connection_id = sha1($hostname.'_'.$username.'_'.$password); 74 75 $this->_select_db($database); 76 77 if ( ! empty($this->_config['charset'])) 78 { 79 // Set the character set 80 $this->set_charset($this->_config['charset']); -
MODPATH/database/classes/kohana/database/mysql.php [ 171 ] » Kohana_Database_MySQL->connect()
166 } 167 168 public function query($type, $sql, $as_object = FALSE, array $params = NULL) 169 { 170 // Make sure the database is connected 171 $this->_connection or $this->connect(); 172 173 if (Kohana::$profiling) 174 { 175 // Benchmark this query for the current instance 176 $benchmark = Profiler::start("Database ({$this->_instance})", $sql); -
MODPATH/database/classes/kohana/database/mysql.php [ 359 ] » Kohana_Database_MySQL->query(arguments)
0integer 1
1string(33) "SHOW FULL COLUMNS FROM `products`"2bool FALSE
354 $result = $this->query(Database::SELECT, 'SHOW FULL COLUMNS FROM '.$table.' LIKE '.$this->quote($like), FALSE); 355 } 356 else 357 { 358 // Find all column names 359 $result = $this->query(Database::SELECT, 'SHOW FULL COLUMNS FROM '.$table, FALSE); 360 } 361 362 $count = 0; 363 $columns = array(); 364 foreach ($result as $row) -
MODPATH/orm/classes/kohana/orm.php [ 1668 ] » Kohana_Database_MySQL->list_columns(arguments)
0string(8) "products"1663 * @return array 1664 */ 1665 public function list_columns() 1666 { 1667 // Proxy to database 1668 return $this->_db->list_columns($this->_table_name); 1669 } 1670 1671 /** 1672 * Returns an ORM model for the given one-one related alias 1673 * -
MODPATH/orm/classes/kohana/orm.php [ 444 ] » Kohana_ORM->list_columns()
439 $this->_table_columns = ORM::$_column_cache[$this->_object_name]; 440 } 441 else 442 { 443 // Grab column information from database 444 $this->_table_columns = $this->list_columns(); 445 446 // Load column cache 447 ORM::$_column_cache[$this->_object_name] = $this->_table_columns; 448 } 449 } -
MODPATH/orm/classes/kohana/orm.php [ 389 ] » Kohana_ORM->reload_columns()
384 { 385 $this->{$property} = $value; 386 } 387 388 // Load column information 389 $this->reload_columns(); 390 391 // Clear initial model state 392 $this->clear(); 393 } 394 -
APPPATH/classes/orm.php [ 59 ] » Kohana_ORM->_initialize()
54 private $old = array(); 55 private $new = array(); 56 57 public function __construct($id = NULL) 58 { 59 $this->_initialize(); 60 61 if ($id !== NULL) 62 { 63 if (is_array($id)) 64 { -
MODPATH/orm/classes/kohana/orm.php [ 46 ] » ORM->__construct(arguments)
0integer 27
41 public static function factory($model, $id = NULL) 42 { 43 // Set class name 44 $model = 'Model_'.$model; 45 46 return new $model($id); 47 } 48 49 /** 50 * "Has one" relationships 51 * @var array -
MODPATH/frontend/views/site/aruhaz/xynbio.php [ 7 ] » Kohana_ORM::factory(arguments)
0string(7) "product"1integer 27
2 <div class="product product_xynbio"> 3 <!-- <div class="ribbon ribbon-cyan"><div>Ingyenes kiszállítás</div></div> --> 4 <!-- <div class="ribbon ribbon-red">Két havi adag</div> --> 5 6 <div class="priceline"> 7 <?php echo Controller_Site::formatPrice((int) ORM::Factory('product', 27)->getGrossPrice());?> Ft 8 </div> 9 10 <div class="titleline"> 11 <img src="/img/aruhaz/xynbio_box.png" width="55" height="100" alt="<?php echo ORM::Factory('product' , 27)->name; ?>"> 12 <?php echo ORM::Factory('product', 27)->name;?> -
SYSPATH/classes/kohana/view.php [ 61 ] » include(arguments)
0string(85) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/aruhaz/xynbio.php"56 ob_start(); 57 58 try 59 { 60 // Load the view within the current scope 61 include $kohana_view_filename; 62 } 63 catch (Exception $e) 64 { 65 // Delete the output buffer 66 ob_end_clean(); -
SYSPATH/classes/kohana/view.php [ 348 ] » Kohana_View::capture(arguments)
0string(85) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/aruhaz/xynbio.php"1array(2) ( "kohana_view_filename" => string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/aruhaz.php" "kohana_view_data" => array(0) )
343 { 344 throw new View_Exception('You must set the file to use within your view before rendering'); 345 } 346 347 // Combine local and global data and capture the output 348 return View::capture($this->_file, $this->_data); 349 } 350 351 } -
SYSPATH/classes/kohana/view.php [ 228 ] » Kohana_View->render()
223 */ 224 public function __toString() 225 { 226 try 227 { 228 return $this->render(); 229 } 230 catch (Exception $e) 231 { 232 /** 233 * Display the exception message. -
MODPATH/frontend/views/site/aruhaz.php [ 33 ] » Kohana_View->__toString()
28 29 <?php echo View::factory('site/aruhaz/css', get_defined_vars()); ?> 30 31 <div id="product_container" class="grid-100"> 32 <!-- xynbio --> 33 <?php echo View::factory('site/aruhaz/xynbio', get_defined_vars()); ?> 34 35 <!-- mask --> 36 <?php echo View::factory('site/aruhaz/mask', get_defined_vars()); ?> 37 38 <!-- novosseum --> -
SYSPATH/classes/kohana/view.php [ 61 ] » include(arguments)
0string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/aruhaz.php"56 ob_start(); 57 58 try 59 { 60 // Load the view within the current scope 61 include $kohana_view_filename; 62 } 63 catch (Exception $e) 64 { 65 // Delete the output buffer 66 ob_end_clean(); -
SYSPATH/classes/kohana/view.php [ 348 ] » Kohana_View::capture(arguments)
0string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/aruhaz.php"1array(0)343 { 344 throw new View_Exception('You must set the file to use within your view before rendering'); 345 } 346 347 // Combine local and global data and capture the output 348 return View::capture($this->_file, $this->_data); 349 } 350 351 } -
SYSPATH/classes/kohana/view.php [ 228 ] » Kohana_View->render()
223 */ 224 public function __toString() 225 { 226 try 227 { 228 return $this->render(); 229 } 230 catch (Exception $e) 231 { 232 /** 233 * Display the exception message. -
MODPATH/frontend/views/site/layout.php [ 238 ] » Kohana_View->__toString()
233 <?php endif; ?> 234 </div><!-- header --> 235 236 <div id="content"> 237 238 <?php echo @$content; ?> 239 240 </div><!-- content --> 241 242 <div class="clear"></div> 243 -
SYSPATH/classes/kohana/view.php [ 61 ] » include(arguments)
0string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/layout.php"56 ob_start(); 57 58 try 59 { 60 // Load the view within the current scope 61 include $kohana_view_filename; 62 } 63 catch (Exception $e) 64 { 65 // Delete the output buffer 66 ob_end_clean(); -
SYSPATH/classes/kohana/view.php [ 348 ] » Kohana_View::capture(arguments)
0string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/layout.php"1array(4) ( "user" => bool FALSE "cartnum" => integer 0 "bodyclass" => string(7) "webshop" "content" => object View(2)
{ protected _file => string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/aruhaz.php" protected _data => array(0) })343 { 344 throw new View_Exception('You must set the file to use within your view before rendering'); 345 } 346 347 // Combine local and global data and capture the output 348 return View::capture($this->_file, $this->_data); 349 } 350 351 } -
SYSPATH/classes/kohana/controller/template.php [ 44 ] » Kohana_View->render()
39 */ 40 public function after() 41 { 42 if ($this->auto_render === TRUE) 43 { 44 $this->response->body($this->template->render()); 45 } 46 47 parent::after(); 48 } 49 -
SYSPATH/classes/kohana/controller.php [ 87 ] » Kohana_Controller_Template->after()
82 83 // Execute the action itself 84 $this->{$action}(); 85 86 // Execute the "after action" method 87 $this->after(); 88 89 // Return the response 90 return $this->response; 91 } 92 -
{PHP internal call} » Kohana_Controller->execute()
-
SYSPATH/classes/kohana/request/client/internal.php [ 97 ] » ReflectionMethod->invoke(arguments)
0object Controller_Site(4)
{ public template => object View(2){ protected _file => string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/layout.php" protected _data => array(4) ( "user" => bool FALSE "cartnum" => integer 0 "bodyclass" => string(7) "webshop" "content" => object View(2)public auto_render => bool TRUE public request => object Request(19){ protected _file => string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/aruhaz.php" protected _data => array(0) }) }{ protected _requested_with => NULL protected _method => string(3) "GET" protected _protocol => string(8) "HTTP/1.1" protected _secure => bool TRUE protected _referrer => NULL protected _route => object Route(5)public response => object Response(5){ protected _filters => array(0) protected _uri => string(6) "aruhaz" protected _regex => array(0) protected _defaults => array(2) ( "controller" => string(4) "site" "action" => string(6) "aruhaz" ) protected _route_regex => string(12) "#^aruhaz$#uD" }protected _routes => array(0) protected _header => object HTTP_Header(0){ }protected _body => NULL protected _directory => string(0) "" protected _controller => string(4) "Site" protected _action => string(6) "aruhaz" protected _uri => string(6) "aruhaz" protected _external => bool FALSE protected _params => array(0) protected _get => array(0) protected _post => array(0) protected _cookies => array(0) protected _client => object Request_Client_Internal(9){ protected _previous_environment => NULL protected _cache => NULL protected _follow => bool FALSE protected _follow_headers => array(1) ( 0 => string(13) "Authorization" ) protected _strict_redirect => bool TRUE protected _header_callbacks => array(1) ( "Location" => string(34) "Request_Client::on_header_location" ) protected _max_callback_depth => integer 5 protected _callback_depth => integer 1 protected _callback_params => array(0) }}{ protected _status => integer 200 protected _header => object HTTP_Header(0)}{ }protected _body => string(0) "" protected _cookies => array(0) protected _protocol => string(8) "HTTP/1.1" }92 93 // Create a new instance of the controller 94 $controller = $class->newInstance($request, $response); 95 96 // Run the controller's execute() method 97 $response = $class->getMethod('execute')->invoke($controller); 98 99 if ( ! $response instanceof Response) 100 { 101 // Controller failed to return a Response. 102 throw new Kohana_Exception('Controller failed to return a Response'); -
SYSPATH/classes/kohana/request/client.php [ 114 ] » Kohana_Request_Client_Internal->execute_request(arguments)
0object Request(19)
{ protected _requested_with => NULL protected _method => string(3) "GET" protected _protocol => string(8) "HTTP/1.1" protected _secure => bool TRUE protected _referrer => NULL protected _route => object Route(5){ protected _filters => array(0) protected _uri => string(6) "aruhaz" protected _regex => array(0) protected _defaults => array(2) ( "controller" => string(4) "site" "action" => string(6) "aruhaz" ) protected _route_regex => string(12) "#^aruhaz$#uD" }protected _routes => array(0) protected _header => object HTTP_Header(0){ }protected _body => NULL protected _directory => string(0) "" protected _controller => string(4) "Site" protected _action => string(6) "aruhaz" protected _uri => string(6) "aruhaz" protected _external => bool FALSE protected _params => array(0) protected _get => array(0) protected _post => array(0) protected _cookies => array(0) protected _client => object Request_Client_Internal(9){ protected _previous_environment => NULL protected _cache => NULL protected _follow => bool FALSE protected _follow_headers => array(1) ( 0 => string(13) "Authorization" ) protected _strict_redirect => bool TRUE protected _header_callbacks => array(1) ( "Location" => string(34) "Request_Client::on_header_location" ) protected _max_callback_depth => integer 5 protected _callback_depth => integer 1 protected _callback_params => array(0) }}1object Response(5)
{ protected _status => integer 200 protected _header => object HTTP_Header(0){ }protected _body => string(0) "" protected _cookies => array(0) protected _protocol => string(8) "HTTP/1.1" }109 $orig_response = $response = Response::factory(array('_protocol' => $request->protocol())); 110 111 if (($cache = $this->cache()) instanceof HTTP_Cache) 112 return $cache->execute($this, $request, $response); 113 114 $response = $this->execute_request($request, $response); 115 116 // Execute response callbacks 117 foreach ($this->header_callbacks() as $header => $callback) 118 { 119 if ($response->headers($header)) -
SYSPATH/classes/kohana/request.php [ 986 ] » Kohana_Request_Client->execute(arguments)
0object Request(19)
{ protected _requested_with => NULL protected _method => string(3) "GET" protected _protocol => string(8) "HTTP/1.1" protected _secure => bool TRUE protected _referrer => NULL protected _route => object Route(5){ protected _filters => array(0) protected _uri => string(6) "aruhaz" protected _regex => array(0) protected _defaults => array(2) ( "controller" => string(4) "site" "action" => string(6) "aruhaz" ) protected _route_regex => string(12) "#^aruhaz$#uD" }protected _routes => array(0) protected _header => object HTTP_Header(0){ }protected _body => NULL protected _directory => string(0) "" protected _controller => string(4) "Site" protected _action => string(6) "aruhaz" protected _uri => string(6) "aruhaz" protected _external => bool FALSE protected _params => array(0) protected _get => array(0) protected _post => array(0) protected _cookies => array(0) protected _client => object Request_Client_Internal(9){ protected _previous_environment => NULL protected _cache => NULL protected _follow => bool FALSE protected _follow_headers => array(1) ( 0 => string(13) "Authorization" ) protected _strict_redirect => bool TRUE protected _header_callbacks => array(1) ( "Location" => string(34) "Request_Client::on_header_location" ) protected _max_callback_depth => integer 5 protected _callback_depth => integer 1 protected _callback_params => array(0) }}981 throw new Request_Exception('Unable to execute :uri without a Kohana_Request_Client', array( 982 ':uri' => $this->_uri, 983 )); 984 } 985 986 return $this->_client->execute($this); 987 } 988 989 /** 990 * Returns whether this request is the initial request kohana received. 991 * Can be used to test for sub requests. -
DOCROOT/index.php [ 120 ] » Kohana_Request->execute()
115 /** 116 * Execute the main request. A source of the URI can be passed, eg: $_SERVER['PATH_INFO']. 117 * If no source is specified, the URI will be automatically detected. 118 */ 119 echo Request::factory(TRUE, array(), FALSE) 120 ->execute() 121 ->send_headers(TRUE) 122 ->body(); 123 }
Environment
Included files (98)
DOCROOT/index.php |
APPPATH/bootstrap.php |
SYSPATH/classes/kohana/core.php |
SYSPATH/classes/kohana.php |
SYSPATH/classes/i18n.php |
SYSPATH/classes/kohana/i18n.php |
SYSPATH/classes/http.php |
SYSPATH/classes/kohana/http.php |
SYSPATH/classes/kohana/exception.php |
SYSPATH/classes/kohana/kohana/exception.php |
SYSPATH/classes/log.php |
SYSPATH/classes/kohana/log.php |
SYSPATH/classes/config.php |
SYSPATH/classes/kohana/config.php |
SYSPATH/classes/log/file.php |
SYSPATH/classes/kohana/log/file.php |
SYSPATH/classes/log/writer.php |
SYSPATH/classes/kohana/log/writer.php |
SYSPATH/classes/config/file.php |
SYSPATH/classes/kohana/config/file.php |
SYSPATH/classes/kohana/config/file/reader.php |
SYSPATH/classes/kohana/config/reader.php |
SYSPATH/classes/kohana/config/source.php |
MODPATH/product/init.php |
SYSPATH/classes/route.php |
SYSPATH/classes/kohana/route.php |
MODPATH/email/init.php |
MODPATH/imagefly/init.php |
MODPATH/captcha/init.php |
MODPATH/admin/init.php |
MODPATH/frontend/init.php |
SYSPATH/classes/cookie.php |
SYSPATH/classes/kohana/cookie.php |
MODPATH/admin/classes/papertrail/log.php |
SYSPATH/classes/request.php |
SYSPATH/classes/kohana/request.php |
SYSPATH/classes/http/request.php |
SYSPATH/classes/kohana/http/request.php |
SYSPATH/classes/http/message.php |
SYSPATH/classes/kohana/http/message.php |
SYSPATH/classes/http/header.php |
SYSPATH/classes/kohana/http/header.php |
SYSPATH/classes/request/client/internal.php |
SYSPATH/classes/kohana/request/client/internal.php |
SYSPATH/classes/request/client.php |
SYSPATH/classes/kohana/request/client.php |
SYSPATH/classes/arr.php |
SYSPATH/classes/kohana/arr.php |
SYSPATH/classes/response.php |
SYSPATH/classes/kohana/response.php |
SYSPATH/classes/http/response.php |
SYSPATH/classes/kohana/http/response.php |
SYSPATH/classes/profiler.php |
SYSPATH/classes/kohana/profiler.php |
MODPATH/frontend/classes/controller/site.php |
SYSPATH/classes/controller/template.php |
SYSPATH/classes/kohana/controller/template.php |
SYSPATH/classes/controller.php |
SYSPATH/classes/kohana/controller.php |
SYSPATH/classes/view.php |
SYSPATH/classes/kohana/view.php |
SYSPATH/classes/session.php |
SYSPATH/classes/kohana/session.php |
SYSPATH/config/session.php |
MODPATH/database/config/session.php |
SYSPATH/classes/config/group.php |
SYSPATH/classes/kohana/config/group.php |
SYSPATH/classes/session/native.php |
SYSPATH/classes/kohana/session/native.php |
MODPATH/frontend/views/site/layout.php |
SYSPATH/classes/url.php |
SYSPATH/classes/kohana/url.php |
SYSPATH/classes/utf8.php |
SYSPATH/classes/kohana/utf8.php |
MODPATH/frontend/views/site/aruhaz.php |
MODPATH/frontend/views/site/aruhaz/css.php |
MODPATH/frontend/views/site/aruhaz/xynbio.php |
APPPATH/classes/orm.php |
MODPATH/orm/classes/kohana/orm.php |
SYSPATH/classes/model.php |
SYSPATH/classes/kohana/model.php |
MODPATH/product/classes/model/product.php |
SYSPATH/classes/inflector.php |
SYSPATH/classes/kohana/inflector.php |
SYSPATH/config/inflector.php |
MODPATH/database/classes/database.php |
MODPATH/database/classes/kohana/database.php |
MODPATH/database/config/database.php |
APPPATH/config/database.php |
MODPATH/database/classes/database/mysql.php |
MODPATH/database/classes/kohana/database/mysql.php |
MODPATH/database/classes/database/exception.php |
MODPATH/database/classes/kohana/database/exception.php |
SYSPATH/classes/debug.php |
SYSPATH/classes/kohana/debug.php |
SYSPATH/classes/date.php |
SYSPATH/classes/kohana/date.php |
SYSPATH/views/kohana/error.php |
Loaded extensions (53)
Core |
date |
ereg |
libxml |
openssl |
pcre |
zlib |
filter |
hash |
pcntl |
readline |
Reflection |
SPL |
session |
standard |
cgi-fcgi |
bcmath |
calendar |
ctype |
curl |
dom |
fileinfo |
ftp |
gd |
imap |
intl |
json |
mbstring |
mcrypt |
mysqlnd |
mysql |
mysqli |
PDO |
pdo_mysql |
pdo_pgsql |
pdo_sqlite |
pgsql |
Phar |
posix |
SimpleXML |
soap |
sockets |
sqlite3 |
tokenizer |
xml |
wddx |
xmlreader |
xmlrpc |
xmlwriter |
xsl |
zip |
mhash |
ionCube Loader |
$_SERVER
CONTEXT_DOCUMENT_ROOT |
string(39) "/home/synergohub/webshop.synergohub.com" |
CONTEXT_PREFIX |
string(0) "" |
DOCUMENT_ROOT |
string(39) "/home/synergohub/webshop.synergohub.com" |
GATEWAY_INTERFACE |
string(7) "CGI/1.1" |
HTTPS |
string(2) "on" |
HTTP_ACCEPT |
string(3) "*/*" |
HTTP_ACCEPT_ENCODING |
string(23) "gzip, br, zstd, deflate" |
HTTP_HOST |
string(19) "shop.synergohub.com" |
HTTP_USER_AGENT |
string(103) "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" |
PATH |
string(13) "/bin:/usr/bin" |
PHP_INI_SCAN_DIR |
string(67) "/opt/cpanel/ea-php56/root/etc:/opt/cpanel/ea-php56/root/etc/php.d:." |
QUERY_STRING |
string(0) "" |
REDIRECT_HTTPS |
string(2) "on" |
REDIRECT_SSL_TLS_SNI |
string(19) "shop.synergohub.com" |
REDIRECT_STATUS |
string(3) "200" |
REDIRECT_UNIQUE_ID |
string(27) "aVH0bOAH2TfTjairR_s5XQAAAAQ" |
REDIRECT_URL |
string(7) "/aruhaz" |
REMOTE_ADDR |
string(13) "216.73.216.85" |
REMOTE_PORT |
string(5) "14248" |
REQUEST_METHOD |
string(3) "GET" |
REQUEST_SCHEME |
string(5) "https" |
REQUEST_URI |
string(7) "/aruhaz" |
SCRIPT_FILENAME |
string(49) "/home/synergohub/webshop.synergohub.com/index.php" |
SCRIPT_NAME |
string(10) "/index.php" |
SERVER_ADDR |
string(14) "185.51.191.204" |
SERVER_ADMIN |
string(29) "webmaster@shop.synergohub.com" |
SERVER_NAME |
string(19) "shop.synergohub.com" |
SERVER_PORT |
string(3) "443" |
SERVER_PROTOCOL |
string(8) "HTTP/1.1" |
SERVER_SIGNATURE |
string(0) "" |
SERVER_SOFTWARE |
string(6) "Apache" |
SSL_TLS_SNI |
string(19) "shop.synergohub.com" |
TZ |
string(15) "Europe/Budapest" |
UNIQUE_ID |
string(27) "aVH0bOAH2TfTjairR_s5XQAAAAQ" |
ORIG_PATH_INFO |
string(7) "/aruhaz" |
ORIG_PATH_TRANSLATED |
string(49) "/home/synergohub/webshop.synergohub.com/index.php" |
PHP_SELF |
string(10) "/index.php" |
REQUEST_TIME_FLOAT |
float 1766978668,26 |
REQUEST_TIME |
integer 1766978668 |
argv |
array(0) |
argc |
integer 0 |
Database_Exception [ 1046 ]:
MODPATH/database/classes/kohana/database/mysql.php [ 194 ]
189 {
190 // This benchmark is worthless
191 Profiler::delete($benchmark);
192 }
193
194 throw new Database_Exception(':error [ :query ]',
195 array(':error' => mysql_error($this->_connection), ':query' => $sql),
196 mysql_errno($this->_connection));
197 }
198
199 if (isset($benchmark))
-
MODPATH/database/classes/kohana/database/mysql.php [ 359 ] » Kohana_Database_MySQL->query(arguments)
0integer 1
1string(33) "SHOW FULL COLUMNS FROM `products`"2bool FALSE
354 $result = $this->query(Database::SELECT, 'SHOW FULL COLUMNS FROM '.$table.' LIKE '.$this->quote($like), FALSE); 355 } 356 else 357 { 358 // Find all column names 359 $result = $this->query(Database::SELECT, 'SHOW FULL COLUMNS FROM '.$table, FALSE); 360 } 361 362 $count = 0; 363 $columns = array(); 364 foreach ($result as $row) -
MODPATH/orm/classes/kohana/orm.php [ 1668 ] » Kohana_Database_MySQL->list_columns(arguments)
0string(8) "products"1663 * @return array 1664 */ 1665 public function list_columns() 1666 { 1667 // Proxy to database 1668 return $this->_db->list_columns($this->_table_name); 1669 } 1670 1671 /** 1672 * Returns an ORM model for the given one-one related alias 1673 * -
MODPATH/orm/classes/kohana/orm.php [ 444 ] » Kohana_ORM->list_columns()
439 $this->_table_columns = ORM::$_column_cache[$this->_object_name]; 440 } 441 else 442 { 443 // Grab column information from database 444 $this->_table_columns = $this->list_columns(); 445 446 // Load column cache 447 ORM::$_column_cache[$this->_object_name] = $this->_table_columns; 448 } 449 } -
MODPATH/orm/classes/kohana/orm.php [ 389 ] » Kohana_ORM->reload_columns()
384 { 385 $this->{$property} = $value; 386 } 387 388 // Load column information 389 $this->reload_columns(); 390 391 // Clear initial model state 392 $this->clear(); 393 } 394 -
APPPATH/classes/orm.php [ 59 ] » Kohana_ORM->_initialize()
54 private $old = array(); 55 private $new = array(); 56 57 public function __construct($id = NULL) 58 { 59 $this->_initialize(); 60 61 if ($id !== NULL) 62 { 63 if (is_array($id)) 64 { -
MODPATH/orm/classes/kohana/orm.php [ 46 ] » ORM->__construct(arguments)
0integer 28
41 public static function factory($model, $id = NULL) 42 { 43 // Set class name 44 $model = 'Model_'.$model; 45 46 return new $model($id); 47 } 48 49 /** 50 * "Has one" relationships 51 * @var array -
MODPATH/frontend/views/site/aruhaz/mask.php [ 7 ] » Kohana_ORM::factory(arguments)
0string(7) "product"1integer 28
2 <div class="product product_mask"> 3 <!-- <div class="ribbon ribbon-cyan"><div>Ingyenes kiszállítás</div></div> --> 4 <!-- <div class="ribbon ribbon-red">Két havi adag</div> --> 5 6 <div class="priceline"> 7 <?php echo Controller_Site::formatPrice((int) ORM::Factory('product', 28)->getGrossPrice());?> Ft 8 </div> 9 10 <div class="titleline"> 11 <img src="/img/aruhaz/mask_box.png" width="98" height="88" alt="<?php echo ORM::Factory('product' , 28)->name; ?>"> 12 <?php echo ORM::Factory('product', 28)->name;?> -
SYSPATH/classes/kohana/view.php [ 61 ] » include(arguments)
0string(83) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/aruhaz/mask.php"56 ob_start(); 57 58 try 59 { 60 // Load the view within the current scope 61 include $kohana_view_filename; 62 } 63 catch (Exception $e) 64 { 65 // Delete the output buffer 66 ob_end_clean(); -
SYSPATH/classes/kohana/view.php [ 348 ] » Kohana_View::capture(arguments)
0string(83) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/aruhaz/mask.php"1array(2) ( "kohana_view_filename" => string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/aruhaz.php" "kohana_view_data" => array(0) )
343 { 344 throw new View_Exception('You must set the file to use within your view before rendering'); 345 } 346 347 // Combine local and global data and capture the output 348 return View::capture($this->_file, $this->_data); 349 } 350 351 } -
SYSPATH/classes/kohana/view.php [ 228 ] » Kohana_View->render()
223 */ 224 public function __toString() 225 { 226 try 227 { 228 return $this->render(); 229 } 230 catch (Exception $e) 231 { 232 /** 233 * Display the exception message. -
MODPATH/frontend/views/site/aruhaz.php [ 36 ] » Kohana_View->__toString()
31 <div id="product_container" class="grid-100"> 32 <!-- xynbio --> 33 <?php echo View::factory('site/aruhaz/xynbio', get_defined_vars()); ?> 34 35 <!-- mask --> 36 <?php echo View::factory('site/aruhaz/mask', get_defined_vars()); ?> 37 38 <!-- novosseum --> 39 <?php echo View::factory('site/aruhaz/novosseum', get_defined_vars()); ?> 40 41 <!-- neocartil --> -
SYSPATH/classes/kohana/view.php [ 61 ] » include(arguments)
0string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/aruhaz.php"56 ob_start(); 57 58 try 59 { 60 // Load the view within the current scope 61 include $kohana_view_filename; 62 } 63 catch (Exception $e) 64 { 65 // Delete the output buffer 66 ob_end_clean(); -
SYSPATH/classes/kohana/view.php [ 348 ] » Kohana_View::capture(arguments)
0string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/aruhaz.php"1array(0)343 { 344 throw new View_Exception('You must set the file to use within your view before rendering'); 345 } 346 347 // Combine local and global data and capture the output 348 return View::capture($this->_file, $this->_data); 349 } 350 351 } -
SYSPATH/classes/kohana/view.php [ 228 ] » Kohana_View->render()
223 */ 224 public function __toString() 225 { 226 try 227 { 228 return $this->render(); 229 } 230 catch (Exception $e) 231 { 232 /** 233 * Display the exception message. -
MODPATH/frontend/views/site/layout.php [ 238 ] » Kohana_View->__toString()
233 <?php endif; ?> 234 </div><!-- header --> 235 236 <div id="content"> 237 238 <?php echo @$content; ?> 239 240 </div><!-- content --> 241 242 <div class="clear"></div> 243 -
SYSPATH/classes/kohana/view.php [ 61 ] » include(arguments)
0string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/layout.php"56 ob_start(); 57 58 try 59 { 60 // Load the view within the current scope 61 include $kohana_view_filename; 62 } 63 catch (Exception $e) 64 { 65 // Delete the output buffer 66 ob_end_clean(); -
SYSPATH/classes/kohana/view.php [ 348 ] » Kohana_View::capture(arguments)
0string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/layout.php"1array(4) ( "user" => bool FALSE "cartnum" => integer 0 "bodyclass" => string(7) "webshop" "content" => object View(2)
{ protected _file => string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/aruhaz.php" protected _data => array(0) })343 { 344 throw new View_Exception('You must set the file to use within your view before rendering'); 345 } 346 347 // Combine local and global data and capture the output 348 return View::capture($this->_file, $this->_data); 349 } 350 351 } -
SYSPATH/classes/kohana/controller/template.php [ 44 ] » Kohana_View->render()
39 */ 40 public function after() 41 { 42 if ($this->auto_render === TRUE) 43 { 44 $this->response->body($this->template->render()); 45 } 46 47 parent::after(); 48 } 49 -
SYSPATH/classes/kohana/controller.php [ 87 ] » Kohana_Controller_Template->after()
82 83 // Execute the action itself 84 $this->{$action}(); 85 86 // Execute the "after action" method 87 $this->after(); 88 89 // Return the response 90 return $this->response; 91 } 92 -
{PHP internal call} » Kohana_Controller->execute()
-
SYSPATH/classes/kohana/request/client/internal.php [ 97 ] » ReflectionMethod->invoke(arguments)
0object Controller_Site(4)
{ public template => object View(2){ protected _file => string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/layout.php" protected _data => array(4) ( "user" => bool FALSE "cartnum" => integer 0 "bodyclass" => string(7) "webshop" "content" => object View(2)public auto_render => bool TRUE public request => object Request(19){ protected _file => string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/aruhaz.php" protected _data => array(0) }) }{ protected _requested_with => NULL protected _method => string(3) "GET" protected _protocol => string(8) "HTTP/1.1" protected _secure => bool TRUE protected _referrer => NULL protected _route => object Route(5)public response => object Response(5){ protected _filters => array(0) protected _uri => string(6) "aruhaz" protected _regex => array(0) protected _defaults => array(2) ( "controller" => string(4) "site" "action" => string(6) "aruhaz" ) protected _route_regex => string(12) "#^aruhaz$#uD" }protected _routes => array(0) protected _header => object HTTP_Header(0){ }protected _body => NULL protected _directory => string(0) "" protected _controller => string(4) "Site" protected _action => string(6) "aruhaz" protected _uri => string(6) "aruhaz" protected _external => bool FALSE protected _params => array(0) protected _get => array(0) protected _post => array(0) protected _cookies => array(0) protected _client => object Request_Client_Internal(9){ protected _previous_environment => NULL protected _cache => NULL protected _follow => bool FALSE protected _follow_headers => array(1) ( 0 => string(13) "Authorization" ) protected _strict_redirect => bool TRUE protected _header_callbacks => array(1) ( "Location" => string(34) "Request_Client::on_header_location" ) protected _max_callback_depth => integer 5 protected _callback_depth => integer 1 protected _callback_params => array(0) }}{ protected _status => integer 200 protected _header => object HTTP_Header(0)}{ }protected _body => string(0) "" protected _cookies => array(0) protected _protocol => string(8) "HTTP/1.1" }92 93 // Create a new instance of the controller 94 $controller = $class->newInstance($request, $response); 95 96 // Run the controller's execute() method 97 $response = $class->getMethod('execute')->invoke($controller); 98 99 if ( ! $response instanceof Response) 100 { 101 // Controller failed to return a Response. 102 throw new Kohana_Exception('Controller failed to return a Response'); -
SYSPATH/classes/kohana/request/client.php [ 114 ] » Kohana_Request_Client_Internal->execute_request(arguments)
0object Request(19)
{ protected _requested_with => NULL protected _method => string(3) "GET" protected _protocol => string(8) "HTTP/1.1" protected _secure => bool TRUE protected _referrer => NULL protected _route => object Route(5){ protected _filters => array(0) protected _uri => string(6) "aruhaz" protected _regex => array(0) protected _defaults => array(2) ( "controller" => string(4) "site" "action" => string(6) "aruhaz" ) protected _route_regex => string(12) "#^aruhaz$#uD" }protected _routes => array(0) protected _header => object HTTP_Header(0){ }protected _body => NULL protected _directory => string(0) "" protected _controller => string(4) "Site" protected _action => string(6) "aruhaz" protected _uri => string(6) "aruhaz" protected _external => bool FALSE protected _params => array(0) protected _get => array(0) protected _post => array(0) protected _cookies => array(0) protected _client => object Request_Client_Internal(9){ protected _previous_environment => NULL protected _cache => NULL protected _follow => bool FALSE protected _follow_headers => array(1) ( 0 => string(13) "Authorization" ) protected _strict_redirect => bool TRUE protected _header_callbacks => array(1) ( "Location" => string(34) "Request_Client::on_header_location" ) protected _max_callback_depth => integer 5 protected _callback_depth => integer 1 protected _callback_params => array(0) }}1object Response(5)
{ protected _status => integer 200 protected _header => object HTTP_Header(0){ }protected _body => string(0) "" protected _cookies => array(0) protected _protocol => string(8) "HTTP/1.1" }109 $orig_response = $response = Response::factory(array('_protocol' => $request->protocol())); 110 111 if (($cache = $this->cache()) instanceof HTTP_Cache) 112 return $cache->execute($this, $request, $response); 113 114 $response = $this->execute_request($request, $response); 115 116 // Execute response callbacks 117 foreach ($this->header_callbacks() as $header => $callback) 118 { 119 if ($response->headers($header)) -
SYSPATH/classes/kohana/request.php [ 986 ] » Kohana_Request_Client->execute(arguments)
0object Request(19)
{ protected _requested_with => NULL protected _method => string(3) "GET" protected _protocol => string(8) "HTTP/1.1" protected _secure => bool TRUE protected _referrer => NULL protected _route => object Route(5){ protected _filters => array(0) protected _uri => string(6) "aruhaz" protected _regex => array(0) protected _defaults => array(2) ( "controller" => string(4) "site" "action" => string(6) "aruhaz" ) protected _route_regex => string(12) "#^aruhaz$#uD" }protected _routes => array(0) protected _header => object HTTP_Header(0){ }protected _body => NULL protected _directory => string(0) "" protected _controller => string(4) "Site" protected _action => string(6) "aruhaz" protected _uri => string(6) "aruhaz" protected _external => bool FALSE protected _params => array(0) protected _get => array(0) protected _post => array(0) protected _cookies => array(0) protected _client => object Request_Client_Internal(9){ protected _previous_environment => NULL protected _cache => NULL protected _follow => bool FALSE protected _follow_headers => array(1) ( 0 => string(13) "Authorization" ) protected _strict_redirect => bool TRUE protected _header_callbacks => array(1) ( "Location" => string(34) "Request_Client::on_header_location" ) protected _max_callback_depth => integer 5 protected _callback_depth => integer 1 protected _callback_params => array(0) }}981 throw new Request_Exception('Unable to execute :uri without a Kohana_Request_Client', array( 982 ':uri' => $this->_uri, 983 )); 984 } 985 986 return $this->_client->execute($this); 987 } 988 989 /** 990 * Returns whether this request is the initial request kohana received. 991 * Can be used to test for sub requests. -
DOCROOT/index.php [ 120 ] » Kohana_Request->execute()
115 /** 116 * Execute the main request. A source of the URI can be passed, eg: $_SERVER['PATH_INFO']. 117 * If no source is specified, the URI will be automatically detected. 118 */ 119 echo Request::factory(TRUE, array(), FALSE) 120 ->execute() 121 ->send_headers(TRUE) 122 ->body(); 123 }
Environment
Included files (99)
DOCROOT/index.php |
APPPATH/bootstrap.php |
SYSPATH/classes/kohana/core.php |
SYSPATH/classes/kohana.php |
SYSPATH/classes/i18n.php |
SYSPATH/classes/kohana/i18n.php |
SYSPATH/classes/http.php |
SYSPATH/classes/kohana/http.php |
SYSPATH/classes/kohana/exception.php |
SYSPATH/classes/kohana/kohana/exception.php |
SYSPATH/classes/log.php |
SYSPATH/classes/kohana/log.php |
SYSPATH/classes/config.php |
SYSPATH/classes/kohana/config.php |
SYSPATH/classes/log/file.php |
SYSPATH/classes/kohana/log/file.php |
SYSPATH/classes/log/writer.php |
SYSPATH/classes/kohana/log/writer.php |
SYSPATH/classes/config/file.php |
SYSPATH/classes/kohana/config/file.php |
SYSPATH/classes/kohana/config/file/reader.php |
SYSPATH/classes/kohana/config/reader.php |
SYSPATH/classes/kohana/config/source.php |
MODPATH/product/init.php |
SYSPATH/classes/route.php |
SYSPATH/classes/kohana/route.php |
MODPATH/email/init.php |
MODPATH/imagefly/init.php |
MODPATH/captcha/init.php |
MODPATH/admin/init.php |
MODPATH/frontend/init.php |
SYSPATH/classes/cookie.php |
SYSPATH/classes/kohana/cookie.php |
MODPATH/admin/classes/papertrail/log.php |
SYSPATH/classes/request.php |
SYSPATH/classes/kohana/request.php |
SYSPATH/classes/http/request.php |
SYSPATH/classes/kohana/http/request.php |
SYSPATH/classes/http/message.php |
SYSPATH/classes/kohana/http/message.php |
SYSPATH/classes/http/header.php |
SYSPATH/classes/kohana/http/header.php |
SYSPATH/classes/request/client/internal.php |
SYSPATH/classes/kohana/request/client/internal.php |
SYSPATH/classes/request/client.php |
SYSPATH/classes/kohana/request/client.php |
SYSPATH/classes/arr.php |
SYSPATH/classes/kohana/arr.php |
SYSPATH/classes/response.php |
SYSPATH/classes/kohana/response.php |
SYSPATH/classes/http/response.php |
SYSPATH/classes/kohana/http/response.php |
SYSPATH/classes/profiler.php |
SYSPATH/classes/kohana/profiler.php |
MODPATH/frontend/classes/controller/site.php |
SYSPATH/classes/controller/template.php |
SYSPATH/classes/kohana/controller/template.php |
SYSPATH/classes/controller.php |
SYSPATH/classes/kohana/controller.php |
SYSPATH/classes/view.php |
SYSPATH/classes/kohana/view.php |
SYSPATH/classes/session.php |
SYSPATH/classes/kohana/session.php |
SYSPATH/config/session.php |
MODPATH/database/config/session.php |
SYSPATH/classes/config/group.php |
SYSPATH/classes/kohana/config/group.php |
SYSPATH/classes/session/native.php |
SYSPATH/classes/kohana/session/native.php |
MODPATH/frontend/views/site/layout.php |
SYSPATH/classes/url.php |
SYSPATH/classes/kohana/url.php |
SYSPATH/classes/utf8.php |
SYSPATH/classes/kohana/utf8.php |
MODPATH/frontend/views/site/aruhaz.php |
MODPATH/frontend/views/site/aruhaz/css.php |
MODPATH/frontend/views/site/aruhaz/xynbio.php |
APPPATH/classes/orm.php |
MODPATH/orm/classes/kohana/orm.php |
SYSPATH/classes/model.php |
SYSPATH/classes/kohana/model.php |
MODPATH/product/classes/model/product.php |
SYSPATH/classes/inflector.php |
SYSPATH/classes/kohana/inflector.php |
SYSPATH/config/inflector.php |
MODPATH/database/classes/database.php |
MODPATH/database/classes/kohana/database.php |
MODPATH/database/config/database.php |
APPPATH/config/database.php |
MODPATH/database/classes/database/mysql.php |
MODPATH/database/classes/kohana/database/mysql.php |
MODPATH/database/classes/database/exception.php |
MODPATH/database/classes/kohana/database/exception.php |
SYSPATH/classes/debug.php |
SYSPATH/classes/kohana/debug.php |
SYSPATH/classes/date.php |
SYSPATH/classes/kohana/date.php |
SYSPATH/views/kohana/error.php |
MODPATH/frontend/views/site/aruhaz/mask.php |
Loaded extensions (53)
Core |
date |
ereg |
libxml |
openssl |
pcre |
zlib |
filter |
hash |
pcntl |
readline |
Reflection |
SPL |
session |
standard |
cgi-fcgi |
bcmath |
calendar |
ctype |
curl |
dom |
fileinfo |
ftp |
gd |
imap |
intl |
json |
mbstring |
mcrypt |
mysqlnd |
mysql |
mysqli |
PDO |
pdo_mysql |
pdo_pgsql |
pdo_sqlite |
pgsql |
Phar |
posix |
SimpleXML |
soap |
sockets |
sqlite3 |
tokenizer |
xml |
wddx |
xmlreader |
xmlrpc |
xmlwriter |
xsl |
zip |
mhash |
ionCube Loader |
$_SERVER
CONTEXT_DOCUMENT_ROOT |
string(39) "/home/synergohub/webshop.synergohub.com" |
CONTEXT_PREFIX |
string(0) "" |
DOCUMENT_ROOT |
string(39) "/home/synergohub/webshop.synergohub.com" |
GATEWAY_INTERFACE |
string(7) "CGI/1.1" |
HTTPS |
string(2) "on" |
HTTP_ACCEPT |
string(3) "*/*" |
HTTP_ACCEPT_ENCODING |
string(23) "gzip, br, zstd, deflate" |
HTTP_HOST |
string(19) "shop.synergohub.com" |
HTTP_USER_AGENT |
string(103) "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" |
PATH |
string(13) "/bin:/usr/bin" |
PHP_INI_SCAN_DIR |
string(67) "/opt/cpanel/ea-php56/root/etc:/opt/cpanel/ea-php56/root/etc/php.d:." |
QUERY_STRING |
string(0) "" |
REDIRECT_HTTPS |
string(2) "on" |
REDIRECT_SSL_TLS_SNI |
string(19) "shop.synergohub.com" |
REDIRECT_STATUS |
string(3) "200" |
REDIRECT_UNIQUE_ID |
string(27) "aVH0bOAH2TfTjairR_s5XQAAAAQ" |
REDIRECT_URL |
string(7) "/aruhaz" |
REMOTE_ADDR |
string(13) "216.73.216.85" |
REMOTE_PORT |
string(5) "14248" |
REQUEST_METHOD |
string(3) "GET" |
REQUEST_SCHEME |
string(5) "https" |
REQUEST_URI |
string(7) "/aruhaz" |
SCRIPT_FILENAME |
string(49) "/home/synergohub/webshop.synergohub.com/index.php" |
SCRIPT_NAME |
string(10) "/index.php" |
SERVER_ADDR |
string(14) "185.51.191.204" |
SERVER_ADMIN |
string(29) "webmaster@shop.synergohub.com" |
SERVER_NAME |
string(19) "shop.synergohub.com" |
SERVER_PORT |
string(3) "443" |
SERVER_PROTOCOL |
string(8) "HTTP/1.1" |
SERVER_SIGNATURE |
string(0) "" |
SERVER_SOFTWARE |
string(6) "Apache" |
SSL_TLS_SNI |
string(19) "shop.synergohub.com" |
TZ |
string(15) "Europe/Budapest" |
UNIQUE_ID |
string(27) "aVH0bOAH2TfTjairR_s5XQAAAAQ" |
ORIG_PATH_INFO |
string(7) "/aruhaz" |
ORIG_PATH_TRANSLATED |
string(49) "/home/synergohub/webshop.synergohub.com/index.php" |
PHP_SELF |
string(10) "/index.php" |
REQUEST_TIME_FLOAT |
float 1766978668,26 |
REQUEST_TIME |
integer 1766978668 |
argv |
array(0) |
argc |
integer 0 |
Database_Exception [ 1046 ]:
MODPATH/database/classes/kohana/database/mysql.php [ 194 ]
189 {
190 // This benchmark is worthless
191 Profiler::delete($benchmark);
192 }
193
194 throw new Database_Exception(':error [ :query ]',
195 array(':error' => mysql_error($this->_connection), ':query' => $sql),
196 mysql_errno($this->_connection));
197 }
198
199 if (isset($benchmark))
-
MODPATH/database/classes/kohana/database/mysql.php [ 359 ] » Kohana_Database_MySQL->query(arguments)
0integer 1
1string(33) "SHOW FULL COLUMNS FROM `products`"2bool FALSE
354 $result = $this->query(Database::SELECT, 'SHOW FULL COLUMNS FROM '.$table.' LIKE '.$this->quote($like), FALSE); 355 } 356 else 357 { 358 // Find all column names 359 $result = $this->query(Database::SELECT, 'SHOW FULL COLUMNS FROM '.$table, FALSE); 360 } 361 362 $count = 0; 363 $columns = array(); 364 foreach ($result as $row) -
MODPATH/orm/classes/kohana/orm.php [ 1668 ] » Kohana_Database_MySQL->list_columns(arguments)
0string(8) "products"1663 * @return array 1664 */ 1665 public function list_columns() 1666 { 1667 // Proxy to database 1668 return $this->_db->list_columns($this->_table_name); 1669 } 1670 1671 /** 1672 * Returns an ORM model for the given one-one related alias 1673 * -
MODPATH/orm/classes/kohana/orm.php [ 444 ] » Kohana_ORM->list_columns()
439 $this->_table_columns = ORM::$_column_cache[$this->_object_name]; 440 } 441 else 442 { 443 // Grab column information from database 444 $this->_table_columns = $this->list_columns(); 445 446 // Load column cache 447 ORM::$_column_cache[$this->_object_name] = $this->_table_columns; 448 } 449 } -
MODPATH/orm/classes/kohana/orm.php [ 389 ] » Kohana_ORM->reload_columns()
384 { 385 $this->{$property} = $value; 386 } 387 388 // Load column information 389 $this->reload_columns(); 390 391 // Clear initial model state 392 $this->clear(); 393 } 394 -
APPPATH/classes/orm.php [ 59 ] » Kohana_ORM->_initialize()
54 private $old = array(); 55 private $new = array(); 56 57 public function __construct($id = NULL) 58 { 59 $this->_initialize(); 60 61 if ($id !== NULL) 62 { 63 if (is_array($id)) 64 { -
MODPATH/orm/classes/kohana/orm.php [ 46 ] » ORM->__construct(arguments)
0integer 5
41 public static function factory($model, $id = NULL) 42 { 43 // Set class name 44 $model = 'Model_'.$model; 45 46 return new $model($id); 47 } 48 49 /** 50 * "Has one" relationships 51 * @var array -
MODPATH/frontend/views/site/aruhaz/novosseum.php [ 7 ] » Kohana_ORM::factory(arguments)
0string(7) "product"1integer 5
2 <div class="product product_novosseum"> 3 <!-- <div class="ribbon ribbon-cyan"><div>Ingyenes kiszállítás</div></div> --> 4 <div class="ribbon ribbon-red">Két havi adag</div> 5 6 <div class="priceline"> 7 <?php echo Controller_Site::formatPrice((int) ORM::Factory('product', 5)->getGrossPrice());?> Ft 8 </div> 9 10 <div class="titleline"> 11 <img src="/img/aruhaz/novosseum_box.png" width="114" height="114" alt="<?php echo ORM::Factory('product' , 5)->name; ?>" /> 12 <?php echo ORM::Factory('product', 5)->name;?> -
SYSPATH/classes/kohana/view.php [ 61 ] » include(arguments)
0string(88) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/aruhaz/novosseum.php"56 ob_start(); 57 58 try 59 { 60 // Load the view within the current scope 61 include $kohana_view_filename; 62 } 63 catch (Exception $e) 64 { 65 // Delete the output buffer 66 ob_end_clean(); -
SYSPATH/classes/kohana/view.php [ 348 ] » Kohana_View::capture(arguments)
0string(88) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/aruhaz/novosseum.php"1array(2) ( "kohana_view_filename" => string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/aruhaz.php" "kohana_view_data" => array(0) )
343 { 344 throw new View_Exception('You must set the file to use within your view before rendering'); 345 } 346 347 // Combine local and global data and capture the output 348 return View::capture($this->_file, $this->_data); 349 } 350 351 } -
SYSPATH/classes/kohana/view.php [ 228 ] » Kohana_View->render()
223 */ 224 public function __toString() 225 { 226 try 227 { 228 return $this->render(); 229 } 230 catch (Exception $e) 231 { 232 /** 233 * Display the exception message. -
MODPATH/frontend/views/site/aruhaz.php [ 39 ] » Kohana_View->__toString()
34 35 <!-- mask --> 36 <?php echo View::factory('site/aruhaz/mask', get_defined_vars()); ?> 37 38 <!-- novosseum --> 39 <?php echo View::factory('site/aruhaz/novosseum', get_defined_vars()); ?> 40 41 <!-- neocartil --> 42 <?php echo View::factory('site/aruhaz/neocartil', get_defined_vars()); ?> 43 44 <!-- fluxus_prostate --> -
SYSPATH/classes/kohana/view.php [ 61 ] » include(arguments)
0string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/aruhaz.php"56 ob_start(); 57 58 try 59 { 60 // Load the view within the current scope 61 include $kohana_view_filename; 62 } 63 catch (Exception $e) 64 { 65 // Delete the output buffer 66 ob_end_clean(); -
SYSPATH/classes/kohana/view.php [ 348 ] » Kohana_View::capture(arguments)
0string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/aruhaz.php"1array(0)343 { 344 throw new View_Exception('You must set the file to use within your view before rendering'); 345 } 346 347 // Combine local and global data and capture the output 348 return View::capture($this->_file, $this->_data); 349 } 350 351 } -
SYSPATH/classes/kohana/view.php [ 228 ] » Kohana_View->render()
223 */ 224 public function __toString() 225 { 226 try 227 { 228 return $this->render(); 229 } 230 catch (Exception $e) 231 { 232 /** 233 * Display the exception message. -
MODPATH/frontend/views/site/layout.php [ 238 ] » Kohana_View->__toString()
233 <?php endif; ?> 234 </div><!-- header --> 235 236 <div id="content"> 237 238 <?php echo @$content; ?> 239 240 </div><!-- content --> 241 242 <div class="clear"></div> 243 -
SYSPATH/classes/kohana/view.php [ 61 ] » include(arguments)
0string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/layout.php"56 ob_start(); 57 58 try 59 { 60 // Load the view within the current scope 61 include $kohana_view_filename; 62 } 63 catch (Exception $e) 64 { 65 // Delete the output buffer 66 ob_end_clean(); -
SYSPATH/classes/kohana/view.php [ 348 ] » Kohana_View::capture(arguments)
0string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/layout.php"1array(4) ( "user" => bool FALSE "cartnum" => integer 0 "bodyclass" => string(7) "webshop" "content" => object View(2)
{ protected _file => string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/aruhaz.php" protected _data => array(0) })343 { 344 throw new View_Exception('You must set the file to use within your view before rendering'); 345 } 346 347 // Combine local and global data and capture the output 348 return View::capture($this->_file, $this->_data); 349 } 350 351 } -
SYSPATH/classes/kohana/controller/template.php [ 44 ] » Kohana_View->render()
39 */ 40 public function after() 41 { 42 if ($this->auto_render === TRUE) 43 { 44 $this->response->body($this->template->render()); 45 } 46 47 parent::after(); 48 } 49 -
SYSPATH/classes/kohana/controller.php [ 87 ] » Kohana_Controller_Template->after()
82 83 // Execute the action itself 84 $this->{$action}(); 85 86 // Execute the "after action" method 87 $this->after(); 88 89 // Return the response 90 return $this->response; 91 } 92 -
{PHP internal call} » Kohana_Controller->execute()
-
SYSPATH/classes/kohana/request/client/internal.php [ 97 ] » ReflectionMethod->invoke(arguments)
0object Controller_Site(4)
{ public template => object View(2){ protected _file => string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/layout.php" protected _data => array(4) ( "user" => bool FALSE "cartnum" => integer 0 "bodyclass" => string(7) "webshop" "content" => object View(2)public auto_render => bool TRUE public request => object Request(19){ protected _file => string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/aruhaz.php" protected _data => array(0) }) }{ protected _requested_with => NULL protected _method => string(3) "GET" protected _protocol => string(8) "HTTP/1.1" protected _secure => bool TRUE protected _referrer => NULL protected _route => object Route(5)public response => object Response(5){ protected _filters => array(0) protected _uri => string(6) "aruhaz" protected _regex => array(0) protected _defaults => array(2) ( "controller" => string(4) "site" "action" => string(6) "aruhaz" ) protected _route_regex => string(12) "#^aruhaz$#uD" }protected _routes => array(0) protected _header => object HTTP_Header(0){ }protected _body => NULL protected _directory => string(0) "" protected _controller => string(4) "Site" protected _action => string(6) "aruhaz" protected _uri => string(6) "aruhaz" protected _external => bool FALSE protected _params => array(0) protected _get => array(0) protected _post => array(0) protected _cookies => array(0) protected _client => object Request_Client_Internal(9){ protected _previous_environment => NULL protected _cache => NULL protected _follow => bool FALSE protected _follow_headers => array(1) ( 0 => string(13) "Authorization" ) protected _strict_redirect => bool TRUE protected _header_callbacks => array(1) ( "Location" => string(34) "Request_Client::on_header_location" ) protected _max_callback_depth => integer 5 protected _callback_depth => integer 1 protected _callback_params => array(0) }}{ protected _status => integer 200 protected _header => object HTTP_Header(0)}{ }protected _body => string(0) "" protected _cookies => array(0) protected _protocol => string(8) "HTTP/1.1" }92 93 // Create a new instance of the controller 94 $controller = $class->newInstance($request, $response); 95 96 // Run the controller's execute() method 97 $response = $class->getMethod('execute')->invoke($controller); 98 99 if ( ! $response instanceof Response) 100 { 101 // Controller failed to return a Response. 102 throw new Kohana_Exception('Controller failed to return a Response'); -
SYSPATH/classes/kohana/request/client.php [ 114 ] » Kohana_Request_Client_Internal->execute_request(arguments)
0object Request(19)
{ protected _requested_with => NULL protected _method => string(3) "GET" protected _protocol => string(8) "HTTP/1.1" protected _secure => bool TRUE protected _referrer => NULL protected _route => object Route(5){ protected _filters => array(0) protected _uri => string(6) "aruhaz" protected _regex => array(0) protected _defaults => array(2) ( "controller" => string(4) "site" "action" => string(6) "aruhaz" ) protected _route_regex => string(12) "#^aruhaz$#uD" }protected _routes => array(0) protected _header => object HTTP_Header(0){ }protected _body => NULL protected _directory => string(0) "" protected _controller => string(4) "Site" protected _action => string(6) "aruhaz" protected _uri => string(6) "aruhaz" protected _external => bool FALSE protected _params => array(0) protected _get => array(0) protected _post => array(0) protected _cookies => array(0) protected _client => object Request_Client_Internal(9){ protected _previous_environment => NULL protected _cache => NULL protected _follow => bool FALSE protected _follow_headers => array(1) ( 0 => string(13) "Authorization" ) protected _strict_redirect => bool TRUE protected _header_callbacks => array(1) ( "Location" => string(34) "Request_Client::on_header_location" ) protected _max_callback_depth => integer 5 protected _callback_depth => integer 1 protected _callback_params => array(0) }}1object Response(5)
{ protected _status => integer 200 protected _header => object HTTP_Header(0){ }protected _body => string(0) "" protected _cookies => array(0) protected _protocol => string(8) "HTTP/1.1" }109 $orig_response = $response = Response::factory(array('_protocol' => $request->protocol())); 110 111 if (($cache = $this->cache()) instanceof HTTP_Cache) 112 return $cache->execute($this, $request, $response); 113 114 $response = $this->execute_request($request, $response); 115 116 // Execute response callbacks 117 foreach ($this->header_callbacks() as $header => $callback) 118 { 119 if ($response->headers($header)) -
SYSPATH/classes/kohana/request.php [ 986 ] » Kohana_Request_Client->execute(arguments)
0object Request(19)
{ protected _requested_with => NULL protected _method => string(3) "GET" protected _protocol => string(8) "HTTP/1.1" protected _secure => bool TRUE protected _referrer => NULL protected _route => object Route(5){ protected _filters => array(0) protected _uri => string(6) "aruhaz" protected _regex => array(0) protected _defaults => array(2) ( "controller" => string(4) "site" "action" => string(6) "aruhaz" ) protected _route_regex => string(12) "#^aruhaz$#uD" }protected _routes => array(0) protected _header => object HTTP_Header(0){ }protected _body => NULL protected _directory => string(0) "" protected _controller => string(4) "Site" protected _action => string(6) "aruhaz" protected _uri => string(6) "aruhaz" protected _external => bool FALSE protected _params => array(0) protected _get => array(0) protected _post => array(0) protected _cookies => array(0) protected _client => object Request_Client_Internal(9){ protected _previous_environment => NULL protected _cache => NULL protected _follow => bool FALSE protected _follow_headers => array(1) ( 0 => string(13) "Authorization" ) protected _strict_redirect => bool TRUE protected _header_callbacks => array(1) ( "Location" => string(34) "Request_Client::on_header_location" ) protected _max_callback_depth => integer 5 protected _callback_depth => integer 1 protected _callback_params => array(0) }}981 throw new Request_Exception('Unable to execute :uri without a Kohana_Request_Client', array( 982 ':uri' => $this->_uri, 983 )); 984 } 985 986 return $this->_client->execute($this); 987 } 988 989 /** 990 * Returns whether this request is the initial request kohana received. 991 * Can be used to test for sub requests. -
DOCROOT/index.php [ 120 ] » Kohana_Request->execute()
115 /** 116 * Execute the main request. A source of the URI can be passed, eg: $_SERVER['PATH_INFO']. 117 * If no source is specified, the URI will be automatically detected. 118 */ 119 echo Request::factory(TRUE, array(), FALSE) 120 ->execute() 121 ->send_headers(TRUE) 122 ->body(); 123 }
Environment
Included files (100)
DOCROOT/index.php |
APPPATH/bootstrap.php |
SYSPATH/classes/kohana/core.php |
SYSPATH/classes/kohana.php |
SYSPATH/classes/i18n.php |
SYSPATH/classes/kohana/i18n.php |
SYSPATH/classes/http.php |
SYSPATH/classes/kohana/http.php |
SYSPATH/classes/kohana/exception.php |
SYSPATH/classes/kohana/kohana/exception.php |
SYSPATH/classes/log.php |
SYSPATH/classes/kohana/log.php |
SYSPATH/classes/config.php |
SYSPATH/classes/kohana/config.php |
SYSPATH/classes/log/file.php |
SYSPATH/classes/kohana/log/file.php |
SYSPATH/classes/log/writer.php |
SYSPATH/classes/kohana/log/writer.php |
SYSPATH/classes/config/file.php |
SYSPATH/classes/kohana/config/file.php |
SYSPATH/classes/kohana/config/file/reader.php |
SYSPATH/classes/kohana/config/reader.php |
SYSPATH/classes/kohana/config/source.php |
MODPATH/product/init.php |
SYSPATH/classes/route.php |
SYSPATH/classes/kohana/route.php |
MODPATH/email/init.php |
MODPATH/imagefly/init.php |
MODPATH/captcha/init.php |
MODPATH/admin/init.php |
MODPATH/frontend/init.php |
SYSPATH/classes/cookie.php |
SYSPATH/classes/kohana/cookie.php |
MODPATH/admin/classes/papertrail/log.php |
SYSPATH/classes/request.php |
SYSPATH/classes/kohana/request.php |
SYSPATH/classes/http/request.php |
SYSPATH/classes/kohana/http/request.php |
SYSPATH/classes/http/message.php |
SYSPATH/classes/kohana/http/message.php |
SYSPATH/classes/http/header.php |
SYSPATH/classes/kohana/http/header.php |
SYSPATH/classes/request/client/internal.php |
SYSPATH/classes/kohana/request/client/internal.php |
SYSPATH/classes/request/client.php |
SYSPATH/classes/kohana/request/client.php |
SYSPATH/classes/arr.php |
SYSPATH/classes/kohana/arr.php |
SYSPATH/classes/response.php |
SYSPATH/classes/kohana/response.php |
SYSPATH/classes/http/response.php |
SYSPATH/classes/kohana/http/response.php |
SYSPATH/classes/profiler.php |
SYSPATH/classes/kohana/profiler.php |
MODPATH/frontend/classes/controller/site.php |
SYSPATH/classes/controller/template.php |
SYSPATH/classes/kohana/controller/template.php |
SYSPATH/classes/controller.php |
SYSPATH/classes/kohana/controller.php |
SYSPATH/classes/view.php |
SYSPATH/classes/kohana/view.php |
SYSPATH/classes/session.php |
SYSPATH/classes/kohana/session.php |
SYSPATH/config/session.php |
MODPATH/database/config/session.php |
SYSPATH/classes/config/group.php |
SYSPATH/classes/kohana/config/group.php |
SYSPATH/classes/session/native.php |
SYSPATH/classes/kohana/session/native.php |
MODPATH/frontend/views/site/layout.php |
SYSPATH/classes/url.php |
SYSPATH/classes/kohana/url.php |
SYSPATH/classes/utf8.php |
SYSPATH/classes/kohana/utf8.php |
MODPATH/frontend/views/site/aruhaz.php |
MODPATH/frontend/views/site/aruhaz/css.php |
MODPATH/frontend/views/site/aruhaz/xynbio.php |
APPPATH/classes/orm.php |
MODPATH/orm/classes/kohana/orm.php |
SYSPATH/classes/model.php |
SYSPATH/classes/kohana/model.php |
MODPATH/product/classes/model/product.php |
SYSPATH/classes/inflector.php |
SYSPATH/classes/kohana/inflector.php |
SYSPATH/config/inflector.php |
MODPATH/database/classes/database.php |
MODPATH/database/classes/kohana/database.php |
MODPATH/database/config/database.php |
APPPATH/config/database.php |
MODPATH/database/classes/database/mysql.php |
MODPATH/database/classes/kohana/database/mysql.php |
MODPATH/database/classes/database/exception.php |
MODPATH/database/classes/kohana/database/exception.php |
SYSPATH/classes/debug.php |
SYSPATH/classes/kohana/debug.php |
SYSPATH/classes/date.php |
SYSPATH/classes/kohana/date.php |
SYSPATH/views/kohana/error.php |
MODPATH/frontend/views/site/aruhaz/mask.php |
MODPATH/frontend/views/site/aruhaz/novosseum.php |
Loaded extensions (53)
Core |
date |
ereg |
libxml |
openssl |
pcre |
zlib |
filter |
hash |
pcntl |
readline |
Reflection |
SPL |
session |
standard |
cgi-fcgi |
bcmath |
calendar |
ctype |
curl |
dom |
fileinfo |
ftp |
gd |
imap |
intl |
json |
mbstring |
mcrypt |
mysqlnd |
mysql |
mysqli |
PDO |
pdo_mysql |
pdo_pgsql |
pdo_sqlite |
pgsql |
Phar |
posix |
SimpleXML |
soap |
sockets |
sqlite3 |
tokenizer |
xml |
wddx |
xmlreader |
xmlrpc |
xmlwriter |
xsl |
zip |
mhash |
ionCube Loader |
$_SERVER
CONTEXT_DOCUMENT_ROOT |
string(39) "/home/synergohub/webshop.synergohub.com" |
CONTEXT_PREFIX |
string(0) "" |
DOCUMENT_ROOT |
string(39) "/home/synergohub/webshop.synergohub.com" |
GATEWAY_INTERFACE |
string(7) "CGI/1.1" |
HTTPS |
string(2) "on" |
HTTP_ACCEPT |
string(3) "*/*" |
HTTP_ACCEPT_ENCODING |
string(23) "gzip, br, zstd, deflate" |
HTTP_HOST |
string(19) "shop.synergohub.com" |
HTTP_USER_AGENT |
string(103) "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" |
PATH |
string(13) "/bin:/usr/bin" |
PHP_INI_SCAN_DIR |
string(67) "/opt/cpanel/ea-php56/root/etc:/opt/cpanel/ea-php56/root/etc/php.d:." |
QUERY_STRING |
string(0) "" |
REDIRECT_HTTPS |
string(2) "on" |
REDIRECT_SSL_TLS_SNI |
string(19) "shop.synergohub.com" |
REDIRECT_STATUS |
string(3) "200" |
REDIRECT_UNIQUE_ID |
string(27) "aVH0bOAH2TfTjairR_s5XQAAAAQ" |
REDIRECT_URL |
string(7) "/aruhaz" |
REMOTE_ADDR |
string(13) "216.73.216.85" |
REMOTE_PORT |
string(5) "14248" |
REQUEST_METHOD |
string(3) "GET" |
REQUEST_SCHEME |
string(5) "https" |
REQUEST_URI |
string(7) "/aruhaz" |
SCRIPT_FILENAME |
string(49) "/home/synergohub/webshop.synergohub.com/index.php" |
SCRIPT_NAME |
string(10) "/index.php" |
SERVER_ADDR |
string(14) "185.51.191.204" |
SERVER_ADMIN |
string(29) "webmaster@shop.synergohub.com" |
SERVER_NAME |
string(19) "shop.synergohub.com" |
SERVER_PORT |
string(3) "443" |
SERVER_PROTOCOL |
string(8) "HTTP/1.1" |
SERVER_SIGNATURE |
string(0) "" |
SERVER_SOFTWARE |
string(6) "Apache" |
SSL_TLS_SNI |
string(19) "shop.synergohub.com" |
TZ |
string(15) "Europe/Budapest" |
UNIQUE_ID |
string(27) "aVH0bOAH2TfTjairR_s5XQAAAAQ" |
ORIG_PATH_INFO |
string(7) "/aruhaz" |
ORIG_PATH_TRANSLATED |
string(49) "/home/synergohub/webshop.synergohub.com/index.php" |
PHP_SELF |
string(10) "/index.php" |
REQUEST_TIME_FLOAT |
float 1766978668,26 |
REQUEST_TIME |
integer 1766978668 |
argv |
array(0) |
argc |
integer 0 |
Database_Exception [ 1046 ]:
MODPATH/database/classes/kohana/database/mysql.php [ 194 ]
189 {
190 // This benchmark is worthless
191 Profiler::delete($benchmark);
192 }
193
194 throw new Database_Exception(':error [ :query ]',
195 array(':error' => mysql_error($this->_connection), ':query' => $sql),
196 mysql_errno($this->_connection));
197 }
198
199 if (isset($benchmark))
-
MODPATH/database/classes/kohana/database/mysql.php [ 359 ] » Kohana_Database_MySQL->query(arguments)
0integer 1
1string(33) "SHOW FULL COLUMNS FROM `products`"2bool FALSE
354 $result = $this->query(Database::SELECT, 'SHOW FULL COLUMNS FROM '.$table.' LIKE '.$this->quote($like), FALSE); 355 } 356 else 357 { 358 // Find all column names 359 $result = $this->query(Database::SELECT, 'SHOW FULL COLUMNS FROM '.$table, FALSE); 360 } 361 362 $count = 0; 363 $columns = array(); 364 foreach ($result as $row) -
MODPATH/orm/classes/kohana/orm.php [ 1668 ] » Kohana_Database_MySQL->list_columns(arguments)
0string(8) "products"1663 * @return array 1664 */ 1665 public function list_columns() 1666 { 1667 // Proxy to database 1668 return $this->_db->list_columns($this->_table_name); 1669 } 1670 1671 /** 1672 * Returns an ORM model for the given one-one related alias 1673 * -
MODPATH/orm/classes/kohana/orm.php [ 444 ] » Kohana_ORM->list_columns()
439 $this->_table_columns = ORM::$_column_cache[$this->_object_name]; 440 } 441 else 442 { 443 // Grab column information from database 444 $this->_table_columns = $this->list_columns(); 445 446 // Load column cache 447 ORM::$_column_cache[$this->_object_name] = $this->_table_columns; 448 } 449 } -
MODPATH/orm/classes/kohana/orm.php [ 389 ] » Kohana_ORM->reload_columns()
384 { 385 $this->{$property} = $value; 386 } 387 388 // Load column information 389 $this->reload_columns(); 390 391 // Clear initial model state 392 $this->clear(); 393 } 394 -
APPPATH/classes/orm.php [ 59 ] » Kohana_ORM->_initialize()
54 private $old = array(); 55 private $new = array(); 56 57 public function __construct($id = NULL) 58 { 59 $this->_initialize(); 60 61 if ($id !== NULL) 62 { 63 if (is_array($id)) 64 { -
MODPATH/orm/classes/kohana/orm.php [ 46 ] » ORM->__construct(arguments)
0integer 6
41 public static function factory($model, $id = NULL) 42 { 43 // Set class name 44 $model = 'Model_'.$model; 45 46 return new $model($id); 47 } 48 49 /** 50 * "Has one" relationships 51 * @var array -
MODPATH/frontend/views/site/aruhaz/neocartil.php [ 7 ] » Kohana_ORM::factory(arguments)
0string(7) "product"1integer 6
2 <div class="product product_neocartil"> 3 <!-- <div class="ribbon ribbon-cyan"><div>Ingyenes kiszállítás</div></div> --> 4 <!-- <div class="ribbon ribbon-red">Két havi adag</div> --> 5 6 <div class="priceline"> 7 <?php echo Controller_Site::formatPrice((int) ORM::Factory('product', 6)->getGrossPrice());?> Ft 8 </div> 9 10 <div class="titleline"> 11 <img src="/img/aruhaz/neocartil_box.png" width="114" height="114" alt="<?php echo ORM::Factory('product' , 6)->name; ?>" /> 12 <?php echo ORM::Factory('product', 6)->name;?> -
SYSPATH/classes/kohana/view.php [ 61 ] » include(arguments)
0string(88) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/aruhaz/neocartil.php"56 ob_start(); 57 58 try 59 { 60 // Load the view within the current scope 61 include $kohana_view_filename; 62 } 63 catch (Exception $e) 64 { 65 // Delete the output buffer 66 ob_end_clean(); -
SYSPATH/classes/kohana/view.php [ 348 ] » Kohana_View::capture(arguments)
0string(88) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/aruhaz/neocartil.php"1array(2) ( "kohana_view_filename" => string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/aruhaz.php" "kohana_view_data" => array(0) )
343 { 344 throw new View_Exception('You must set the file to use within your view before rendering'); 345 } 346 347 // Combine local and global data and capture the output 348 return View::capture($this->_file, $this->_data); 349 } 350 351 } -
SYSPATH/classes/kohana/view.php [ 228 ] » Kohana_View->render()
223 */ 224 public function __toString() 225 { 226 try 227 { 228 return $this->render(); 229 } 230 catch (Exception $e) 231 { 232 /** 233 * Display the exception message. -
MODPATH/frontend/views/site/aruhaz.php [ 42 ] » Kohana_View->__toString()
37 38 <!-- novosseum --> 39 <?php echo View::factory('site/aruhaz/novosseum', get_defined_vars()); ?> 40 41 <!-- neocartil --> 42 <?php echo View::factory('site/aruhaz/neocartil', get_defined_vars()); ?> 43 44 <!-- fluxus_prostate --> 45 <?php echo View::factory('site/aruhaz/fluxus_prostatae', get_defined_vars()); ?> 46 47 <!-- neocartil pro --> -
SYSPATH/classes/kohana/view.php [ 61 ] » include(arguments)
0string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/aruhaz.php"56 ob_start(); 57 58 try 59 { 60 // Load the view within the current scope 61 include $kohana_view_filename; 62 } 63 catch (Exception $e) 64 { 65 // Delete the output buffer 66 ob_end_clean(); -
SYSPATH/classes/kohana/view.php [ 348 ] » Kohana_View::capture(arguments)
0string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/aruhaz.php"1array(0)343 { 344 throw new View_Exception('You must set the file to use within your view before rendering'); 345 } 346 347 // Combine local and global data and capture the output 348 return View::capture($this->_file, $this->_data); 349 } 350 351 } -
SYSPATH/classes/kohana/view.php [ 228 ] » Kohana_View->render()
223 */ 224 public function __toString() 225 { 226 try 227 { 228 return $this->render(); 229 } 230 catch (Exception $e) 231 { 232 /** 233 * Display the exception message. -
MODPATH/frontend/views/site/layout.php [ 238 ] » Kohana_View->__toString()
233 <?php endif; ?> 234 </div><!-- header --> 235 236 <div id="content"> 237 238 <?php echo @$content; ?> 239 240 </div><!-- content --> 241 242 <div class="clear"></div> 243 -
SYSPATH/classes/kohana/view.php [ 61 ] » include(arguments)
0string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/layout.php"56 ob_start(); 57 58 try 59 { 60 // Load the view within the current scope 61 include $kohana_view_filename; 62 } 63 catch (Exception $e) 64 { 65 // Delete the output buffer 66 ob_end_clean(); -
SYSPATH/classes/kohana/view.php [ 348 ] » Kohana_View::capture(arguments)
0string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/layout.php"1array(4) ( "user" => bool FALSE "cartnum" => integer 0 "bodyclass" => string(7) "webshop" "content" => object View(2)
{ protected _file => string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/aruhaz.php" protected _data => array(0) })343 { 344 throw new View_Exception('You must set the file to use within your view before rendering'); 345 } 346 347 // Combine local and global data and capture the output 348 return View::capture($this->_file, $this->_data); 349 } 350 351 } -
SYSPATH/classes/kohana/controller/template.php [ 44 ] » Kohana_View->render()
39 */ 40 public function after() 41 { 42 if ($this->auto_render === TRUE) 43 { 44 $this->response->body($this->template->render()); 45 } 46 47 parent::after(); 48 } 49 -
SYSPATH/classes/kohana/controller.php [ 87 ] » Kohana_Controller_Template->after()
82 83 // Execute the action itself 84 $this->{$action}(); 85 86 // Execute the "after action" method 87 $this->after(); 88 89 // Return the response 90 return $this->response; 91 } 92 -
{PHP internal call} » Kohana_Controller->execute()
-
SYSPATH/classes/kohana/request/client/internal.php [ 97 ] » ReflectionMethod->invoke(arguments)
0object Controller_Site(4)
{ public template => object View(2){ protected _file => string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/layout.php" protected _data => array(4) ( "user" => bool FALSE "cartnum" => integer 0 "bodyclass" => string(7) "webshop" "content" => object View(2)public auto_render => bool TRUE public request => object Request(19){ protected _file => string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/aruhaz.php" protected _data => array(0) }) }{ protected _requested_with => NULL protected _method => string(3) "GET" protected _protocol => string(8) "HTTP/1.1" protected _secure => bool TRUE protected _referrer => NULL protected _route => object Route(5)public response => object Response(5){ protected _filters => array(0) protected _uri => string(6) "aruhaz" protected _regex => array(0) protected _defaults => array(2) ( "controller" => string(4) "site" "action" => string(6) "aruhaz" ) protected _route_regex => string(12) "#^aruhaz$#uD" }protected _routes => array(0) protected _header => object HTTP_Header(0){ }protected _body => NULL protected _directory => string(0) "" protected _controller => string(4) "Site" protected _action => string(6) "aruhaz" protected _uri => string(6) "aruhaz" protected _external => bool FALSE protected _params => array(0) protected _get => array(0) protected _post => array(0) protected _cookies => array(0) protected _client => object Request_Client_Internal(9){ protected _previous_environment => NULL protected _cache => NULL protected _follow => bool FALSE protected _follow_headers => array(1) ( 0 => string(13) "Authorization" ) protected _strict_redirect => bool TRUE protected _header_callbacks => array(1) ( "Location" => string(34) "Request_Client::on_header_location" ) protected _max_callback_depth => integer 5 protected _callback_depth => integer 1 protected _callback_params => array(0) }}{ protected _status => integer 200 protected _header => object HTTP_Header(0)}{ }protected _body => string(0) "" protected _cookies => array(0) protected _protocol => string(8) "HTTP/1.1" }92 93 // Create a new instance of the controller 94 $controller = $class->newInstance($request, $response); 95 96 // Run the controller's execute() method 97 $response = $class->getMethod('execute')->invoke($controller); 98 99 if ( ! $response instanceof Response) 100 { 101 // Controller failed to return a Response. 102 throw new Kohana_Exception('Controller failed to return a Response'); -
SYSPATH/classes/kohana/request/client.php [ 114 ] » Kohana_Request_Client_Internal->execute_request(arguments)
0object Request(19)
{ protected _requested_with => NULL protected _method => string(3) "GET" protected _protocol => string(8) "HTTP/1.1" protected _secure => bool TRUE protected _referrer => NULL protected _route => object Route(5){ protected _filters => array(0) protected _uri => string(6) "aruhaz" protected _regex => array(0) protected _defaults => array(2) ( "controller" => string(4) "site" "action" => string(6) "aruhaz" ) protected _route_regex => string(12) "#^aruhaz$#uD" }protected _routes => array(0) protected _header => object HTTP_Header(0){ }protected _body => NULL protected _directory => string(0) "" protected _controller => string(4) "Site" protected _action => string(6) "aruhaz" protected _uri => string(6) "aruhaz" protected _external => bool FALSE protected _params => array(0) protected _get => array(0) protected _post => array(0) protected _cookies => array(0) protected _client => object Request_Client_Internal(9){ protected _previous_environment => NULL protected _cache => NULL protected _follow => bool FALSE protected _follow_headers => array(1) ( 0 => string(13) "Authorization" ) protected _strict_redirect => bool TRUE protected _header_callbacks => array(1) ( "Location" => string(34) "Request_Client::on_header_location" ) protected _max_callback_depth => integer 5 protected _callback_depth => integer 1 protected _callback_params => array(0) }}1object Response(5)
{ protected _status => integer 200 protected _header => object HTTP_Header(0){ }protected _body => string(0) "" protected _cookies => array(0) protected _protocol => string(8) "HTTP/1.1" }109 $orig_response = $response = Response::factory(array('_protocol' => $request->protocol())); 110 111 if (($cache = $this->cache()) instanceof HTTP_Cache) 112 return $cache->execute($this, $request, $response); 113 114 $response = $this->execute_request($request, $response); 115 116 // Execute response callbacks 117 foreach ($this->header_callbacks() as $header => $callback) 118 { 119 if ($response->headers($header)) -
SYSPATH/classes/kohana/request.php [ 986 ] » Kohana_Request_Client->execute(arguments)
0object Request(19)
{ protected _requested_with => NULL protected _method => string(3) "GET" protected _protocol => string(8) "HTTP/1.1" protected _secure => bool TRUE protected _referrer => NULL protected _route => object Route(5){ protected _filters => array(0) protected _uri => string(6) "aruhaz" protected _regex => array(0) protected _defaults => array(2) ( "controller" => string(4) "site" "action" => string(6) "aruhaz" ) protected _route_regex => string(12) "#^aruhaz$#uD" }protected _routes => array(0) protected _header => object HTTP_Header(0){ }protected _body => NULL protected _directory => string(0) "" protected _controller => string(4) "Site" protected _action => string(6) "aruhaz" protected _uri => string(6) "aruhaz" protected _external => bool FALSE protected _params => array(0) protected _get => array(0) protected _post => array(0) protected _cookies => array(0) protected _client => object Request_Client_Internal(9){ protected _previous_environment => NULL protected _cache => NULL protected _follow => bool FALSE protected _follow_headers => array(1) ( 0 => string(13) "Authorization" ) protected _strict_redirect => bool TRUE protected _header_callbacks => array(1) ( "Location" => string(34) "Request_Client::on_header_location" ) protected _max_callback_depth => integer 5 protected _callback_depth => integer 1 protected _callback_params => array(0) }}981 throw new Request_Exception('Unable to execute :uri without a Kohana_Request_Client', array( 982 ':uri' => $this->_uri, 983 )); 984 } 985 986 return $this->_client->execute($this); 987 } 988 989 /** 990 * Returns whether this request is the initial request kohana received. 991 * Can be used to test for sub requests. -
DOCROOT/index.php [ 120 ] » Kohana_Request->execute()
115 /** 116 * Execute the main request. A source of the URI can be passed, eg: $_SERVER['PATH_INFO']. 117 * If no source is specified, the URI will be automatically detected. 118 */ 119 echo Request::factory(TRUE, array(), FALSE) 120 ->execute() 121 ->send_headers(TRUE) 122 ->body(); 123 }
Environment
Included files (101)
DOCROOT/index.php |
APPPATH/bootstrap.php |
SYSPATH/classes/kohana/core.php |
SYSPATH/classes/kohana.php |
SYSPATH/classes/i18n.php |
SYSPATH/classes/kohana/i18n.php |
SYSPATH/classes/http.php |
SYSPATH/classes/kohana/http.php |
SYSPATH/classes/kohana/exception.php |
SYSPATH/classes/kohana/kohana/exception.php |
SYSPATH/classes/log.php |
SYSPATH/classes/kohana/log.php |
SYSPATH/classes/config.php |
SYSPATH/classes/kohana/config.php |
SYSPATH/classes/log/file.php |
SYSPATH/classes/kohana/log/file.php |
SYSPATH/classes/log/writer.php |
SYSPATH/classes/kohana/log/writer.php |
SYSPATH/classes/config/file.php |
SYSPATH/classes/kohana/config/file.php |
SYSPATH/classes/kohana/config/file/reader.php |
SYSPATH/classes/kohana/config/reader.php |
SYSPATH/classes/kohana/config/source.php |
MODPATH/product/init.php |
SYSPATH/classes/route.php |
SYSPATH/classes/kohana/route.php |
MODPATH/email/init.php |
MODPATH/imagefly/init.php |
MODPATH/captcha/init.php |
MODPATH/admin/init.php |
MODPATH/frontend/init.php |
SYSPATH/classes/cookie.php |
SYSPATH/classes/kohana/cookie.php |
MODPATH/admin/classes/papertrail/log.php |
SYSPATH/classes/request.php |
SYSPATH/classes/kohana/request.php |
SYSPATH/classes/http/request.php |
SYSPATH/classes/kohana/http/request.php |
SYSPATH/classes/http/message.php |
SYSPATH/classes/kohana/http/message.php |
SYSPATH/classes/http/header.php |
SYSPATH/classes/kohana/http/header.php |
SYSPATH/classes/request/client/internal.php |
SYSPATH/classes/kohana/request/client/internal.php |
SYSPATH/classes/request/client.php |
SYSPATH/classes/kohana/request/client.php |
SYSPATH/classes/arr.php |
SYSPATH/classes/kohana/arr.php |
SYSPATH/classes/response.php |
SYSPATH/classes/kohana/response.php |
SYSPATH/classes/http/response.php |
SYSPATH/classes/kohana/http/response.php |
SYSPATH/classes/profiler.php |
SYSPATH/classes/kohana/profiler.php |
MODPATH/frontend/classes/controller/site.php |
SYSPATH/classes/controller/template.php |
SYSPATH/classes/kohana/controller/template.php |
SYSPATH/classes/controller.php |
SYSPATH/classes/kohana/controller.php |
SYSPATH/classes/view.php |
SYSPATH/classes/kohana/view.php |
SYSPATH/classes/session.php |
SYSPATH/classes/kohana/session.php |
SYSPATH/config/session.php |
MODPATH/database/config/session.php |
SYSPATH/classes/config/group.php |
SYSPATH/classes/kohana/config/group.php |
SYSPATH/classes/session/native.php |
SYSPATH/classes/kohana/session/native.php |
MODPATH/frontend/views/site/layout.php |
SYSPATH/classes/url.php |
SYSPATH/classes/kohana/url.php |
SYSPATH/classes/utf8.php |
SYSPATH/classes/kohana/utf8.php |
MODPATH/frontend/views/site/aruhaz.php |
MODPATH/frontend/views/site/aruhaz/css.php |
MODPATH/frontend/views/site/aruhaz/xynbio.php |
APPPATH/classes/orm.php |
MODPATH/orm/classes/kohana/orm.php |
SYSPATH/classes/model.php |
SYSPATH/classes/kohana/model.php |
MODPATH/product/classes/model/product.php |
SYSPATH/classes/inflector.php |
SYSPATH/classes/kohana/inflector.php |
SYSPATH/config/inflector.php |
MODPATH/database/classes/database.php |
MODPATH/database/classes/kohana/database.php |
MODPATH/database/config/database.php |
APPPATH/config/database.php |
MODPATH/database/classes/database/mysql.php |
MODPATH/database/classes/kohana/database/mysql.php |
MODPATH/database/classes/database/exception.php |
MODPATH/database/classes/kohana/database/exception.php |
SYSPATH/classes/debug.php |
SYSPATH/classes/kohana/debug.php |
SYSPATH/classes/date.php |
SYSPATH/classes/kohana/date.php |
SYSPATH/views/kohana/error.php |
MODPATH/frontend/views/site/aruhaz/mask.php |
MODPATH/frontend/views/site/aruhaz/novosseum.php |
MODPATH/frontend/views/site/aruhaz/neocartil.php |
Loaded extensions (53)
Core |
date |
ereg |
libxml |
openssl |
pcre |
zlib |
filter |
hash |
pcntl |
readline |
Reflection |
SPL |
session |
standard |
cgi-fcgi |
bcmath |
calendar |
ctype |
curl |
dom |
fileinfo |
ftp |
gd |
imap |
intl |
json |
mbstring |
mcrypt |
mysqlnd |
mysql |
mysqli |
PDO |
pdo_mysql |
pdo_pgsql |
pdo_sqlite |
pgsql |
Phar |
posix |
SimpleXML |
soap |
sockets |
sqlite3 |
tokenizer |
xml |
wddx |
xmlreader |
xmlrpc |
xmlwriter |
xsl |
zip |
mhash |
ionCube Loader |
$_SERVER
CONTEXT_DOCUMENT_ROOT |
string(39) "/home/synergohub/webshop.synergohub.com" |
CONTEXT_PREFIX |
string(0) "" |
DOCUMENT_ROOT |
string(39) "/home/synergohub/webshop.synergohub.com" |
GATEWAY_INTERFACE |
string(7) "CGI/1.1" |
HTTPS |
string(2) "on" |
HTTP_ACCEPT |
string(3) "*/*" |
HTTP_ACCEPT_ENCODING |
string(23) "gzip, br, zstd, deflate" |
HTTP_HOST |
string(19) "shop.synergohub.com" |
HTTP_USER_AGENT |
string(103) "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" |
PATH |
string(13) "/bin:/usr/bin" |
PHP_INI_SCAN_DIR |
string(67) "/opt/cpanel/ea-php56/root/etc:/opt/cpanel/ea-php56/root/etc/php.d:." |
QUERY_STRING |
string(0) "" |
REDIRECT_HTTPS |
string(2) "on" |
REDIRECT_SSL_TLS_SNI |
string(19) "shop.synergohub.com" |
REDIRECT_STATUS |
string(3) "200" |
REDIRECT_UNIQUE_ID |
string(27) "aVH0bOAH2TfTjairR_s5XQAAAAQ" |
REDIRECT_URL |
string(7) "/aruhaz" |
REMOTE_ADDR |
string(13) "216.73.216.85" |
REMOTE_PORT |
string(5) "14248" |
REQUEST_METHOD |
string(3) "GET" |
REQUEST_SCHEME |
string(5) "https" |
REQUEST_URI |
string(7) "/aruhaz" |
SCRIPT_FILENAME |
string(49) "/home/synergohub/webshop.synergohub.com/index.php" |
SCRIPT_NAME |
string(10) "/index.php" |
SERVER_ADDR |
string(14) "185.51.191.204" |
SERVER_ADMIN |
string(29) "webmaster@shop.synergohub.com" |
SERVER_NAME |
string(19) "shop.synergohub.com" |
SERVER_PORT |
string(3) "443" |
SERVER_PROTOCOL |
string(8) "HTTP/1.1" |
SERVER_SIGNATURE |
string(0) "" |
SERVER_SOFTWARE |
string(6) "Apache" |
SSL_TLS_SNI |
string(19) "shop.synergohub.com" |
TZ |
string(15) "Europe/Budapest" |
UNIQUE_ID |
string(27) "aVH0bOAH2TfTjairR_s5XQAAAAQ" |
ORIG_PATH_INFO |
string(7) "/aruhaz" |
ORIG_PATH_TRANSLATED |
string(49) "/home/synergohub/webshop.synergohub.com/index.php" |
PHP_SELF |
string(10) "/index.php" |
REQUEST_TIME_FLOAT |
float 1766978668,26 |
REQUEST_TIME |
integer 1766978668 |
argv |
array(0) |
argc |
integer 0 |
Database_Exception [ 1046 ]:
MODPATH/database/classes/kohana/database/mysql.php [ 194 ]
189 {
190 // This benchmark is worthless
191 Profiler::delete($benchmark);
192 }
193
194 throw new Database_Exception(':error [ :query ]',
195 array(':error' => mysql_error($this->_connection), ':query' => $sql),
196 mysql_errno($this->_connection));
197 }
198
199 if (isset($benchmark))
-
MODPATH/database/classes/kohana/database/mysql.php [ 359 ] » Kohana_Database_MySQL->query(arguments)
0integer 1
1string(33) "SHOW FULL COLUMNS FROM `products`"2bool FALSE
354 $result = $this->query(Database::SELECT, 'SHOW FULL COLUMNS FROM '.$table.' LIKE '.$this->quote($like), FALSE); 355 } 356 else 357 { 358 // Find all column names 359 $result = $this->query(Database::SELECT, 'SHOW FULL COLUMNS FROM '.$table, FALSE); 360 } 361 362 $count = 0; 363 $columns = array(); 364 foreach ($result as $row) -
MODPATH/orm/classes/kohana/orm.php [ 1668 ] » Kohana_Database_MySQL->list_columns(arguments)
0string(8) "products"1663 * @return array 1664 */ 1665 public function list_columns() 1666 { 1667 // Proxy to database 1668 return $this->_db->list_columns($this->_table_name); 1669 } 1670 1671 /** 1672 * Returns an ORM model for the given one-one related alias 1673 * -
MODPATH/orm/classes/kohana/orm.php [ 444 ] » Kohana_ORM->list_columns()
439 $this->_table_columns = ORM::$_column_cache[$this->_object_name]; 440 } 441 else 442 { 443 // Grab column information from database 444 $this->_table_columns = $this->list_columns(); 445 446 // Load column cache 447 ORM::$_column_cache[$this->_object_name] = $this->_table_columns; 448 } 449 } -
MODPATH/orm/classes/kohana/orm.php [ 389 ] » Kohana_ORM->reload_columns()
384 { 385 $this->{$property} = $value; 386 } 387 388 // Load column information 389 $this->reload_columns(); 390 391 // Clear initial model state 392 $this->clear(); 393 } 394 -
APPPATH/classes/orm.php [ 59 ] » Kohana_ORM->_initialize()
54 private $old = array(); 55 private $new = array(); 56 57 public function __construct($id = NULL) 58 { 59 $this->_initialize(); 60 61 if ($id !== NULL) 62 { 63 if (is_array($id)) 64 { -
MODPATH/orm/classes/kohana/orm.php [ 46 ] » ORM->__construct(arguments)
0integer 23
41 public static function factory($model, $id = NULL) 42 { 43 // Set class name 44 $model = 'Model_'.$model; 45 46 return new $model($id); 47 } 48 49 /** 50 * "Has one" relationships 51 * @var array -
MODPATH/frontend/views/site/aruhaz/fluxus_prostatae.php [ 7 ] » Kohana_ORM::factory(arguments)
0string(7) "product"1integer 23
2 <div class="product product_fluxus_prostatae"> 3 <!-- <div class="ribbon ribbon-cyan"><div>Ingyenes kiszállítás</div></div> --> 4 <div class="ribbon">Két havi adag</div> 5 6 <div class="priceline"> 7 <?php echo Controller_Site::formatPrice((int) ORM::Factory('product', 23)->getGrossPrice());?> Ft 8 </div> 9 10 <div class="titleline"> 11 <img src="/img/aruhaz/fluxus_prostatae_box.png" width="114" height="114" alt="<?php echo ORM::Factory('product' , 23)->name; ?>"> 12 <?php echo ORM::Factory('product', 23)->name;?> -
SYSPATH/classes/kohana/view.php [ 61 ] » include(arguments)
0string(95) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/aruhaz/fluxus_prostatae.php"56 ob_start(); 57 58 try 59 { 60 // Load the view within the current scope 61 include $kohana_view_filename; 62 } 63 catch (Exception $e) 64 { 65 // Delete the output buffer 66 ob_end_clean(); -
SYSPATH/classes/kohana/view.php [ 348 ] » Kohana_View::capture(arguments)
0string(95) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/aruhaz/fluxus_prostatae.php"1array(2) ( "kohana_view_filename" => string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/aruhaz.php" "kohana_view_data" => array(0) )
343 { 344 throw new View_Exception('You must set the file to use within your view before rendering'); 345 } 346 347 // Combine local and global data and capture the output 348 return View::capture($this->_file, $this->_data); 349 } 350 351 } -
SYSPATH/classes/kohana/view.php [ 228 ] » Kohana_View->render()
223 */ 224 public function __toString() 225 { 226 try 227 { 228 return $this->render(); 229 } 230 catch (Exception $e) 231 { 232 /** 233 * Display the exception message. -
MODPATH/frontend/views/site/aruhaz.php [ 45 ] » Kohana_View->__toString()
40 41 <!-- neocartil --> 42 <?php echo View::factory('site/aruhaz/neocartil', get_defined_vars()); ?> 43 44 <!-- fluxus_prostate --> 45 <?php echo View::factory('site/aruhaz/fluxus_prostatae', get_defined_vars()); ?> 46 47 <!-- neocartil pro --> 48 <?php echo View::factory('site/aruhaz/neocartil_pro', get_defined_vars()); ?> 49 50 <!-- resistar_pro --> -
SYSPATH/classes/kohana/view.php [ 61 ] » include(arguments)
0string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/aruhaz.php"56 ob_start(); 57 58 try 59 { 60 // Load the view within the current scope 61 include $kohana_view_filename; 62 } 63 catch (Exception $e) 64 { 65 // Delete the output buffer 66 ob_end_clean(); -
SYSPATH/classes/kohana/view.php [ 348 ] » Kohana_View::capture(arguments)
0string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/aruhaz.php"1array(0)343 { 344 throw new View_Exception('You must set the file to use within your view before rendering'); 345 } 346 347 // Combine local and global data and capture the output 348 return View::capture($this->_file, $this->_data); 349 } 350 351 } -
SYSPATH/classes/kohana/view.php [ 228 ] » Kohana_View->render()
223 */ 224 public function __toString() 225 { 226 try 227 { 228 return $this->render(); 229 } 230 catch (Exception $e) 231 { 232 /** 233 * Display the exception message. -
MODPATH/frontend/views/site/layout.php [ 238 ] » Kohana_View->__toString()
233 <?php endif; ?> 234 </div><!-- header --> 235 236 <div id="content"> 237 238 <?php echo @$content; ?> 239 240 </div><!-- content --> 241 242 <div class="clear"></div> 243 -
SYSPATH/classes/kohana/view.php [ 61 ] » include(arguments)
0string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/layout.php"56 ob_start(); 57 58 try 59 { 60 // Load the view within the current scope 61 include $kohana_view_filename; 62 } 63 catch (Exception $e) 64 { 65 // Delete the output buffer 66 ob_end_clean(); -
SYSPATH/classes/kohana/view.php [ 348 ] » Kohana_View::capture(arguments)
0string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/layout.php"1array(4) ( "user" => bool FALSE "cartnum" => integer 0 "bodyclass" => string(7) "webshop" "content" => object View(2)
{ protected _file => string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/aruhaz.php" protected _data => array(0) })343 { 344 throw new View_Exception('You must set the file to use within your view before rendering'); 345 } 346 347 // Combine local and global data and capture the output 348 return View::capture($this->_file, $this->_data); 349 } 350 351 } -
SYSPATH/classes/kohana/controller/template.php [ 44 ] » Kohana_View->render()
39 */ 40 public function after() 41 { 42 if ($this->auto_render === TRUE) 43 { 44 $this->response->body($this->template->render()); 45 } 46 47 parent::after(); 48 } 49 -
SYSPATH/classes/kohana/controller.php [ 87 ] » Kohana_Controller_Template->after()
82 83 // Execute the action itself 84 $this->{$action}(); 85 86 // Execute the "after action" method 87 $this->after(); 88 89 // Return the response 90 return $this->response; 91 } 92 -
{PHP internal call} » Kohana_Controller->execute()
-
SYSPATH/classes/kohana/request/client/internal.php [ 97 ] » ReflectionMethod->invoke(arguments)
0object Controller_Site(4)
{ public template => object View(2){ protected _file => string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/layout.php" protected _data => array(4) ( "user" => bool FALSE "cartnum" => integer 0 "bodyclass" => string(7) "webshop" "content" => object View(2)public auto_render => bool TRUE public request => object Request(19){ protected _file => string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/aruhaz.php" protected _data => array(0) }) }{ protected _requested_with => NULL protected _method => string(3) "GET" protected _protocol => string(8) "HTTP/1.1" protected _secure => bool TRUE protected _referrer => NULL protected _route => object Route(5)public response => object Response(5){ protected _filters => array(0) protected _uri => string(6) "aruhaz" protected _regex => array(0) protected _defaults => array(2) ( "controller" => string(4) "site" "action" => string(6) "aruhaz" ) protected _route_regex => string(12) "#^aruhaz$#uD" }protected _routes => array(0) protected _header => object HTTP_Header(0){ }protected _body => NULL protected _directory => string(0) "" protected _controller => string(4) "Site" protected _action => string(6) "aruhaz" protected _uri => string(6) "aruhaz" protected _external => bool FALSE protected _params => array(0) protected _get => array(0) protected _post => array(0) protected _cookies => array(0) protected _client => object Request_Client_Internal(9){ protected _previous_environment => NULL protected _cache => NULL protected _follow => bool FALSE protected _follow_headers => array(1) ( 0 => string(13) "Authorization" ) protected _strict_redirect => bool TRUE protected _header_callbacks => array(1) ( "Location" => string(34) "Request_Client::on_header_location" ) protected _max_callback_depth => integer 5 protected _callback_depth => integer 1 protected _callback_params => array(0) }}{ protected _status => integer 200 protected _header => object HTTP_Header(0)}{ }protected _body => string(0) "" protected _cookies => array(0) protected _protocol => string(8) "HTTP/1.1" }92 93 // Create a new instance of the controller 94 $controller = $class->newInstance($request, $response); 95 96 // Run the controller's execute() method 97 $response = $class->getMethod('execute')->invoke($controller); 98 99 if ( ! $response instanceof Response) 100 { 101 // Controller failed to return a Response. 102 throw new Kohana_Exception('Controller failed to return a Response'); -
SYSPATH/classes/kohana/request/client.php [ 114 ] » Kohana_Request_Client_Internal->execute_request(arguments)
0object Request(19)
{ protected _requested_with => NULL protected _method => string(3) "GET" protected _protocol => string(8) "HTTP/1.1" protected _secure => bool TRUE protected _referrer => NULL protected _route => object Route(5){ protected _filters => array(0) protected _uri => string(6) "aruhaz" protected _regex => array(0) protected _defaults => array(2) ( "controller" => string(4) "site" "action" => string(6) "aruhaz" ) protected _route_regex => string(12) "#^aruhaz$#uD" }protected _routes => array(0) protected _header => object HTTP_Header(0){ }protected _body => NULL protected _directory => string(0) "" protected _controller => string(4) "Site" protected _action => string(6) "aruhaz" protected _uri => string(6) "aruhaz" protected _external => bool FALSE protected _params => array(0) protected _get => array(0) protected _post => array(0) protected _cookies => array(0) protected _client => object Request_Client_Internal(9){ protected _previous_environment => NULL protected _cache => NULL protected _follow => bool FALSE protected _follow_headers => array(1) ( 0 => string(13) "Authorization" ) protected _strict_redirect => bool TRUE protected _header_callbacks => array(1) ( "Location" => string(34) "Request_Client::on_header_location" ) protected _max_callback_depth => integer 5 protected _callback_depth => integer 1 protected _callback_params => array(0) }}1object Response(5)
{ protected _status => integer 200 protected _header => object HTTP_Header(0){ }protected _body => string(0) "" protected _cookies => array(0) protected _protocol => string(8) "HTTP/1.1" }109 $orig_response = $response = Response::factory(array('_protocol' => $request->protocol())); 110 111 if (($cache = $this->cache()) instanceof HTTP_Cache) 112 return $cache->execute($this, $request, $response); 113 114 $response = $this->execute_request($request, $response); 115 116 // Execute response callbacks 117 foreach ($this->header_callbacks() as $header => $callback) 118 { 119 if ($response->headers($header)) -
SYSPATH/classes/kohana/request.php [ 986 ] » Kohana_Request_Client->execute(arguments)
0object Request(19)
{ protected _requested_with => NULL protected _method => string(3) "GET" protected _protocol => string(8) "HTTP/1.1" protected _secure => bool TRUE protected _referrer => NULL protected _route => object Route(5){ protected _filters => array(0) protected _uri => string(6) "aruhaz" protected _regex => array(0) protected _defaults => array(2) ( "controller" => string(4) "site" "action" => string(6) "aruhaz" ) protected _route_regex => string(12) "#^aruhaz$#uD" }protected _routes => array(0) protected _header => object HTTP_Header(0){ }protected _body => NULL protected _directory => string(0) "" protected _controller => string(4) "Site" protected _action => string(6) "aruhaz" protected _uri => string(6) "aruhaz" protected _external => bool FALSE protected _params => array(0) protected _get => array(0) protected _post => array(0) protected _cookies => array(0) protected _client => object Request_Client_Internal(9){ protected _previous_environment => NULL protected _cache => NULL protected _follow => bool FALSE protected _follow_headers => array(1) ( 0 => string(13) "Authorization" ) protected _strict_redirect => bool TRUE protected _header_callbacks => array(1) ( "Location" => string(34) "Request_Client::on_header_location" ) protected _max_callback_depth => integer 5 protected _callback_depth => integer 1 protected _callback_params => array(0) }}981 throw new Request_Exception('Unable to execute :uri without a Kohana_Request_Client', array( 982 ':uri' => $this->_uri, 983 )); 984 } 985 986 return $this->_client->execute($this); 987 } 988 989 /** 990 * Returns whether this request is the initial request kohana received. 991 * Can be used to test for sub requests. -
DOCROOT/index.php [ 120 ] » Kohana_Request->execute()
115 /** 116 * Execute the main request. A source of the URI can be passed, eg: $_SERVER['PATH_INFO']. 117 * If no source is specified, the URI will be automatically detected. 118 */ 119 echo Request::factory(TRUE, array(), FALSE) 120 ->execute() 121 ->send_headers(TRUE) 122 ->body(); 123 }
Environment
Included files (102)
DOCROOT/index.php |
APPPATH/bootstrap.php |
SYSPATH/classes/kohana/core.php |
SYSPATH/classes/kohana.php |
SYSPATH/classes/i18n.php |
SYSPATH/classes/kohana/i18n.php |
SYSPATH/classes/http.php |
SYSPATH/classes/kohana/http.php |
SYSPATH/classes/kohana/exception.php |
SYSPATH/classes/kohana/kohana/exception.php |
SYSPATH/classes/log.php |
SYSPATH/classes/kohana/log.php |
SYSPATH/classes/config.php |
SYSPATH/classes/kohana/config.php |
SYSPATH/classes/log/file.php |
SYSPATH/classes/kohana/log/file.php |
SYSPATH/classes/log/writer.php |
SYSPATH/classes/kohana/log/writer.php |
SYSPATH/classes/config/file.php |
SYSPATH/classes/kohana/config/file.php |
SYSPATH/classes/kohana/config/file/reader.php |
SYSPATH/classes/kohana/config/reader.php |
SYSPATH/classes/kohana/config/source.php |
MODPATH/product/init.php |
SYSPATH/classes/route.php |
SYSPATH/classes/kohana/route.php |
MODPATH/email/init.php |
MODPATH/imagefly/init.php |
MODPATH/captcha/init.php |
MODPATH/admin/init.php |
MODPATH/frontend/init.php |
SYSPATH/classes/cookie.php |
SYSPATH/classes/kohana/cookie.php |
MODPATH/admin/classes/papertrail/log.php |
SYSPATH/classes/request.php |
SYSPATH/classes/kohana/request.php |
SYSPATH/classes/http/request.php |
SYSPATH/classes/kohana/http/request.php |
SYSPATH/classes/http/message.php |
SYSPATH/classes/kohana/http/message.php |
SYSPATH/classes/http/header.php |
SYSPATH/classes/kohana/http/header.php |
SYSPATH/classes/request/client/internal.php |
SYSPATH/classes/kohana/request/client/internal.php |
SYSPATH/classes/request/client.php |
SYSPATH/classes/kohana/request/client.php |
SYSPATH/classes/arr.php |
SYSPATH/classes/kohana/arr.php |
SYSPATH/classes/response.php |
SYSPATH/classes/kohana/response.php |
SYSPATH/classes/http/response.php |
SYSPATH/classes/kohana/http/response.php |
SYSPATH/classes/profiler.php |
SYSPATH/classes/kohana/profiler.php |
MODPATH/frontend/classes/controller/site.php |
SYSPATH/classes/controller/template.php |
SYSPATH/classes/kohana/controller/template.php |
SYSPATH/classes/controller.php |
SYSPATH/classes/kohana/controller.php |
SYSPATH/classes/view.php |
SYSPATH/classes/kohana/view.php |
SYSPATH/classes/session.php |
SYSPATH/classes/kohana/session.php |
SYSPATH/config/session.php |
MODPATH/database/config/session.php |
SYSPATH/classes/config/group.php |
SYSPATH/classes/kohana/config/group.php |
SYSPATH/classes/session/native.php |
SYSPATH/classes/kohana/session/native.php |
MODPATH/frontend/views/site/layout.php |
SYSPATH/classes/url.php |
SYSPATH/classes/kohana/url.php |
SYSPATH/classes/utf8.php |
SYSPATH/classes/kohana/utf8.php |
MODPATH/frontend/views/site/aruhaz.php |
MODPATH/frontend/views/site/aruhaz/css.php |
MODPATH/frontend/views/site/aruhaz/xynbio.php |
APPPATH/classes/orm.php |
MODPATH/orm/classes/kohana/orm.php |
SYSPATH/classes/model.php |
SYSPATH/classes/kohana/model.php |
MODPATH/product/classes/model/product.php |
SYSPATH/classes/inflector.php |
SYSPATH/classes/kohana/inflector.php |
SYSPATH/config/inflector.php |
MODPATH/database/classes/database.php |
MODPATH/database/classes/kohana/database.php |
MODPATH/database/config/database.php |
APPPATH/config/database.php |
MODPATH/database/classes/database/mysql.php |
MODPATH/database/classes/kohana/database/mysql.php |
MODPATH/database/classes/database/exception.php |
MODPATH/database/classes/kohana/database/exception.php |
SYSPATH/classes/debug.php |
SYSPATH/classes/kohana/debug.php |
SYSPATH/classes/date.php |
SYSPATH/classes/kohana/date.php |
SYSPATH/views/kohana/error.php |
MODPATH/frontend/views/site/aruhaz/mask.php |
MODPATH/frontend/views/site/aruhaz/novosseum.php |
MODPATH/frontend/views/site/aruhaz/neocartil.php |
MODPATH/frontend/views/site/aruhaz/fluxus_prostatae.php |
Loaded extensions (53)
Core |
date |
ereg |
libxml |
openssl |
pcre |
zlib |
filter |
hash |
pcntl |
readline |
Reflection |
SPL |
session |
standard |
cgi-fcgi |
bcmath |
calendar |
ctype |
curl |
dom |
fileinfo |
ftp |
gd |
imap |
intl |
json |
mbstring |
mcrypt |
mysqlnd |
mysql |
mysqli |
PDO |
pdo_mysql |
pdo_pgsql |
pdo_sqlite |
pgsql |
Phar |
posix |
SimpleXML |
soap |
sockets |
sqlite3 |
tokenizer |
xml |
wddx |
xmlreader |
xmlrpc |
xmlwriter |
xsl |
zip |
mhash |
ionCube Loader |
$_SERVER
CONTEXT_DOCUMENT_ROOT |
string(39) "/home/synergohub/webshop.synergohub.com" |
CONTEXT_PREFIX |
string(0) "" |
DOCUMENT_ROOT |
string(39) "/home/synergohub/webshop.synergohub.com" |
GATEWAY_INTERFACE |
string(7) "CGI/1.1" |
HTTPS |
string(2) "on" |
HTTP_ACCEPT |
string(3) "*/*" |
HTTP_ACCEPT_ENCODING |
string(23) "gzip, br, zstd, deflate" |
HTTP_HOST |
string(19) "shop.synergohub.com" |
HTTP_USER_AGENT |
string(103) "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" |
PATH |
string(13) "/bin:/usr/bin" |
PHP_INI_SCAN_DIR |
string(67) "/opt/cpanel/ea-php56/root/etc:/opt/cpanel/ea-php56/root/etc/php.d:." |
QUERY_STRING |
string(0) "" |
REDIRECT_HTTPS |
string(2) "on" |
REDIRECT_SSL_TLS_SNI |
string(19) "shop.synergohub.com" |
REDIRECT_STATUS |
string(3) "200" |
REDIRECT_UNIQUE_ID |
string(27) "aVH0bOAH2TfTjairR_s5XQAAAAQ" |
REDIRECT_URL |
string(7) "/aruhaz" |
REMOTE_ADDR |
string(13) "216.73.216.85" |
REMOTE_PORT |
string(5) "14248" |
REQUEST_METHOD |
string(3) "GET" |
REQUEST_SCHEME |
string(5) "https" |
REQUEST_URI |
string(7) "/aruhaz" |
SCRIPT_FILENAME |
string(49) "/home/synergohub/webshop.synergohub.com/index.php" |
SCRIPT_NAME |
string(10) "/index.php" |
SERVER_ADDR |
string(14) "185.51.191.204" |
SERVER_ADMIN |
string(29) "webmaster@shop.synergohub.com" |
SERVER_NAME |
string(19) "shop.synergohub.com" |
SERVER_PORT |
string(3) "443" |
SERVER_PROTOCOL |
string(8) "HTTP/1.1" |
SERVER_SIGNATURE |
string(0) "" |
SERVER_SOFTWARE |
string(6) "Apache" |
SSL_TLS_SNI |
string(19) "shop.synergohub.com" |
TZ |
string(15) "Europe/Budapest" |
UNIQUE_ID |
string(27) "aVH0bOAH2TfTjairR_s5XQAAAAQ" |
ORIG_PATH_INFO |
string(7) "/aruhaz" |
ORIG_PATH_TRANSLATED |
string(49) "/home/synergohub/webshop.synergohub.com/index.php" |
PHP_SELF |
string(10) "/index.php" |
REQUEST_TIME_FLOAT |
float 1766978668,26 |
REQUEST_TIME |
integer 1766978668 |
argv |
array(0) |
argc |
integer 0 |
Database_Exception [ 1046 ]:
MODPATH/database/classes/kohana/database/mysql.php [ 194 ]
189 {
190 // This benchmark is worthless
191 Profiler::delete($benchmark);
192 }
193
194 throw new Database_Exception(':error [ :query ]',
195 array(':error' => mysql_error($this->_connection), ':query' => $sql),
196 mysql_errno($this->_connection));
197 }
198
199 if (isset($benchmark))
-
MODPATH/database/classes/kohana/database/mysql.php [ 359 ] » Kohana_Database_MySQL->query(arguments)
0integer 1
1string(33) "SHOW FULL COLUMNS FROM `products`"2bool FALSE
354 $result = $this->query(Database::SELECT, 'SHOW FULL COLUMNS FROM '.$table.' LIKE '.$this->quote($like), FALSE); 355 } 356 else 357 { 358 // Find all column names 359 $result = $this->query(Database::SELECT, 'SHOW FULL COLUMNS FROM '.$table, FALSE); 360 } 361 362 $count = 0; 363 $columns = array(); 364 foreach ($result as $row) -
MODPATH/orm/classes/kohana/orm.php [ 1668 ] » Kohana_Database_MySQL->list_columns(arguments)
0string(8) "products"1663 * @return array 1664 */ 1665 public function list_columns() 1666 { 1667 // Proxy to database 1668 return $this->_db->list_columns($this->_table_name); 1669 } 1670 1671 /** 1672 * Returns an ORM model for the given one-one related alias 1673 * -
MODPATH/orm/classes/kohana/orm.php [ 444 ] » Kohana_ORM->list_columns()
439 $this->_table_columns = ORM::$_column_cache[$this->_object_name]; 440 } 441 else 442 { 443 // Grab column information from database 444 $this->_table_columns = $this->list_columns(); 445 446 // Load column cache 447 ORM::$_column_cache[$this->_object_name] = $this->_table_columns; 448 } 449 } -
MODPATH/orm/classes/kohana/orm.php [ 389 ] » Kohana_ORM->reload_columns()
384 { 385 $this->{$property} = $value; 386 } 387 388 // Load column information 389 $this->reload_columns(); 390 391 // Clear initial model state 392 $this->clear(); 393 } 394 -
APPPATH/classes/orm.php [ 59 ] » Kohana_ORM->_initialize()
54 private $old = array(); 55 private $new = array(); 56 57 public function __construct($id = NULL) 58 { 59 $this->_initialize(); 60 61 if ($id !== NULL) 62 { 63 if (is_array($id)) 64 { -
MODPATH/orm/classes/kohana/orm.php [ 46 ] » ORM->__construct(arguments)
0integer 19
41 public static function factory($model, $id = NULL) 42 { 43 // Set class name 44 $model = 'Model_'.$model; 45 46 return new $model($id); 47 } 48 49 /** 50 * "Has one" relationships 51 * @var array -
MODPATH/frontend/views/site/aruhaz/neocartil_pro.php [ 7 ] » Kohana_ORM::factory(arguments)
0string(7) "product"1integer 19
2 <div class="product product_neocartil pro"> 3 <!-- <div class="ribbon ribbon-cyan"><div>Ingyenes kiszállítás</div></div> --> 4 <!-- <div class="ribbon ribbon-red">Két havi adag</div> --> 5 6 <div class="priceline"> 7 <?php echo Controller_Site::formatPrice((int) ORM::Factory('product', 19)->getGrossPrice());?> Ft 8 </div> 9 10 <div class="titleline"> 11 <img src="/neocartil-pro/img/bg-img-production/product-page-pro.png" width="114" height="114" alt="<?php echo ORM::Factory('product' , 19)->name; ?>"> 12 <?php echo ORM::Factory('product', 19)->name;?> -
SYSPATH/classes/kohana/view.php [ 61 ] » include(arguments)
0string(92) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/aruhaz/neocartil_pro.php"56 ob_start(); 57 58 try 59 { 60 // Load the view within the current scope 61 include $kohana_view_filename; 62 } 63 catch (Exception $e) 64 { 65 // Delete the output buffer 66 ob_end_clean(); -
SYSPATH/classes/kohana/view.php [ 348 ] » Kohana_View::capture(arguments)
0string(92) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/aruhaz/neocartil_pro.php"1array(2) ( "kohana_view_filename" => string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/aruhaz.php" "kohana_view_data" => array(0) )
343 { 344 throw new View_Exception('You must set the file to use within your view before rendering'); 345 } 346 347 // Combine local and global data and capture the output 348 return View::capture($this->_file, $this->_data); 349 } 350 351 } -
SYSPATH/classes/kohana/view.php [ 228 ] » Kohana_View->render()
223 */ 224 public function __toString() 225 { 226 try 227 { 228 return $this->render(); 229 } 230 catch (Exception $e) 231 { 232 /** 233 * Display the exception message. -
MODPATH/frontend/views/site/aruhaz.php [ 48 ] » Kohana_View->__toString()
43 44 <!-- fluxus_prostate --> 45 <?php echo View::factory('site/aruhaz/fluxus_prostatae', get_defined_vars()); ?> 46 47 <!-- neocartil pro --> 48 <?php echo View::factory('site/aruhaz/neocartil_pro', get_defined_vars()); ?> 49 50 <!-- resistar_pro --> 51 <?php echo View::factory('site/aruhaz/resistar_pro', get_defined_vars()); ?> 52 53 <!-- yxor --> -
SYSPATH/classes/kohana/view.php [ 61 ] » include(arguments)
0string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/aruhaz.php"56 ob_start(); 57 58 try 59 { 60 // Load the view within the current scope 61 include $kohana_view_filename; 62 } 63 catch (Exception $e) 64 { 65 // Delete the output buffer 66 ob_end_clean(); -
SYSPATH/classes/kohana/view.php [ 348 ] » Kohana_View::capture(arguments)
0string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/aruhaz.php"1array(0)343 { 344 throw new View_Exception('You must set the file to use within your view before rendering'); 345 } 346 347 // Combine local and global data and capture the output 348 return View::capture($this->_file, $this->_data); 349 } 350 351 } -
SYSPATH/classes/kohana/view.php [ 228 ] » Kohana_View->render()
223 */ 224 public function __toString() 225 { 226 try 227 { 228 return $this->render(); 229 } 230 catch (Exception $e) 231 { 232 /** 233 * Display the exception message. -
MODPATH/frontend/views/site/layout.php [ 238 ] » Kohana_View->__toString()
233 <?php endif; ?> 234 </div><!-- header --> 235 236 <div id="content"> 237 238 <?php echo @$content; ?> 239 240 </div><!-- content --> 241 242 <div class="clear"></div> 243 -
SYSPATH/classes/kohana/view.php [ 61 ] » include(arguments)
0string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/layout.php"56 ob_start(); 57 58 try 59 { 60 // Load the view within the current scope 61 include $kohana_view_filename; 62 } 63 catch (Exception $e) 64 { 65 // Delete the output buffer 66 ob_end_clean(); -
SYSPATH/classes/kohana/view.php [ 348 ] » Kohana_View::capture(arguments)
0string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/layout.php"1array(4) ( "user" => bool FALSE "cartnum" => integer 0 "bodyclass" => string(7) "webshop" "content" => object View(2)
{ protected _file => string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/aruhaz.php" protected _data => array(0) })343 { 344 throw new View_Exception('You must set the file to use within your view before rendering'); 345 } 346 347 // Combine local and global data and capture the output 348 return View::capture($this->_file, $this->_data); 349 } 350 351 } -
SYSPATH/classes/kohana/controller/template.php [ 44 ] » Kohana_View->render()
39 */ 40 public function after() 41 { 42 if ($this->auto_render === TRUE) 43 { 44 $this->response->body($this->template->render()); 45 } 46 47 parent::after(); 48 } 49 -
SYSPATH/classes/kohana/controller.php [ 87 ] » Kohana_Controller_Template->after()
82 83 // Execute the action itself 84 $this->{$action}(); 85 86 // Execute the "after action" method 87 $this->after(); 88 89 // Return the response 90 return $this->response; 91 } 92 -
{PHP internal call} » Kohana_Controller->execute()
-
SYSPATH/classes/kohana/request/client/internal.php [ 97 ] » ReflectionMethod->invoke(arguments)
0object Controller_Site(4)
{ public template => object View(2){ protected _file => string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/layout.php" protected _data => array(4) ( "user" => bool FALSE "cartnum" => integer 0 "bodyclass" => string(7) "webshop" "content" => object View(2)public auto_render => bool TRUE public request => object Request(19){ protected _file => string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/aruhaz.php" protected _data => array(0) }) }{ protected _requested_with => NULL protected _method => string(3) "GET" protected _protocol => string(8) "HTTP/1.1" protected _secure => bool TRUE protected _referrer => NULL protected _route => object Route(5)public response => object Response(5){ protected _filters => array(0) protected _uri => string(6) "aruhaz" protected _regex => array(0) protected _defaults => array(2) ( "controller" => string(4) "site" "action" => string(6) "aruhaz" ) protected _route_regex => string(12) "#^aruhaz$#uD" }protected _routes => array(0) protected _header => object HTTP_Header(0){ }protected _body => NULL protected _directory => string(0) "" protected _controller => string(4) "Site" protected _action => string(6) "aruhaz" protected _uri => string(6) "aruhaz" protected _external => bool FALSE protected _params => array(0) protected _get => array(0) protected _post => array(0) protected _cookies => array(0) protected _client => object Request_Client_Internal(9){ protected _previous_environment => NULL protected _cache => NULL protected _follow => bool FALSE protected _follow_headers => array(1) ( 0 => string(13) "Authorization" ) protected _strict_redirect => bool TRUE protected _header_callbacks => array(1) ( "Location" => string(34) "Request_Client::on_header_location" ) protected _max_callback_depth => integer 5 protected _callback_depth => integer 1 protected _callback_params => array(0) }}{ protected _status => integer 200 protected _header => object HTTP_Header(0)}{ }protected _body => string(0) "" protected _cookies => array(0) protected _protocol => string(8) "HTTP/1.1" }92 93 // Create a new instance of the controller 94 $controller = $class->newInstance($request, $response); 95 96 // Run the controller's execute() method 97 $response = $class->getMethod('execute')->invoke($controller); 98 99 if ( ! $response instanceof Response) 100 { 101 // Controller failed to return a Response. 102 throw new Kohana_Exception('Controller failed to return a Response'); -
SYSPATH/classes/kohana/request/client.php [ 114 ] » Kohana_Request_Client_Internal->execute_request(arguments)
0object Request(19)
{ protected _requested_with => NULL protected _method => string(3) "GET" protected _protocol => string(8) "HTTP/1.1" protected _secure => bool TRUE protected _referrer => NULL protected _route => object Route(5){ protected _filters => array(0) protected _uri => string(6) "aruhaz" protected _regex => array(0) protected _defaults => array(2) ( "controller" => string(4) "site" "action" => string(6) "aruhaz" ) protected _route_regex => string(12) "#^aruhaz$#uD" }protected _routes => array(0) protected _header => object HTTP_Header(0){ }protected _body => NULL protected _directory => string(0) "" protected _controller => string(4) "Site" protected _action => string(6) "aruhaz" protected _uri => string(6) "aruhaz" protected _external => bool FALSE protected _params => array(0) protected _get => array(0) protected _post => array(0) protected _cookies => array(0) protected _client => object Request_Client_Internal(9){ protected _previous_environment => NULL protected _cache => NULL protected _follow => bool FALSE protected _follow_headers => array(1) ( 0 => string(13) "Authorization" ) protected _strict_redirect => bool TRUE protected _header_callbacks => array(1) ( "Location" => string(34) "Request_Client::on_header_location" ) protected _max_callback_depth => integer 5 protected _callback_depth => integer 1 protected _callback_params => array(0) }}1object Response(5)
{ protected _status => integer 200 protected _header => object HTTP_Header(0){ }protected _body => string(0) "" protected _cookies => array(0) protected _protocol => string(8) "HTTP/1.1" }109 $orig_response = $response = Response::factory(array('_protocol' => $request->protocol())); 110 111 if (($cache = $this->cache()) instanceof HTTP_Cache) 112 return $cache->execute($this, $request, $response); 113 114 $response = $this->execute_request($request, $response); 115 116 // Execute response callbacks 117 foreach ($this->header_callbacks() as $header => $callback) 118 { 119 if ($response->headers($header)) -
SYSPATH/classes/kohana/request.php [ 986 ] » Kohana_Request_Client->execute(arguments)
0object Request(19)
{ protected _requested_with => NULL protected _method => string(3) "GET" protected _protocol => string(8) "HTTP/1.1" protected _secure => bool TRUE protected _referrer => NULL protected _route => object Route(5){ protected _filters => array(0) protected _uri => string(6) "aruhaz" protected _regex => array(0) protected _defaults => array(2) ( "controller" => string(4) "site" "action" => string(6) "aruhaz" ) protected _route_regex => string(12) "#^aruhaz$#uD" }protected _routes => array(0) protected _header => object HTTP_Header(0){ }protected _body => NULL protected _directory => string(0) "" protected _controller => string(4) "Site" protected _action => string(6) "aruhaz" protected _uri => string(6) "aruhaz" protected _external => bool FALSE protected _params => array(0) protected _get => array(0) protected _post => array(0) protected _cookies => array(0) protected _client => object Request_Client_Internal(9){ protected _previous_environment => NULL protected _cache => NULL protected _follow => bool FALSE protected _follow_headers => array(1) ( 0 => string(13) "Authorization" ) protected _strict_redirect => bool TRUE protected _header_callbacks => array(1) ( "Location" => string(34) "Request_Client::on_header_location" ) protected _max_callback_depth => integer 5 protected _callback_depth => integer 1 protected _callback_params => array(0) }}981 throw new Request_Exception('Unable to execute :uri without a Kohana_Request_Client', array( 982 ':uri' => $this->_uri, 983 )); 984 } 985 986 return $this->_client->execute($this); 987 } 988 989 /** 990 * Returns whether this request is the initial request kohana received. 991 * Can be used to test for sub requests. -
DOCROOT/index.php [ 120 ] » Kohana_Request->execute()
115 /** 116 * Execute the main request. A source of the URI can be passed, eg: $_SERVER['PATH_INFO']. 117 * If no source is specified, the URI will be automatically detected. 118 */ 119 echo Request::factory(TRUE, array(), FALSE) 120 ->execute() 121 ->send_headers(TRUE) 122 ->body(); 123 }
Environment
Included files (103)
DOCROOT/index.php |
APPPATH/bootstrap.php |
SYSPATH/classes/kohana/core.php |
SYSPATH/classes/kohana.php |
SYSPATH/classes/i18n.php |
SYSPATH/classes/kohana/i18n.php |
SYSPATH/classes/http.php |
SYSPATH/classes/kohana/http.php |
SYSPATH/classes/kohana/exception.php |
SYSPATH/classes/kohana/kohana/exception.php |
SYSPATH/classes/log.php |
SYSPATH/classes/kohana/log.php |
SYSPATH/classes/config.php |
SYSPATH/classes/kohana/config.php |
SYSPATH/classes/log/file.php |
SYSPATH/classes/kohana/log/file.php |
SYSPATH/classes/log/writer.php |
SYSPATH/classes/kohana/log/writer.php |
SYSPATH/classes/config/file.php |
SYSPATH/classes/kohana/config/file.php |
SYSPATH/classes/kohana/config/file/reader.php |
SYSPATH/classes/kohana/config/reader.php |
SYSPATH/classes/kohana/config/source.php |
MODPATH/product/init.php |
SYSPATH/classes/route.php |
SYSPATH/classes/kohana/route.php |
MODPATH/email/init.php |
MODPATH/imagefly/init.php |
MODPATH/captcha/init.php |
MODPATH/admin/init.php |
MODPATH/frontend/init.php |
SYSPATH/classes/cookie.php |
SYSPATH/classes/kohana/cookie.php |
MODPATH/admin/classes/papertrail/log.php |
SYSPATH/classes/request.php |
SYSPATH/classes/kohana/request.php |
SYSPATH/classes/http/request.php |
SYSPATH/classes/kohana/http/request.php |
SYSPATH/classes/http/message.php |
SYSPATH/classes/kohana/http/message.php |
SYSPATH/classes/http/header.php |
SYSPATH/classes/kohana/http/header.php |
SYSPATH/classes/request/client/internal.php |
SYSPATH/classes/kohana/request/client/internal.php |
SYSPATH/classes/request/client.php |
SYSPATH/classes/kohana/request/client.php |
SYSPATH/classes/arr.php |
SYSPATH/classes/kohana/arr.php |
SYSPATH/classes/response.php |
SYSPATH/classes/kohana/response.php |
SYSPATH/classes/http/response.php |
SYSPATH/classes/kohana/http/response.php |
SYSPATH/classes/profiler.php |
SYSPATH/classes/kohana/profiler.php |
MODPATH/frontend/classes/controller/site.php |
SYSPATH/classes/controller/template.php |
SYSPATH/classes/kohana/controller/template.php |
SYSPATH/classes/controller.php |
SYSPATH/classes/kohana/controller.php |
SYSPATH/classes/view.php |
SYSPATH/classes/kohana/view.php |
SYSPATH/classes/session.php |
SYSPATH/classes/kohana/session.php |
SYSPATH/config/session.php |
MODPATH/database/config/session.php |
SYSPATH/classes/config/group.php |
SYSPATH/classes/kohana/config/group.php |
SYSPATH/classes/session/native.php |
SYSPATH/classes/kohana/session/native.php |
MODPATH/frontend/views/site/layout.php |
SYSPATH/classes/url.php |
SYSPATH/classes/kohana/url.php |
SYSPATH/classes/utf8.php |
SYSPATH/classes/kohana/utf8.php |
MODPATH/frontend/views/site/aruhaz.php |
MODPATH/frontend/views/site/aruhaz/css.php |
MODPATH/frontend/views/site/aruhaz/xynbio.php |
APPPATH/classes/orm.php |
MODPATH/orm/classes/kohana/orm.php |
SYSPATH/classes/model.php |
SYSPATH/classes/kohana/model.php |
MODPATH/product/classes/model/product.php |
SYSPATH/classes/inflector.php |
SYSPATH/classes/kohana/inflector.php |
SYSPATH/config/inflector.php |
MODPATH/database/classes/database.php |
MODPATH/database/classes/kohana/database.php |
MODPATH/database/config/database.php |
APPPATH/config/database.php |
MODPATH/database/classes/database/mysql.php |
MODPATH/database/classes/kohana/database/mysql.php |
MODPATH/database/classes/database/exception.php |
MODPATH/database/classes/kohana/database/exception.php |
SYSPATH/classes/debug.php |
SYSPATH/classes/kohana/debug.php |
SYSPATH/classes/date.php |
SYSPATH/classes/kohana/date.php |
SYSPATH/views/kohana/error.php |
MODPATH/frontend/views/site/aruhaz/mask.php |
MODPATH/frontend/views/site/aruhaz/novosseum.php |
MODPATH/frontend/views/site/aruhaz/neocartil.php |
MODPATH/frontend/views/site/aruhaz/fluxus_prostatae.php |
MODPATH/frontend/views/site/aruhaz/neocartil_pro.php |
Loaded extensions (53)
Core |
date |
ereg |
libxml |
openssl |
pcre |
zlib |
filter |
hash |
pcntl |
readline |
Reflection |
SPL |
session |
standard |
cgi-fcgi |
bcmath |
calendar |
ctype |
curl |
dom |
fileinfo |
ftp |
gd |
imap |
intl |
json |
mbstring |
mcrypt |
mysqlnd |
mysql |
mysqli |
PDO |
pdo_mysql |
pdo_pgsql |
pdo_sqlite |
pgsql |
Phar |
posix |
SimpleXML |
soap |
sockets |
sqlite3 |
tokenizer |
xml |
wddx |
xmlreader |
xmlrpc |
xmlwriter |
xsl |
zip |
mhash |
ionCube Loader |
$_SERVER
CONTEXT_DOCUMENT_ROOT |
string(39) "/home/synergohub/webshop.synergohub.com" |
CONTEXT_PREFIX |
string(0) "" |
DOCUMENT_ROOT |
string(39) "/home/synergohub/webshop.synergohub.com" |
GATEWAY_INTERFACE |
string(7) "CGI/1.1" |
HTTPS |
string(2) "on" |
HTTP_ACCEPT |
string(3) "*/*" |
HTTP_ACCEPT_ENCODING |
string(23) "gzip, br, zstd, deflate" |
HTTP_HOST |
string(19) "shop.synergohub.com" |
HTTP_USER_AGENT |
string(103) "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" |
PATH |
string(13) "/bin:/usr/bin" |
PHP_INI_SCAN_DIR |
string(67) "/opt/cpanel/ea-php56/root/etc:/opt/cpanel/ea-php56/root/etc/php.d:." |
QUERY_STRING |
string(0) "" |
REDIRECT_HTTPS |
string(2) "on" |
REDIRECT_SSL_TLS_SNI |
string(19) "shop.synergohub.com" |
REDIRECT_STATUS |
string(3) "200" |
REDIRECT_UNIQUE_ID |
string(27) "aVH0bOAH2TfTjairR_s5XQAAAAQ" |
REDIRECT_URL |
string(7) "/aruhaz" |
REMOTE_ADDR |
string(13) "216.73.216.85" |
REMOTE_PORT |
string(5) "14248" |
REQUEST_METHOD |
string(3) "GET" |
REQUEST_SCHEME |
string(5) "https" |
REQUEST_URI |
string(7) "/aruhaz" |
SCRIPT_FILENAME |
string(49) "/home/synergohub/webshop.synergohub.com/index.php" |
SCRIPT_NAME |
string(10) "/index.php" |
SERVER_ADDR |
string(14) "185.51.191.204" |
SERVER_ADMIN |
string(29) "webmaster@shop.synergohub.com" |
SERVER_NAME |
string(19) "shop.synergohub.com" |
SERVER_PORT |
string(3) "443" |
SERVER_PROTOCOL |
string(8) "HTTP/1.1" |
SERVER_SIGNATURE |
string(0) "" |
SERVER_SOFTWARE |
string(6) "Apache" |
SSL_TLS_SNI |
string(19) "shop.synergohub.com" |
TZ |
string(15) "Europe/Budapest" |
UNIQUE_ID |
string(27) "aVH0bOAH2TfTjairR_s5XQAAAAQ" |
ORIG_PATH_INFO |
string(7) "/aruhaz" |
ORIG_PATH_TRANSLATED |
string(49) "/home/synergohub/webshop.synergohub.com/index.php" |
PHP_SELF |
string(10) "/index.php" |
REQUEST_TIME_FLOAT |
float 1766978668,26 |
REQUEST_TIME |
integer 1766978668 |
argv |
array(0) |
argc |
integer 0 |
Database_Exception [ 1046 ]:
MODPATH/database/classes/kohana/database/mysql.php [ 194 ]
189 {
190 // This benchmark is worthless
191 Profiler::delete($benchmark);
192 }
193
194 throw new Database_Exception(':error [ :query ]',
195 array(':error' => mysql_error($this->_connection), ':query' => $sql),
196 mysql_errno($this->_connection));
197 }
198
199 if (isset($benchmark))
-
MODPATH/database/classes/kohana/database/mysql.php [ 359 ] » Kohana_Database_MySQL->query(arguments)
0integer 1
1string(33) "SHOW FULL COLUMNS FROM `products`"2bool FALSE
354 $result = $this->query(Database::SELECT, 'SHOW FULL COLUMNS FROM '.$table.' LIKE '.$this->quote($like), FALSE); 355 } 356 else 357 { 358 // Find all column names 359 $result = $this->query(Database::SELECT, 'SHOW FULL COLUMNS FROM '.$table, FALSE); 360 } 361 362 $count = 0; 363 $columns = array(); 364 foreach ($result as $row) -
MODPATH/orm/classes/kohana/orm.php [ 1668 ] » Kohana_Database_MySQL->list_columns(arguments)
0string(8) "products"1663 * @return array 1664 */ 1665 public function list_columns() 1666 { 1667 // Proxy to database 1668 return $this->_db->list_columns($this->_table_name); 1669 } 1670 1671 /** 1672 * Returns an ORM model for the given one-one related alias 1673 * -
MODPATH/orm/classes/kohana/orm.php [ 444 ] » Kohana_ORM->list_columns()
439 $this->_table_columns = ORM::$_column_cache[$this->_object_name]; 440 } 441 else 442 { 443 // Grab column information from database 444 $this->_table_columns = $this->list_columns(); 445 446 // Load column cache 447 ORM::$_column_cache[$this->_object_name] = $this->_table_columns; 448 } 449 } -
MODPATH/orm/classes/kohana/orm.php [ 389 ] » Kohana_ORM->reload_columns()
384 { 385 $this->{$property} = $value; 386 } 387 388 // Load column information 389 $this->reload_columns(); 390 391 // Clear initial model state 392 $this->clear(); 393 } 394 -
APPPATH/classes/orm.php [ 59 ] » Kohana_ORM->_initialize()
54 private $old = array(); 55 private $new = array(); 56 57 public function __construct($id = NULL) 58 { 59 $this->_initialize(); 60 61 if ($id !== NULL) 62 { 63 if (is_array($id)) 64 { -
MODPATH/orm/classes/kohana/orm.php [ 46 ] » ORM->__construct(arguments)
0integer 26
41 public static function factory($model, $id = NULL) 42 { 43 // Set class name 44 $model = 'Model_'.$model; 45 46 return new $model($id); 47 } 48 49 /** 50 * "Has one" relationships 51 * @var array -
MODPATH/frontend/views/site/aruhaz/resistar_pro.php [ 7 ] » Kohana_ORM::factory(arguments)
0string(7) "product"1integer 26
2 <div class="product product_resistar_pro"> 3 <!-- <div class="ribbon ribbon-cyan"><div>Ingyenes kiszállítás</div></div> --> 4 <!-- <div class="ribbon ribbon-red">Két havi adag</div> --> 5 6 <div class="priceline"> 7 <?php echo Controller_Site::formatPrice((int) ORM::Factory('product', 26)->getGrossPrice());?> Ft 8 </div> 9 10 <div class="titleline"> 11 <img src="/img/aruhaz/resistar_pro_box.png" width="114" height="114" alt="<?php echo ORM::Factory('product' , 26)->name; ?>"> 12 <?php echo ORM::Factory('product', 26)->name;?> -
SYSPATH/classes/kohana/view.php [ 61 ] » include(arguments)
0string(91) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/aruhaz/resistar_pro.php"56 ob_start(); 57 58 try 59 { 60 // Load the view within the current scope 61 include $kohana_view_filename; 62 } 63 catch (Exception $e) 64 { 65 // Delete the output buffer 66 ob_end_clean(); -
SYSPATH/classes/kohana/view.php [ 348 ] » Kohana_View::capture(arguments)
0string(91) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/aruhaz/resistar_pro.php"1array(2) ( "kohana_view_filename" => string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/aruhaz.php" "kohana_view_data" => array(0) )
343 { 344 throw new View_Exception('You must set the file to use within your view before rendering'); 345 } 346 347 // Combine local and global data and capture the output 348 return View::capture($this->_file, $this->_data); 349 } 350 351 } -
SYSPATH/classes/kohana/view.php [ 228 ] » Kohana_View->render()
223 */ 224 public function __toString() 225 { 226 try 227 { 228 return $this->render(); 229 } 230 catch (Exception $e) 231 { 232 /** 233 * Display the exception message. -
MODPATH/frontend/views/site/aruhaz.php [ 51 ] » Kohana_View->__toString()
46 47 <!-- neocartil pro --> 48 <?php echo View::factory('site/aruhaz/neocartil_pro', get_defined_vars()); ?> 49 50 <!-- resistar_pro --> 51 <?php echo View::factory('site/aruhaz/resistar_pro', get_defined_vars()); ?> 52 53 <!-- yxor --> 54 <?php echo View::factory('site/aruhaz/yxor', get_defined_vars()); ?> 55 56 <!-- novosseum_dental --> -
SYSPATH/classes/kohana/view.php [ 61 ] » include(arguments)
0string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/aruhaz.php"56 ob_start(); 57 58 try 59 { 60 // Load the view within the current scope 61 include $kohana_view_filename; 62 } 63 catch (Exception $e) 64 { 65 // Delete the output buffer 66 ob_end_clean(); -
SYSPATH/classes/kohana/view.php [ 348 ] » Kohana_View::capture(arguments)
0string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/aruhaz.php"1array(0)343 { 344 throw new View_Exception('You must set the file to use within your view before rendering'); 345 } 346 347 // Combine local and global data and capture the output 348 return View::capture($this->_file, $this->_data); 349 } 350 351 } -
SYSPATH/classes/kohana/view.php [ 228 ] » Kohana_View->render()
223 */ 224 public function __toString() 225 { 226 try 227 { 228 return $this->render(); 229 } 230 catch (Exception $e) 231 { 232 /** 233 * Display the exception message. -
MODPATH/frontend/views/site/layout.php [ 238 ] » Kohana_View->__toString()
233 <?php endif; ?> 234 </div><!-- header --> 235 236 <div id="content"> 237 238 <?php echo @$content; ?> 239 240 </div><!-- content --> 241 242 <div class="clear"></div> 243 -
SYSPATH/classes/kohana/view.php [ 61 ] » include(arguments)
0string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/layout.php"56 ob_start(); 57 58 try 59 { 60 // Load the view within the current scope 61 include $kohana_view_filename; 62 } 63 catch (Exception $e) 64 { 65 // Delete the output buffer 66 ob_end_clean(); -
SYSPATH/classes/kohana/view.php [ 348 ] » Kohana_View::capture(arguments)
0string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/layout.php"1array(4) ( "user" => bool FALSE "cartnum" => integer 0 "bodyclass" => string(7) "webshop" "content" => object View(2)
{ protected _file => string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/aruhaz.php" protected _data => array(0) })343 { 344 throw new View_Exception('You must set the file to use within your view before rendering'); 345 } 346 347 // Combine local and global data and capture the output 348 return View::capture($this->_file, $this->_data); 349 } 350 351 } -
SYSPATH/classes/kohana/controller/template.php [ 44 ] » Kohana_View->render()
39 */ 40 public function after() 41 { 42 if ($this->auto_render === TRUE) 43 { 44 $this->response->body($this->template->render()); 45 } 46 47 parent::after(); 48 } 49 -
SYSPATH/classes/kohana/controller.php [ 87 ] » Kohana_Controller_Template->after()
82 83 // Execute the action itself 84 $this->{$action}(); 85 86 // Execute the "after action" method 87 $this->after(); 88 89 // Return the response 90 return $this->response; 91 } 92 -
{PHP internal call} » Kohana_Controller->execute()
-
SYSPATH/classes/kohana/request/client/internal.php [ 97 ] » ReflectionMethod->invoke(arguments)
0object Controller_Site(4)
{ public template => object View(2){ protected _file => string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/layout.php" protected _data => array(4) ( "user" => bool FALSE "cartnum" => integer 0 "bodyclass" => string(7) "webshop" "content" => object View(2)public auto_render => bool TRUE public request => object Request(19){ protected _file => string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/aruhaz.php" protected _data => array(0) }) }{ protected _requested_with => NULL protected _method => string(3) "GET" protected _protocol => string(8) "HTTP/1.1" protected _secure => bool TRUE protected _referrer => NULL protected _route => object Route(5)public response => object Response(5){ protected _filters => array(0) protected _uri => string(6) "aruhaz" protected _regex => array(0) protected _defaults => array(2) ( "controller" => string(4) "site" "action" => string(6) "aruhaz" ) protected _route_regex => string(12) "#^aruhaz$#uD" }protected _routes => array(0) protected _header => object HTTP_Header(0){ }protected _body => NULL protected _directory => string(0) "" protected _controller => string(4) "Site" protected _action => string(6) "aruhaz" protected _uri => string(6) "aruhaz" protected _external => bool FALSE protected _params => array(0) protected _get => array(0) protected _post => array(0) protected _cookies => array(0) protected _client => object Request_Client_Internal(9){ protected _previous_environment => NULL protected _cache => NULL protected _follow => bool FALSE protected _follow_headers => array(1) ( 0 => string(13) "Authorization" ) protected _strict_redirect => bool TRUE protected _header_callbacks => array(1) ( "Location" => string(34) "Request_Client::on_header_location" ) protected _max_callback_depth => integer 5 protected _callback_depth => integer 1 protected _callback_params => array(0) }}{ protected _status => integer 200 protected _header => object HTTP_Header(0)}{ }protected _body => string(0) "" protected _cookies => array(0) protected _protocol => string(8) "HTTP/1.1" }92 93 // Create a new instance of the controller 94 $controller = $class->newInstance($request, $response); 95 96 // Run the controller's execute() method 97 $response = $class->getMethod('execute')->invoke($controller); 98 99 if ( ! $response instanceof Response) 100 { 101 // Controller failed to return a Response. 102 throw new Kohana_Exception('Controller failed to return a Response'); -
SYSPATH/classes/kohana/request/client.php [ 114 ] » Kohana_Request_Client_Internal->execute_request(arguments)
0object Request(19)
{ protected _requested_with => NULL protected _method => string(3) "GET" protected _protocol => string(8) "HTTP/1.1" protected _secure => bool TRUE protected _referrer => NULL protected _route => object Route(5){ protected _filters => array(0) protected _uri => string(6) "aruhaz" protected _regex => array(0) protected _defaults => array(2) ( "controller" => string(4) "site" "action" => string(6) "aruhaz" ) protected _route_regex => string(12) "#^aruhaz$#uD" }protected _routes => array(0) protected _header => object HTTP_Header(0){ }protected _body => NULL protected _directory => string(0) "" protected _controller => string(4) "Site" protected _action => string(6) "aruhaz" protected _uri => string(6) "aruhaz" protected _external => bool FALSE protected _params => array(0) protected _get => array(0) protected _post => array(0) protected _cookies => array(0) protected _client => object Request_Client_Internal(9){ protected _previous_environment => NULL protected _cache => NULL protected _follow => bool FALSE protected _follow_headers => array(1) ( 0 => string(13) "Authorization" ) protected _strict_redirect => bool TRUE protected _header_callbacks => array(1) ( "Location" => string(34) "Request_Client::on_header_location" ) protected _max_callback_depth => integer 5 protected _callback_depth => integer 1 protected _callback_params => array(0) }}1object Response(5)
{ protected _status => integer 200 protected _header => object HTTP_Header(0){ }protected _body => string(0) "" protected _cookies => array(0) protected _protocol => string(8) "HTTP/1.1" }109 $orig_response = $response = Response::factory(array('_protocol' => $request->protocol())); 110 111 if (($cache = $this->cache()) instanceof HTTP_Cache) 112 return $cache->execute($this, $request, $response); 113 114 $response = $this->execute_request($request, $response); 115 116 // Execute response callbacks 117 foreach ($this->header_callbacks() as $header => $callback) 118 { 119 if ($response->headers($header)) -
SYSPATH/classes/kohana/request.php [ 986 ] » Kohana_Request_Client->execute(arguments)
0object Request(19)
{ protected _requested_with => NULL protected _method => string(3) "GET" protected _protocol => string(8) "HTTP/1.1" protected _secure => bool TRUE protected _referrer => NULL protected _route => object Route(5){ protected _filters => array(0) protected _uri => string(6) "aruhaz" protected _regex => array(0) protected _defaults => array(2) ( "controller" => string(4) "site" "action" => string(6) "aruhaz" ) protected _route_regex => string(12) "#^aruhaz$#uD" }protected _routes => array(0) protected _header => object HTTP_Header(0){ }protected _body => NULL protected _directory => string(0) "" protected _controller => string(4) "Site" protected _action => string(6) "aruhaz" protected _uri => string(6) "aruhaz" protected _external => bool FALSE protected _params => array(0) protected _get => array(0) protected _post => array(0) protected _cookies => array(0) protected _client => object Request_Client_Internal(9){ protected _previous_environment => NULL protected _cache => NULL protected _follow => bool FALSE protected _follow_headers => array(1) ( 0 => string(13) "Authorization" ) protected _strict_redirect => bool TRUE protected _header_callbacks => array(1) ( "Location" => string(34) "Request_Client::on_header_location" ) protected _max_callback_depth => integer 5 protected _callback_depth => integer 1 protected _callback_params => array(0) }}981 throw new Request_Exception('Unable to execute :uri without a Kohana_Request_Client', array( 982 ':uri' => $this->_uri, 983 )); 984 } 985 986 return $this->_client->execute($this); 987 } 988 989 /** 990 * Returns whether this request is the initial request kohana received. 991 * Can be used to test for sub requests. -
DOCROOT/index.php [ 120 ] » Kohana_Request->execute()
115 /** 116 * Execute the main request. A source of the URI can be passed, eg: $_SERVER['PATH_INFO']. 117 * If no source is specified, the URI will be automatically detected. 118 */ 119 echo Request::factory(TRUE, array(), FALSE) 120 ->execute() 121 ->send_headers(TRUE) 122 ->body(); 123 }
Environment
Included files (104)
DOCROOT/index.php |
APPPATH/bootstrap.php |
SYSPATH/classes/kohana/core.php |
SYSPATH/classes/kohana.php |
SYSPATH/classes/i18n.php |
SYSPATH/classes/kohana/i18n.php |
SYSPATH/classes/http.php |
SYSPATH/classes/kohana/http.php |
SYSPATH/classes/kohana/exception.php |
SYSPATH/classes/kohana/kohana/exception.php |
SYSPATH/classes/log.php |
SYSPATH/classes/kohana/log.php |
SYSPATH/classes/config.php |
SYSPATH/classes/kohana/config.php |
SYSPATH/classes/log/file.php |
SYSPATH/classes/kohana/log/file.php |
SYSPATH/classes/log/writer.php |
SYSPATH/classes/kohana/log/writer.php |
SYSPATH/classes/config/file.php |
SYSPATH/classes/kohana/config/file.php |
SYSPATH/classes/kohana/config/file/reader.php |
SYSPATH/classes/kohana/config/reader.php |
SYSPATH/classes/kohana/config/source.php |
MODPATH/product/init.php |
SYSPATH/classes/route.php |
SYSPATH/classes/kohana/route.php |
MODPATH/email/init.php |
MODPATH/imagefly/init.php |
MODPATH/captcha/init.php |
MODPATH/admin/init.php |
MODPATH/frontend/init.php |
SYSPATH/classes/cookie.php |
SYSPATH/classes/kohana/cookie.php |
MODPATH/admin/classes/papertrail/log.php |
SYSPATH/classes/request.php |
SYSPATH/classes/kohana/request.php |
SYSPATH/classes/http/request.php |
SYSPATH/classes/kohana/http/request.php |
SYSPATH/classes/http/message.php |
SYSPATH/classes/kohana/http/message.php |
SYSPATH/classes/http/header.php |
SYSPATH/classes/kohana/http/header.php |
SYSPATH/classes/request/client/internal.php |
SYSPATH/classes/kohana/request/client/internal.php |
SYSPATH/classes/request/client.php |
SYSPATH/classes/kohana/request/client.php |
SYSPATH/classes/arr.php |
SYSPATH/classes/kohana/arr.php |
SYSPATH/classes/response.php |
SYSPATH/classes/kohana/response.php |
SYSPATH/classes/http/response.php |
SYSPATH/classes/kohana/http/response.php |
SYSPATH/classes/profiler.php |
SYSPATH/classes/kohana/profiler.php |
MODPATH/frontend/classes/controller/site.php |
SYSPATH/classes/controller/template.php |
SYSPATH/classes/kohana/controller/template.php |
SYSPATH/classes/controller.php |
SYSPATH/classes/kohana/controller.php |
SYSPATH/classes/view.php |
SYSPATH/classes/kohana/view.php |
SYSPATH/classes/session.php |
SYSPATH/classes/kohana/session.php |
SYSPATH/config/session.php |
MODPATH/database/config/session.php |
SYSPATH/classes/config/group.php |
SYSPATH/classes/kohana/config/group.php |
SYSPATH/classes/session/native.php |
SYSPATH/classes/kohana/session/native.php |
MODPATH/frontend/views/site/layout.php |
SYSPATH/classes/url.php |
SYSPATH/classes/kohana/url.php |
SYSPATH/classes/utf8.php |
SYSPATH/classes/kohana/utf8.php |
MODPATH/frontend/views/site/aruhaz.php |
MODPATH/frontend/views/site/aruhaz/css.php |
MODPATH/frontend/views/site/aruhaz/xynbio.php |
APPPATH/classes/orm.php |
MODPATH/orm/classes/kohana/orm.php |
SYSPATH/classes/model.php |
SYSPATH/classes/kohana/model.php |
MODPATH/product/classes/model/product.php |
SYSPATH/classes/inflector.php |
SYSPATH/classes/kohana/inflector.php |
SYSPATH/config/inflector.php |
MODPATH/database/classes/database.php |
MODPATH/database/classes/kohana/database.php |
MODPATH/database/config/database.php |
APPPATH/config/database.php |
MODPATH/database/classes/database/mysql.php |
MODPATH/database/classes/kohana/database/mysql.php |
MODPATH/database/classes/database/exception.php |
MODPATH/database/classes/kohana/database/exception.php |
SYSPATH/classes/debug.php |
SYSPATH/classes/kohana/debug.php |
SYSPATH/classes/date.php |
SYSPATH/classes/kohana/date.php |
SYSPATH/views/kohana/error.php |
MODPATH/frontend/views/site/aruhaz/mask.php |
MODPATH/frontend/views/site/aruhaz/novosseum.php |
MODPATH/frontend/views/site/aruhaz/neocartil.php |
MODPATH/frontend/views/site/aruhaz/fluxus_prostatae.php |
MODPATH/frontend/views/site/aruhaz/neocartil_pro.php |
MODPATH/frontend/views/site/aruhaz/resistar_pro.php |
Loaded extensions (53)
Core |
date |
ereg |
libxml |
openssl |
pcre |
zlib |
filter |
hash |
pcntl |
readline |
Reflection |
SPL |
session |
standard |
cgi-fcgi |
bcmath |
calendar |
ctype |
curl |
dom |
fileinfo |
ftp |
gd |
imap |
intl |
json |
mbstring |
mcrypt |
mysqlnd |
mysql |
mysqli |
PDO |
pdo_mysql |
pdo_pgsql |
pdo_sqlite |
pgsql |
Phar |
posix |
SimpleXML |
soap |
sockets |
sqlite3 |
tokenizer |
xml |
wddx |
xmlreader |
xmlrpc |
xmlwriter |
xsl |
zip |
mhash |
ionCube Loader |
$_SERVER
CONTEXT_DOCUMENT_ROOT |
string(39) "/home/synergohub/webshop.synergohub.com" |
CONTEXT_PREFIX |
string(0) "" |
DOCUMENT_ROOT |
string(39) "/home/synergohub/webshop.synergohub.com" |
GATEWAY_INTERFACE |
string(7) "CGI/1.1" |
HTTPS |
string(2) "on" |
HTTP_ACCEPT |
string(3) "*/*" |
HTTP_ACCEPT_ENCODING |
string(23) "gzip, br, zstd, deflate" |
HTTP_HOST |
string(19) "shop.synergohub.com" |
HTTP_USER_AGENT |
string(103) "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" |
PATH |
string(13) "/bin:/usr/bin" |
PHP_INI_SCAN_DIR |
string(67) "/opt/cpanel/ea-php56/root/etc:/opt/cpanel/ea-php56/root/etc/php.d:." |
QUERY_STRING |
string(0) "" |
REDIRECT_HTTPS |
string(2) "on" |
REDIRECT_SSL_TLS_SNI |
string(19) "shop.synergohub.com" |
REDIRECT_STATUS |
string(3) "200" |
REDIRECT_UNIQUE_ID |
string(27) "aVH0bOAH2TfTjairR_s5XQAAAAQ" |
REDIRECT_URL |
string(7) "/aruhaz" |
REMOTE_ADDR |
string(13) "216.73.216.85" |
REMOTE_PORT |
string(5) "14248" |
REQUEST_METHOD |
string(3) "GET" |
REQUEST_SCHEME |
string(5) "https" |
REQUEST_URI |
string(7) "/aruhaz" |
SCRIPT_FILENAME |
string(49) "/home/synergohub/webshop.synergohub.com/index.php" |
SCRIPT_NAME |
string(10) "/index.php" |
SERVER_ADDR |
string(14) "185.51.191.204" |
SERVER_ADMIN |
string(29) "webmaster@shop.synergohub.com" |
SERVER_NAME |
string(19) "shop.synergohub.com" |
SERVER_PORT |
string(3) "443" |
SERVER_PROTOCOL |
string(8) "HTTP/1.1" |
SERVER_SIGNATURE |
string(0) "" |
SERVER_SOFTWARE |
string(6) "Apache" |
SSL_TLS_SNI |
string(19) "shop.synergohub.com" |
TZ |
string(15) "Europe/Budapest" |
UNIQUE_ID |
string(27) "aVH0bOAH2TfTjairR_s5XQAAAAQ" |
ORIG_PATH_INFO |
string(7) "/aruhaz" |
ORIG_PATH_TRANSLATED |
string(49) "/home/synergohub/webshop.synergohub.com/index.php" |
PHP_SELF |
string(10) "/index.php" |
REQUEST_TIME_FLOAT |
float 1766978668,26 |
REQUEST_TIME |
integer 1766978668 |
argv |
array(0) |
argc |
integer 0 |
Database_Exception [ 1046 ]:
MODPATH/database/classes/kohana/database/mysql.php [ 194 ]
189 {
190 // This benchmark is worthless
191 Profiler::delete($benchmark);
192 }
193
194 throw new Database_Exception(':error [ :query ]',
195 array(':error' => mysql_error($this->_connection), ':query' => $sql),
196 mysql_errno($this->_connection));
197 }
198
199 if (isset($benchmark))
-
MODPATH/database/classes/kohana/database/mysql.php [ 359 ] » Kohana_Database_MySQL->query(arguments)
0integer 1
1string(33) "SHOW FULL COLUMNS FROM `products`"2bool FALSE
354 $result = $this->query(Database::SELECT, 'SHOW FULL COLUMNS FROM '.$table.' LIKE '.$this->quote($like), FALSE); 355 } 356 else 357 { 358 // Find all column names 359 $result = $this->query(Database::SELECT, 'SHOW FULL COLUMNS FROM '.$table, FALSE); 360 } 361 362 $count = 0; 363 $columns = array(); 364 foreach ($result as $row) -
MODPATH/orm/classes/kohana/orm.php [ 1668 ] » Kohana_Database_MySQL->list_columns(arguments)
0string(8) "products"1663 * @return array 1664 */ 1665 public function list_columns() 1666 { 1667 // Proxy to database 1668 return $this->_db->list_columns($this->_table_name); 1669 } 1670 1671 /** 1672 * Returns an ORM model for the given one-one related alias 1673 * -
MODPATH/orm/classes/kohana/orm.php [ 444 ] » Kohana_ORM->list_columns()
439 $this->_table_columns = ORM::$_column_cache[$this->_object_name]; 440 } 441 else 442 { 443 // Grab column information from database 444 $this->_table_columns = $this->list_columns(); 445 446 // Load column cache 447 ORM::$_column_cache[$this->_object_name] = $this->_table_columns; 448 } 449 } -
MODPATH/orm/classes/kohana/orm.php [ 389 ] » Kohana_ORM->reload_columns()
384 { 385 $this->{$property} = $value; 386 } 387 388 // Load column information 389 $this->reload_columns(); 390 391 // Clear initial model state 392 $this->clear(); 393 } 394 -
APPPATH/classes/orm.php [ 59 ] » Kohana_ORM->_initialize()
54 private $old = array(); 55 private $new = array(); 56 57 public function __construct($id = NULL) 58 { 59 $this->_initialize(); 60 61 if ($id !== NULL) 62 { 63 if (is_array($id)) 64 { -
MODPATH/orm/classes/kohana/orm.php [ 46 ] » ORM->__construct(arguments)
0integer 22
41 public static function factory($model, $id = NULL) 42 { 43 // Set class name 44 $model = 'Model_'.$model; 45 46 return new $model($id); 47 } 48 49 /** 50 * "Has one" relationships 51 * @var array -
MODPATH/frontend/views/site/aruhaz/yxor.php [ 7 ] » Kohana_ORM::factory(arguments)
0string(7) "product"1integer 22
2 <div class="product product_yxor"> 3 <!-- <div class="ribbon ribbon-cyan"><div>Ingyenes kiszállítás</div></div> --> 4 <!-- <div class="ribbon ribbon-red">Két havi adag</div> --> 5 6 <div class="priceline"> 7 <?php echo Controller_Site::formatPrice((int) ORM::Factory('product', 22)->getGrossPrice());?> Ft 8 </div> 9 10 <div class="titleline"> 11 <img src="/img/aruhaz/yxor_box.png" width="114" height="114" alt="<?php echo ORM::Factory('product' , 22)->name; ?>"> 12 <?php echo ORM::Factory('product', 22)->name;?> -
SYSPATH/classes/kohana/view.php [ 61 ] » include(arguments)
0string(83) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/aruhaz/yxor.php"56 ob_start(); 57 58 try 59 { 60 // Load the view within the current scope 61 include $kohana_view_filename; 62 } 63 catch (Exception $e) 64 { 65 // Delete the output buffer 66 ob_end_clean(); -
SYSPATH/classes/kohana/view.php [ 348 ] » Kohana_View::capture(arguments)
0string(83) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/aruhaz/yxor.php"1array(2) ( "kohana_view_filename" => string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/aruhaz.php" "kohana_view_data" => array(0) )
343 { 344 throw new View_Exception('You must set the file to use within your view before rendering'); 345 } 346 347 // Combine local and global data and capture the output 348 return View::capture($this->_file, $this->_data); 349 } 350 351 } -
SYSPATH/classes/kohana/view.php [ 228 ] » Kohana_View->render()
223 */ 224 public function __toString() 225 { 226 try 227 { 228 return $this->render(); 229 } 230 catch (Exception $e) 231 { 232 /** 233 * Display the exception message. -
MODPATH/frontend/views/site/aruhaz.php [ 54 ] » Kohana_View->__toString()
49 50 <!-- resistar_pro --> 51 <?php echo View::factory('site/aruhaz/resistar_pro', get_defined_vars()); ?> 52 53 <!-- yxor --> 54 <?php echo View::factory('site/aruhaz/yxor', get_defined_vars()); ?> 55 56 <!-- novosseum_dental --> 57 <?php echo View::factory('site/aruhaz/novosseum_dental', get_defined_vars()); ?> 58 59 <!-- optivisc --> -
SYSPATH/classes/kohana/view.php [ 61 ] » include(arguments)
0string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/aruhaz.php"56 ob_start(); 57 58 try 59 { 60 // Load the view within the current scope 61 include $kohana_view_filename; 62 } 63 catch (Exception $e) 64 { 65 // Delete the output buffer 66 ob_end_clean(); -
SYSPATH/classes/kohana/view.php [ 348 ] » Kohana_View::capture(arguments)
0string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/aruhaz.php"1array(0)343 { 344 throw new View_Exception('You must set the file to use within your view before rendering'); 345 } 346 347 // Combine local and global data and capture the output 348 return View::capture($this->_file, $this->_data); 349 } 350 351 } -
SYSPATH/classes/kohana/view.php [ 228 ] » Kohana_View->render()
223 */ 224 public function __toString() 225 { 226 try 227 { 228 return $this->render(); 229 } 230 catch (Exception $e) 231 { 232 /** 233 * Display the exception message. -
MODPATH/frontend/views/site/layout.php [ 238 ] » Kohana_View->__toString()
233 <?php endif; ?> 234 </div><!-- header --> 235 236 <div id="content"> 237 238 <?php echo @$content; ?> 239 240 </div><!-- content --> 241 242 <div class="clear"></div> 243 -
SYSPATH/classes/kohana/view.php [ 61 ] » include(arguments)
0string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/layout.php"56 ob_start(); 57 58 try 59 { 60 // Load the view within the current scope 61 include $kohana_view_filename; 62 } 63 catch (Exception $e) 64 { 65 // Delete the output buffer 66 ob_end_clean(); -
SYSPATH/classes/kohana/view.php [ 348 ] » Kohana_View::capture(arguments)
0string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/layout.php"1array(4) ( "user" => bool FALSE "cartnum" => integer 0 "bodyclass" => string(7) "webshop" "content" => object View(2)
{ protected _file => string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/aruhaz.php" protected _data => array(0) })343 { 344 throw new View_Exception('You must set the file to use within your view before rendering'); 345 } 346 347 // Combine local and global data and capture the output 348 return View::capture($this->_file, $this->_data); 349 } 350 351 } -
SYSPATH/classes/kohana/controller/template.php [ 44 ] » Kohana_View->render()
39 */ 40 public function after() 41 { 42 if ($this->auto_render === TRUE) 43 { 44 $this->response->body($this->template->render()); 45 } 46 47 parent::after(); 48 } 49 -
SYSPATH/classes/kohana/controller.php [ 87 ] » Kohana_Controller_Template->after()
82 83 // Execute the action itself 84 $this->{$action}(); 85 86 // Execute the "after action" method 87 $this->after(); 88 89 // Return the response 90 return $this->response; 91 } 92 -
{PHP internal call} » Kohana_Controller->execute()
-
SYSPATH/classes/kohana/request/client/internal.php [ 97 ] » ReflectionMethod->invoke(arguments)
0object Controller_Site(4)
{ public template => object View(2){ protected _file => string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/layout.php" protected _data => array(4) ( "user" => bool FALSE "cartnum" => integer 0 "bodyclass" => string(7) "webshop" "content" => object View(2)public auto_render => bool TRUE public request => object Request(19){ protected _file => string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/aruhaz.php" protected _data => array(0) }) }{ protected _requested_with => NULL protected _method => string(3) "GET" protected _protocol => string(8) "HTTP/1.1" protected _secure => bool TRUE protected _referrer => NULL protected _route => object Route(5)public response => object Response(5){ protected _filters => array(0) protected _uri => string(6) "aruhaz" protected _regex => array(0) protected _defaults => array(2) ( "controller" => string(4) "site" "action" => string(6) "aruhaz" ) protected _route_regex => string(12) "#^aruhaz$#uD" }protected _routes => array(0) protected _header => object HTTP_Header(0){ }protected _body => NULL protected _directory => string(0) "" protected _controller => string(4) "Site" protected _action => string(6) "aruhaz" protected _uri => string(6) "aruhaz" protected _external => bool FALSE protected _params => array(0) protected _get => array(0) protected _post => array(0) protected _cookies => array(0) protected _client => object Request_Client_Internal(9){ protected _previous_environment => NULL protected _cache => NULL protected _follow => bool FALSE protected _follow_headers => array(1) ( 0 => string(13) "Authorization" ) protected _strict_redirect => bool TRUE protected _header_callbacks => array(1) ( "Location" => string(34) "Request_Client::on_header_location" ) protected _max_callback_depth => integer 5 protected _callback_depth => integer 1 protected _callback_params => array(0) }}{ protected _status => integer 200 protected _header => object HTTP_Header(0)}{ }protected _body => string(0) "" protected _cookies => array(0) protected _protocol => string(8) "HTTP/1.1" }92 93 // Create a new instance of the controller 94 $controller = $class->newInstance($request, $response); 95 96 // Run the controller's execute() method 97 $response = $class->getMethod('execute')->invoke($controller); 98 99 if ( ! $response instanceof Response) 100 { 101 // Controller failed to return a Response. 102 throw new Kohana_Exception('Controller failed to return a Response'); -
SYSPATH/classes/kohana/request/client.php [ 114 ] » Kohana_Request_Client_Internal->execute_request(arguments)
0object Request(19)
{ protected _requested_with => NULL protected _method => string(3) "GET" protected _protocol => string(8) "HTTP/1.1" protected _secure => bool TRUE protected _referrer => NULL protected _route => object Route(5){ protected _filters => array(0) protected _uri => string(6) "aruhaz" protected _regex => array(0) protected _defaults => array(2) ( "controller" => string(4) "site" "action" => string(6) "aruhaz" ) protected _route_regex => string(12) "#^aruhaz$#uD" }protected _routes => array(0) protected _header => object HTTP_Header(0){ }protected _body => NULL protected _directory => string(0) "" protected _controller => string(4) "Site" protected _action => string(6) "aruhaz" protected _uri => string(6) "aruhaz" protected _external => bool FALSE protected _params => array(0) protected _get => array(0) protected _post => array(0) protected _cookies => array(0) protected _client => object Request_Client_Internal(9){ protected _previous_environment => NULL protected _cache => NULL protected _follow => bool FALSE protected _follow_headers => array(1) ( 0 => string(13) "Authorization" ) protected _strict_redirect => bool TRUE protected _header_callbacks => array(1) ( "Location" => string(34) "Request_Client::on_header_location" ) protected _max_callback_depth => integer 5 protected _callback_depth => integer 1 protected _callback_params => array(0) }}1object Response(5)
{ protected _status => integer 200 protected _header => object HTTP_Header(0){ }protected _body => string(0) "" protected _cookies => array(0) protected _protocol => string(8) "HTTP/1.1" }109 $orig_response = $response = Response::factory(array('_protocol' => $request->protocol())); 110 111 if (($cache = $this->cache()) instanceof HTTP_Cache) 112 return $cache->execute($this, $request, $response); 113 114 $response = $this->execute_request($request, $response); 115 116 // Execute response callbacks 117 foreach ($this->header_callbacks() as $header => $callback) 118 { 119 if ($response->headers($header)) -
SYSPATH/classes/kohana/request.php [ 986 ] » Kohana_Request_Client->execute(arguments)
0object Request(19)
{ protected _requested_with => NULL protected _method => string(3) "GET" protected _protocol => string(8) "HTTP/1.1" protected _secure => bool TRUE protected _referrer => NULL protected _route => object Route(5){ protected _filters => array(0) protected _uri => string(6) "aruhaz" protected _regex => array(0) protected _defaults => array(2) ( "controller" => string(4) "site" "action" => string(6) "aruhaz" ) protected _route_regex => string(12) "#^aruhaz$#uD" }protected _routes => array(0) protected _header => object HTTP_Header(0){ }protected _body => NULL protected _directory => string(0) "" protected _controller => string(4) "Site" protected _action => string(6) "aruhaz" protected _uri => string(6) "aruhaz" protected _external => bool FALSE protected _params => array(0) protected _get => array(0) protected _post => array(0) protected _cookies => array(0) protected _client => object Request_Client_Internal(9){ protected _previous_environment => NULL protected _cache => NULL protected _follow => bool FALSE protected _follow_headers => array(1) ( 0 => string(13) "Authorization" ) protected _strict_redirect => bool TRUE protected _header_callbacks => array(1) ( "Location" => string(34) "Request_Client::on_header_location" ) protected _max_callback_depth => integer 5 protected _callback_depth => integer 1 protected _callback_params => array(0) }}981 throw new Request_Exception('Unable to execute :uri without a Kohana_Request_Client', array( 982 ':uri' => $this->_uri, 983 )); 984 } 985 986 return $this->_client->execute($this); 987 } 988 989 /** 990 * Returns whether this request is the initial request kohana received. 991 * Can be used to test for sub requests. -
DOCROOT/index.php [ 120 ] » Kohana_Request->execute()
115 /** 116 * Execute the main request. A source of the URI can be passed, eg: $_SERVER['PATH_INFO']. 117 * If no source is specified, the URI will be automatically detected. 118 */ 119 echo Request::factory(TRUE, array(), FALSE) 120 ->execute() 121 ->send_headers(TRUE) 122 ->body(); 123 }
Environment
Included files (105)
DOCROOT/index.php |
APPPATH/bootstrap.php |
SYSPATH/classes/kohana/core.php |
SYSPATH/classes/kohana.php |
SYSPATH/classes/i18n.php |
SYSPATH/classes/kohana/i18n.php |
SYSPATH/classes/http.php |
SYSPATH/classes/kohana/http.php |
SYSPATH/classes/kohana/exception.php |
SYSPATH/classes/kohana/kohana/exception.php |
SYSPATH/classes/log.php |
SYSPATH/classes/kohana/log.php |
SYSPATH/classes/config.php |
SYSPATH/classes/kohana/config.php |
SYSPATH/classes/log/file.php |
SYSPATH/classes/kohana/log/file.php |
SYSPATH/classes/log/writer.php |
SYSPATH/classes/kohana/log/writer.php |
SYSPATH/classes/config/file.php |
SYSPATH/classes/kohana/config/file.php |
SYSPATH/classes/kohana/config/file/reader.php |
SYSPATH/classes/kohana/config/reader.php |
SYSPATH/classes/kohana/config/source.php |
MODPATH/product/init.php |
SYSPATH/classes/route.php |
SYSPATH/classes/kohana/route.php |
MODPATH/email/init.php |
MODPATH/imagefly/init.php |
MODPATH/captcha/init.php |
MODPATH/admin/init.php |
MODPATH/frontend/init.php |
SYSPATH/classes/cookie.php |
SYSPATH/classes/kohana/cookie.php |
MODPATH/admin/classes/papertrail/log.php |
SYSPATH/classes/request.php |
SYSPATH/classes/kohana/request.php |
SYSPATH/classes/http/request.php |
SYSPATH/classes/kohana/http/request.php |
SYSPATH/classes/http/message.php |
SYSPATH/classes/kohana/http/message.php |
SYSPATH/classes/http/header.php |
SYSPATH/classes/kohana/http/header.php |
SYSPATH/classes/request/client/internal.php |
SYSPATH/classes/kohana/request/client/internal.php |
SYSPATH/classes/request/client.php |
SYSPATH/classes/kohana/request/client.php |
SYSPATH/classes/arr.php |
SYSPATH/classes/kohana/arr.php |
SYSPATH/classes/response.php |
SYSPATH/classes/kohana/response.php |
SYSPATH/classes/http/response.php |
SYSPATH/classes/kohana/http/response.php |
SYSPATH/classes/profiler.php |
SYSPATH/classes/kohana/profiler.php |
MODPATH/frontend/classes/controller/site.php |
SYSPATH/classes/controller/template.php |
SYSPATH/classes/kohana/controller/template.php |
SYSPATH/classes/controller.php |
SYSPATH/classes/kohana/controller.php |
SYSPATH/classes/view.php |
SYSPATH/classes/kohana/view.php |
SYSPATH/classes/session.php |
SYSPATH/classes/kohana/session.php |
SYSPATH/config/session.php |
MODPATH/database/config/session.php |
SYSPATH/classes/config/group.php |
SYSPATH/classes/kohana/config/group.php |
SYSPATH/classes/session/native.php |
SYSPATH/classes/kohana/session/native.php |
MODPATH/frontend/views/site/layout.php |
SYSPATH/classes/url.php |
SYSPATH/classes/kohana/url.php |
SYSPATH/classes/utf8.php |
SYSPATH/classes/kohana/utf8.php |
MODPATH/frontend/views/site/aruhaz.php |
MODPATH/frontend/views/site/aruhaz/css.php |
MODPATH/frontend/views/site/aruhaz/xynbio.php |
APPPATH/classes/orm.php |
MODPATH/orm/classes/kohana/orm.php |
SYSPATH/classes/model.php |
SYSPATH/classes/kohana/model.php |
MODPATH/product/classes/model/product.php |
SYSPATH/classes/inflector.php |
SYSPATH/classes/kohana/inflector.php |
SYSPATH/config/inflector.php |
MODPATH/database/classes/database.php |
MODPATH/database/classes/kohana/database.php |
MODPATH/database/config/database.php |
APPPATH/config/database.php |
MODPATH/database/classes/database/mysql.php |
MODPATH/database/classes/kohana/database/mysql.php |
MODPATH/database/classes/database/exception.php |
MODPATH/database/classes/kohana/database/exception.php |
SYSPATH/classes/debug.php |
SYSPATH/classes/kohana/debug.php |
SYSPATH/classes/date.php |
SYSPATH/classes/kohana/date.php |
SYSPATH/views/kohana/error.php |
MODPATH/frontend/views/site/aruhaz/mask.php |
MODPATH/frontend/views/site/aruhaz/novosseum.php |
MODPATH/frontend/views/site/aruhaz/neocartil.php |
MODPATH/frontend/views/site/aruhaz/fluxus_prostatae.php |
MODPATH/frontend/views/site/aruhaz/neocartil_pro.php |
MODPATH/frontend/views/site/aruhaz/resistar_pro.php |
MODPATH/frontend/views/site/aruhaz/yxor.php |
Loaded extensions (53)
Core |
date |
ereg |
libxml |
openssl |
pcre |
zlib |
filter |
hash |
pcntl |
readline |
Reflection |
SPL |
session |
standard |
cgi-fcgi |
bcmath |
calendar |
ctype |
curl |
dom |
fileinfo |
ftp |
gd |
imap |
intl |
json |
mbstring |
mcrypt |
mysqlnd |
mysql |
mysqli |
PDO |
pdo_mysql |
pdo_pgsql |
pdo_sqlite |
pgsql |
Phar |
posix |
SimpleXML |
soap |
sockets |
sqlite3 |
tokenizer |
xml |
wddx |
xmlreader |
xmlrpc |
xmlwriter |
xsl |
zip |
mhash |
ionCube Loader |
$_SERVER
CONTEXT_DOCUMENT_ROOT |
string(39) "/home/synergohub/webshop.synergohub.com" |
CONTEXT_PREFIX |
string(0) "" |
DOCUMENT_ROOT |
string(39) "/home/synergohub/webshop.synergohub.com" |
GATEWAY_INTERFACE |
string(7) "CGI/1.1" |
HTTPS |
string(2) "on" |
HTTP_ACCEPT |
string(3) "*/*" |
HTTP_ACCEPT_ENCODING |
string(23) "gzip, br, zstd, deflate" |
HTTP_HOST |
string(19) "shop.synergohub.com" |
HTTP_USER_AGENT |
string(103) "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" |
PATH |
string(13) "/bin:/usr/bin" |
PHP_INI_SCAN_DIR |
string(67) "/opt/cpanel/ea-php56/root/etc:/opt/cpanel/ea-php56/root/etc/php.d:." |
QUERY_STRING |
string(0) "" |
REDIRECT_HTTPS |
string(2) "on" |
REDIRECT_SSL_TLS_SNI |
string(19) "shop.synergohub.com" |
REDIRECT_STATUS |
string(3) "200" |
REDIRECT_UNIQUE_ID |
string(27) "aVH0bOAH2TfTjairR_s5XQAAAAQ" |
REDIRECT_URL |
string(7) "/aruhaz" |
REMOTE_ADDR |
string(13) "216.73.216.85" |
REMOTE_PORT |
string(5) "14248" |
REQUEST_METHOD |
string(3) "GET" |
REQUEST_SCHEME |
string(5) "https" |
REQUEST_URI |
string(7) "/aruhaz" |
SCRIPT_FILENAME |
string(49) "/home/synergohub/webshop.synergohub.com/index.php" |
SCRIPT_NAME |
string(10) "/index.php" |
SERVER_ADDR |
string(14) "185.51.191.204" |
SERVER_ADMIN |
string(29) "webmaster@shop.synergohub.com" |
SERVER_NAME |
string(19) "shop.synergohub.com" |
SERVER_PORT |
string(3) "443" |
SERVER_PROTOCOL |
string(8) "HTTP/1.1" |
SERVER_SIGNATURE |
string(0) "" |
SERVER_SOFTWARE |
string(6) "Apache" |
SSL_TLS_SNI |
string(19) "shop.synergohub.com" |
TZ |
string(15) "Europe/Budapest" |
UNIQUE_ID |
string(27) "aVH0bOAH2TfTjairR_s5XQAAAAQ" |
ORIG_PATH_INFO |
string(7) "/aruhaz" |
ORIG_PATH_TRANSLATED |
string(49) "/home/synergohub/webshop.synergohub.com/index.php" |
PHP_SELF |
string(10) "/index.php" |
REQUEST_TIME_FLOAT |
float 1766978668,26 |
REQUEST_TIME |
integer 1766978668 |
argv |
array(0) |
argc |
integer 0 |
Database_Exception [ 1046 ]:
MODPATH/database/classes/kohana/database/mysql.php [ 194 ]
189 {
190 // This benchmark is worthless
191 Profiler::delete($benchmark);
192 }
193
194 throw new Database_Exception(':error [ :query ]',
195 array(':error' => mysql_error($this->_connection), ':query' => $sql),
196 mysql_errno($this->_connection));
197 }
198
199 if (isset($benchmark))
-
MODPATH/database/classes/kohana/database/mysql.php [ 359 ] » Kohana_Database_MySQL->query(arguments)
0integer 1
1string(33) "SHOW FULL COLUMNS FROM `products`"2bool FALSE
354 $result = $this->query(Database::SELECT, 'SHOW FULL COLUMNS FROM '.$table.' LIKE '.$this->quote($like), FALSE); 355 } 356 else 357 { 358 // Find all column names 359 $result = $this->query(Database::SELECT, 'SHOW FULL COLUMNS FROM '.$table, FALSE); 360 } 361 362 $count = 0; 363 $columns = array(); 364 foreach ($result as $row) -
MODPATH/orm/classes/kohana/orm.php [ 1668 ] » Kohana_Database_MySQL->list_columns(arguments)
0string(8) "products"1663 * @return array 1664 */ 1665 public function list_columns() 1666 { 1667 // Proxy to database 1668 return $this->_db->list_columns($this->_table_name); 1669 } 1670 1671 /** 1672 * Returns an ORM model for the given one-one related alias 1673 * -
MODPATH/orm/classes/kohana/orm.php [ 444 ] » Kohana_ORM->list_columns()
439 $this->_table_columns = ORM::$_column_cache[$this->_object_name]; 440 } 441 else 442 { 443 // Grab column information from database 444 $this->_table_columns = $this->list_columns(); 445 446 // Load column cache 447 ORM::$_column_cache[$this->_object_name] = $this->_table_columns; 448 } 449 } -
MODPATH/orm/classes/kohana/orm.php [ 389 ] » Kohana_ORM->reload_columns()
384 { 385 $this->{$property} = $value; 386 } 387 388 // Load column information 389 $this->reload_columns(); 390 391 // Clear initial model state 392 $this->clear(); 393 } 394 -
APPPATH/classes/orm.php [ 59 ] » Kohana_ORM->_initialize()
54 private $old = array(); 55 private $new = array(); 56 57 public function __construct($id = NULL) 58 { 59 $this->_initialize(); 60 61 if ($id !== NULL) 62 { 63 if (is_array($id)) 64 { -
MODPATH/orm/classes/kohana/orm.php [ 46 ] » ORM->__construct(arguments)
0integer 14
41 public static function factory($model, $id = NULL) 42 { 43 // Set class name 44 $model = 'Model_'.$model; 45 46 return new $model($id); 47 } 48 49 /** 50 * "Has one" relationships 51 * @var array -
MODPATH/frontend/views/site/aruhaz/novosseum_dental.php [ 7 ] » Kohana_ORM::factory(arguments)
0string(7) "product"1integer 14
2 <div class="product product_novosseum_dental"> 3 <div class="ribbon ribbon-cyan"><div>Ingyenes kiszállítás</div></div> 4 <!-- <div class="ribbon ribbon-red">Két havi adag</div> --> 5 6 <div class="priceline"> 7 <?php echo Controller_Site::formatPrice((int) ORM::Factory('product', 14)->getGrossPrice());?> Ft 8 </div> 9 10 <div class="titleline"> 11 <img src="/img/aruhaz/novosseum_dental_box.png" width="114" height="114" alt="<?php echo ORM::Factory('product' , 14)->name; ?>" /> 12 <?php echo ORM::Factory('product', 14)->name;?> -
SYSPATH/classes/kohana/view.php [ 61 ] » include(arguments)
0string(95) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/aruhaz/novosseum_dental.php"56 ob_start(); 57 58 try 59 { 60 // Load the view within the current scope 61 include $kohana_view_filename; 62 } 63 catch (Exception $e) 64 { 65 // Delete the output buffer 66 ob_end_clean(); -
SYSPATH/classes/kohana/view.php [ 348 ] » Kohana_View::capture(arguments)
0string(95) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/aruhaz/novosseum_dental.php"1array(2) ( "kohana_view_filename" => string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/aruhaz.php" "kohana_view_data" => array(0) )
343 { 344 throw new View_Exception('You must set the file to use within your view before rendering'); 345 } 346 347 // Combine local and global data and capture the output 348 return View::capture($this->_file, $this->_data); 349 } 350 351 } -
SYSPATH/classes/kohana/view.php [ 228 ] » Kohana_View->render()
223 */ 224 public function __toString() 225 { 226 try 227 { 228 return $this->render(); 229 } 230 catch (Exception $e) 231 { 232 /** 233 * Display the exception message. -
MODPATH/frontend/views/site/aruhaz.php [ 57 ] » Kohana_View->__toString()
52 53 <!-- yxor --> 54 <?php echo View::factory('site/aruhaz/yxor', get_defined_vars()); ?> 55 56 <!-- novosseum_dental --> 57 <?php echo View::factory('site/aruhaz/novosseum_dental', get_defined_vars()); ?> 58 59 <!-- optivisc --> 60 <?php echo View::factory('site/aruhaz/optivisc', get_defined_vars()); ?> 61 62 <!-- OPTIVISC SINGLE 60MG HA --> -
SYSPATH/classes/kohana/view.php [ 61 ] » include(arguments)
0string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/aruhaz.php"56 ob_start(); 57 58 try 59 { 60 // Load the view within the current scope 61 include $kohana_view_filename; 62 } 63 catch (Exception $e) 64 { 65 // Delete the output buffer 66 ob_end_clean(); -
SYSPATH/classes/kohana/view.php [ 348 ] » Kohana_View::capture(arguments)
0string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/aruhaz.php"1array(0)343 { 344 throw new View_Exception('You must set the file to use within your view before rendering'); 345 } 346 347 // Combine local and global data and capture the output 348 return View::capture($this->_file, $this->_data); 349 } 350 351 } -
SYSPATH/classes/kohana/view.php [ 228 ] » Kohana_View->render()
223 */ 224 public function __toString() 225 { 226 try 227 { 228 return $this->render(); 229 } 230 catch (Exception $e) 231 { 232 /** 233 * Display the exception message. -
MODPATH/frontend/views/site/layout.php [ 238 ] » Kohana_View->__toString()
233 <?php endif; ?> 234 </div><!-- header --> 235 236 <div id="content"> 237 238 <?php echo @$content; ?> 239 240 </div><!-- content --> 241 242 <div class="clear"></div> 243 -
SYSPATH/classes/kohana/view.php [ 61 ] » include(arguments)
0string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/layout.php"56 ob_start(); 57 58 try 59 { 60 // Load the view within the current scope 61 include $kohana_view_filename; 62 } 63 catch (Exception $e) 64 { 65 // Delete the output buffer 66 ob_end_clean(); -
SYSPATH/classes/kohana/view.php [ 348 ] » Kohana_View::capture(arguments)
0string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/layout.php"1array(4) ( "user" => bool FALSE "cartnum" => integer 0 "bodyclass" => string(7) "webshop" "content" => object View(2)
{ protected _file => string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/aruhaz.php" protected _data => array(0) })343 { 344 throw new View_Exception('You must set the file to use within your view before rendering'); 345 } 346 347 // Combine local and global data and capture the output 348 return View::capture($this->_file, $this->_data); 349 } 350 351 } -
SYSPATH/classes/kohana/controller/template.php [ 44 ] » Kohana_View->render()
39 */ 40 public function after() 41 { 42 if ($this->auto_render === TRUE) 43 { 44 $this->response->body($this->template->render()); 45 } 46 47 parent::after(); 48 } 49 -
SYSPATH/classes/kohana/controller.php [ 87 ] » Kohana_Controller_Template->after()
82 83 // Execute the action itself 84 $this->{$action}(); 85 86 // Execute the "after action" method 87 $this->after(); 88 89 // Return the response 90 return $this->response; 91 } 92 -
{PHP internal call} » Kohana_Controller->execute()
-
SYSPATH/classes/kohana/request/client/internal.php [ 97 ] » ReflectionMethod->invoke(arguments)
0object Controller_Site(4)
{ public template => object View(2){ protected _file => string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/layout.php" protected _data => array(4) ( "user" => bool FALSE "cartnum" => integer 0 "bodyclass" => string(7) "webshop" "content" => object View(2)public auto_render => bool TRUE public request => object Request(19){ protected _file => string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/aruhaz.php" protected _data => array(0) }) }{ protected _requested_with => NULL protected _method => string(3) "GET" protected _protocol => string(8) "HTTP/1.1" protected _secure => bool TRUE protected _referrer => NULL protected _route => object Route(5)public response => object Response(5){ protected _filters => array(0) protected _uri => string(6) "aruhaz" protected _regex => array(0) protected _defaults => array(2) ( "controller" => string(4) "site" "action" => string(6) "aruhaz" ) protected _route_regex => string(12) "#^aruhaz$#uD" }protected _routes => array(0) protected _header => object HTTP_Header(0){ }protected _body => NULL protected _directory => string(0) "" protected _controller => string(4) "Site" protected _action => string(6) "aruhaz" protected _uri => string(6) "aruhaz" protected _external => bool FALSE protected _params => array(0) protected _get => array(0) protected _post => array(0) protected _cookies => array(0) protected _client => object Request_Client_Internal(9){ protected _previous_environment => NULL protected _cache => NULL protected _follow => bool FALSE protected _follow_headers => array(1) ( 0 => string(13) "Authorization" ) protected _strict_redirect => bool TRUE protected _header_callbacks => array(1) ( "Location" => string(34) "Request_Client::on_header_location" ) protected _max_callback_depth => integer 5 protected _callback_depth => integer 1 protected _callback_params => array(0) }}{ protected _status => integer 200 protected _header => object HTTP_Header(0)}{ }protected _body => string(0) "" protected _cookies => array(0) protected _protocol => string(8) "HTTP/1.1" }92 93 // Create a new instance of the controller 94 $controller = $class->newInstance($request, $response); 95 96 // Run the controller's execute() method 97 $response = $class->getMethod('execute')->invoke($controller); 98 99 if ( ! $response instanceof Response) 100 { 101 // Controller failed to return a Response. 102 throw new Kohana_Exception('Controller failed to return a Response'); -
SYSPATH/classes/kohana/request/client.php [ 114 ] » Kohana_Request_Client_Internal->execute_request(arguments)
0object Request(19)
{ protected _requested_with => NULL protected _method => string(3) "GET" protected _protocol => string(8) "HTTP/1.1" protected _secure => bool TRUE protected _referrer => NULL protected _route => object Route(5){ protected _filters => array(0) protected _uri => string(6) "aruhaz" protected _regex => array(0) protected _defaults => array(2) ( "controller" => string(4) "site" "action" => string(6) "aruhaz" ) protected _route_regex => string(12) "#^aruhaz$#uD" }protected _routes => array(0) protected _header => object HTTP_Header(0){ }protected _body => NULL protected _directory => string(0) "" protected _controller => string(4) "Site" protected _action => string(6) "aruhaz" protected _uri => string(6) "aruhaz" protected _external => bool FALSE protected _params => array(0) protected _get => array(0) protected _post => array(0) protected _cookies => array(0) protected _client => object Request_Client_Internal(9){ protected _previous_environment => NULL protected _cache => NULL protected _follow => bool FALSE protected _follow_headers => array(1) ( 0 => string(13) "Authorization" ) protected _strict_redirect => bool TRUE protected _header_callbacks => array(1) ( "Location" => string(34) "Request_Client::on_header_location" ) protected _max_callback_depth => integer 5 protected _callback_depth => integer 1 protected _callback_params => array(0) }}1object Response(5)
{ protected _status => integer 200 protected _header => object HTTP_Header(0){ }protected _body => string(0) "" protected _cookies => array(0) protected _protocol => string(8) "HTTP/1.1" }109 $orig_response = $response = Response::factory(array('_protocol' => $request->protocol())); 110 111 if (($cache = $this->cache()) instanceof HTTP_Cache) 112 return $cache->execute($this, $request, $response); 113 114 $response = $this->execute_request($request, $response); 115 116 // Execute response callbacks 117 foreach ($this->header_callbacks() as $header => $callback) 118 { 119 if ($response->headers($header)) -
SYSPATH/classes/kohana/request.php [ 986 ] » Kohana_Request_Client->execute(arguments)
0object Request(19)
{ protected _requested_with => NULL protected _method => string(3) "GET" protected _protocol => string(8) "HTTP/1.1" protected _secure => bool TRUE protected _referrer => NULL protected _route => object Route(5){ protected _filters => array(0) protected _uri => string(6) "aruhaz" protected _regex => array(0) protected _defaults => array(2) ( "controller" => string(4) "site" "action" => string(6) "aruhaz" ) protected _route_regex => string(12) "#^aruhaz$#uD" }protected _routes => array(0) protected _header => object HTTP_Header(0){ }protected _body => NULL protected _directory => string(0) "" protected _controller => string(4) "Site" protected _action => string(6) "aruhaz" protected _uri => string(6) "aruhaz" protected _external => bool FALSE protected _params => array(0) protected _get => array(0) protected _post => array(0) protected _cookies => array(0) protected _client => object Request_Client_Internal(9){ protected _previous_environment => NULL protected _cache => NULL protected _follow => bool FALSE protected _follow_headers => array(1) ( 0 => string(13) "Authorization" ) protected _strict_redirect => bool TRUE protected _header_callbacks => array(1) ( "Location" => string(34) "Request_Client::on_header_location" ) protected _max_callback_depth => integer 5 protected _callback_depth => integer 1 protected _callback_params => array(0) }}981 throw new Request_Exception('Unable to execute :uri without a Kohana_Request_Client', array( 982 ':uri' => $this->_uri, 983 )); 984 } 985 986 return $this->_client->execute($this); 987 } 988 989 /** 990 * Returns whether this request is the initial request kohana received. 991 * Can be used to test for sub requests. -
DOCROOT/index.php [ 120 ] » Kohana_Request->execute()
115 /** 116 * Execute the main request. A source of the URI can be passed, eg: $_SERVER['PATH_INFO']. 117 * If no source is specified, the URI will be automatically detected. 118 */ 119 echo Request::factory(TRUE, array(), FALSE) 120 ->execute() 121 ->send_headers(TRUE) 122 ->body(); 123 }
Environment
Included files (106)
DOCROOT/index.php |
APPPATH/bootstrap.php |
SYSPATH/classes/kohana/core.php |
SYSPATH/classes/kohana.php |
SYSPATH/classes/i18n.php |
SYSPATH/classes/kohana/i18n.php |
SYSPATH/classes/http.php |
SYSPATH/classes/kohana/http.php |
SYSPATH/classes/kohana/exception.php |
SYSPATH/classes/kohana/kohana/exception.php |
SYSPATH/classes/log.php |
SYSPATH/classes/kohana/log.php |
SYSPATH/classes/config.php |
SYSPATH/classes/kohana/config.php |
SYSPATH/classes/log/file.php |
SYSPATH/classes/kohana/log/file.php |
SYSPATH/classes/log/writer.php |
SYSPATH/classes/kohana/log/writer.php |
SYSPATH/classes/config/file.php |
SYSPATH/classes/kohana/config/file.php |
SYSPATH/classes/kohana/config/file/reader.php |
SYSPATH/classes/kohana/config/reader.php |
SYSPATH/classes/kohana/config/source.php |
MODPATH/product/init.php |
SYSPATH/classes/route.php |
SYSPATH/classes/kohana/route.php |
MODPATH/email/init.php |
MODPATH/imagefly/init.php |
MODPATH/captcha/init.php |
MODPATH/admin/init.php |
MODPATH/frontend/init.php |
SYSPATH/classes/cookie.php |
SYSPATH/classes/kohana/cookie.php |
MODPATH/admin/classes/papertrail/log.php |
SYSPATH/classes/request.php |
SYSPATH/classes/kohana/request.php |
SYSPATH/classes/http/request.php |
SYSPATH/classes/kohana/http/request.php |
SYSPATH/classes/http/message.php |
SYSPATH/classes/kohana/http/message.php |
SYSPATH/classes/http/header.php |
SYSPATH/classes/kohana/http/header.php |
SYSPATH/classes/request/client/internal.php |
SYSPATH/classes/kohana/request/client/internal.php |
SYSPATH/classes/request/client.php |
SYSPATH/classes/kohana/request/client.php |
SYSPATH/classes/arr.php |
SYSPATH/classes/kohana/arr.php |
SYSPATH/classes/response.php |
SYSPATH/classes/kohana/response.php |
SYSPATH/classes/http/response.php |
SYSPATH/classes/kohana/http/response.php |
SYSPATH/classes/profiler.php |
SYSPATH/classes/kohana/profiler.php |
MODPATH/frontend/classes/controller/site.php |
SYSPATH/classes/controller/template.php |
SYSPATH/classes/kohana/controller/template.php |
SYSPATH/classes/controller.php |
SYSPATH/classes/kohana/controller.php |
SYSPATH/classes/view.php |
SYSPATH/classes/kohana/view.php |
SYSPATH/classes/session.php |
SYSPATH/classes/kohana/session.php |
SYSPATH/config/session.php |
MODPATH/database/config/session.php |
SYSPATH/classes/config/group.php |
SYSPATH/classes/kohana/config/group.php |
SYSPATH/classes/session/native.php |
SYSPATH/classes/kohana/session/native.php |
MODPATH/frontend/views/site/layout.php |
SYSPATH/classes/url.php |
SYSPATH/classes/kohana/url.php |
SYSPATH/classes/utf8.php |
SYSPATH/classes/kohana/utf8.php |
MODPATH/frontend/views/site/aruhaz.php |
MODPATH/frontend/views/site/aruhaz/css.php |
MODPATH/frontend/views/site/aruhaz/xynbio.php |
APPPATH/classes/orm.php |
MODPATH/orm/classes/kohana/orm.php |
SYSPATH/classes/model.php |
SYSPATH/classes/kohana/model.php |
MODPATH/product/classes/model/product.php |
SYSPATH/classes/inflector.php |
SYSPATH/classes/kohana/inflector.php |
SYSPATH/config/inflector.php |
MODPATH/database/classes/database.php |
MODPATH/database/classes/kohana/database.php |
MODPATH/database/config/database.php |
APPPATH/config/database.php |
MODPATH/database/classes/database/mysql.php |
MODPATH/database/classes/kohana/database/mysql.php |
MODPATH/database/classes/database/exception.php |
MODPATH/database/classes/kohana/database/exception.php |
SYSPATH/classes/debug.php |
SYSPATH/classes/kohana/debug.php |
SYSPATH/classes/date.php |
SYSPATH/classes/kohana/date.php |
SYSPATH/views/kohana/error.php |
MODPATH/frontend/views/site/aruhaz/mask.php |
MODPATH/frontend/views/site/aruhaz/novosseum.php |
MODPATH/frontend/views/site/aruhaz/neocartil.php |
MODPATH/frontend/views/site/aruhaz/fluxus_prostatae.php |
MODPATH/frontend/views/site/aruhaz/neocartil_pro.php |
MODPATH/frontend/views/site/aruhaz/resistar_pro.php |
MODPATH/frontend/views/site/aruhaz/yxor.php |
MODPATH/frontend/views/site/aruhaz/novosseum_dental.php |
Loaded extensions (53)
Core |
date |
ereg |
libxml |
openssl |
pcre |
zlib |
filter |
hash |
pcntl |
readline |
Reflection |
SPL |
session |
standard |
cgi-fcgi |
bcmath |
calendar |
ctype |
curl |
dom |
fileinfo |
ftp |
gd |
imap |
intl |
json |
mbstring |
mcrypt |
mysqlnd |
mysql |
mysqli |
PDO |
pdo_mysql |
pdo_pgsql |
pdo_sqlite |
pgsql |
Phar |
posix |
SimpleXML |
soap |
sockets |
sqlite3 |
tokenizer |
xml |
wddx |
xmlreader |
xmlrpc |
xmlwriter |
xsl |
zip |
mhash |
ionCube Loader |
$_SERVER
CONTEXT_DOCUMENT_ROOT |
string(39) "/home/synergohub/webshop.synergohub.com" |
CONTEXT_PREFIX |
string(0) "" |
DOCUMENT_ROOT |
string(39) "/home/synergohub/webshop.synergohub.com" |
GATEWAY_INTERFACE |
string(7) "CGI/1.1" |
HTTPS |
string(2) "on" |
HTTP_ACCEPT |
string(3) "*/*" |
HTTP_ACCEPT_ENCODING |
string(23) "gzip, br, zstd, deflate" |
HTTP_HOST |
string(19) "shop.synergohub.com" |
HTTP_USER_AGENT |
string(103) "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" |
PATH |
string(13) "/bin:/usr/bin" |
PHP_INI_SCAN_DIR |
string(67) "/opt/cpanel/ea-php56/root/etc:/opt/cpanel/ea-php56/root/etc/php.d:." |
QUERY_STRING |
string(0) "" |
REDIRECT_HTTPS |
string(2) "on" |
REDIRECT_SSL_TLS_SNI |
string(19) "shop.synergohub.com" |
REDIRECT_STATUS |
string(3) "200" |
REDIRECT_UNIQUE_ID |
string(27) "aVH0bOAH2TfTjairR_s5XQAAAAQ" |
REDIRECT_URL |
string(7) "/aruhaz" |
REMOTE_ADDR |
string(13) "216.73.216.85" |
REMOTE_PORT |
string(5) "14248" |
REQUEST_METHOD |
string(3) "GET" |
REQUEST_SCHEME |
string(5) "https" |
REQUEST_URI |
string(7) "/aruhaz" |
SCRIPT_FILENAME |
string(49) "/home/synergohub/webshop.synergohub.com/index.php" |
SCRIPT_NAME |
string(10) "/index.php" |
SERVER_ADDR |
string(14) "185.51.191.204" |
SERVER_ADMIN |
string(29) "webmaster@shop.synergohub.com" |
SERVER_NAME |
string(19) "shop.synergohub.com" |
SERVER_PORT |
string(3) "443" |
SERVER_PROTOCOL |
string(8) "HTTP/1.1" |
SERVER_SIGNATURE |
string(0) "" |
SERVER_SOFTWARE |
string(6) "Apache" |
SSL_TLS_SNI |
string(19) "shop.synergohub.com" |
TZ |
string(15) "Europe/Budapest" |
UNIQUE_ID |
string(27) "aVH0bOAH2TfTjairR_s5XQAAAAQ" |
ORIG_PATH_INFO |
string(7) "/aruhaz" |
ORIG_PATH_TRANSLATED |
string(49) "/home/synergohub/webshop.synergohub.com/index.php" |
PHP_SELF |
string(10) "/index.php" |
REQUEST_TIME_FLOAT |
float 1766978668,26 |
REQUEST_TIME |
integer 1766978668 |
argv |
array(0) |
argc |
integer 0 |
Database_Exception [ 1046 ]:
MODPATH/database/classes/kohana/database/mysql.php [ 194 ]
189 {
190 // This benchmark is worthless
191 Profiler::delete($benchmark);
192 }
193
194 throw new Database_Exception(':error [ :query ]',
195 array(':error' => mysql_error($this->_connection), ':query' => $sql),
196 mysql_errno($this->_connection));
197 }
198
199 if (isset($benchmark))
-
MODPATH/database/classes/kohana/database/mysql.php [ 359 ] » Kohana_Database_MySQL->query(arguments)
0integer 1
1string(33) "SHOW FULL COLUMNS FROM `products`"2bool FALSE
354 $result = $this->query(Database::SELECT, 'SHOW FULL COLUMNS FROM '.$table.' LIKE '.$this->quote($like), FALSE); 355 } 356 else 357 { 358 // Find all column names 359 $result = $this->query(Database::SELECT, 'SHOW FULL COLUMNS FROM '.$table, FALSE); 360 } 361 362 $count = 0; 363 $columns = array(); 364 foreach ($result as $row) -
MODPATH/orm/classes/kohana/orm.php [ 1668 ] » Kohana_Database_MySQL->list_columns(arguments)
0string(8) "products"1663 * @return array 1664 */ 1665 public function list_columns() 1666 { 1667 // Proxy to database 1668 return $this->_db->list_columns($this->_table_name); 1669 } 1670 1671 /** 1672 * Returns an ORM model for the given one-one related alias 1673 * -
MODPATH/orm/classes/kohana/orm.php [ 444 ] » Kohana_ORM->list_columns()
439 $this->_table_columns = ORM::$_column_cache[$this->_object_name]; 440 } 441 else 442 { 443 // Grab column information from database 444 $this->_table_columns = $this->list_columns(); 445 446 // Load column cache 447 ORM::$_column_cache[$this->_object_name] = $this->_table_columns; 448 } 449 } -
MODPATH/orm/classes/kohana/orm.php [ 389 ] » Kohana_ORM->reload_columns()
384 { 385 $this->{$property} = $value; 386 } 387 388 // Load column information 389 $this->reload_columns(); 390 391 // Clear initial model state 392 $this->clear(); 393 } 394 -
APPPATH/classes/orm.php [ 59 ] » Kohana_ORM->_initialize()
54 private $old = array(); 55 private $new = array(); 56 57 public function __construct($id = NULL) 58 { 59 $this->_initialize(); 60 61 if ($id !== NULL) 62 { 63 if (is_array($id)) 64 { -
MODPATH/orm/classes/kohana/orm.php [ 46 ] » ORM->__construct(arguments)
0integer 15
41 public static function factory($model, $id = NULL) 42 { 43 // Set class name 44 $model = 'Model_'.$model; 45 46 return new $model($id); 47 } 48 49 /** 50 * "Has one" relationships 51 * @var array -
MODPATH/frontend/views/site/aruhaz/optivisc.php [ 7 ] » Kohana_ORM::factory(arguments)
0string(7) "product"1integer 15
2 <div class="product product_optivisc"> 3 <div class="ribbon"><div>Ingyenes kiszállítás</div></div> 4 <!-- <div class="ribbon ribbon-red">Két havi adag</div> --> 5 6 <div class="priceline"> 7 <?php echo Controller_Site::formatPrice((int) ORM::Factory('product', 15)->getGrossPrice());?> Ft 8 </div> 9 10 <div class="titleline"> 11 <img src="/img/aruhaz/optivisc_box.png" width="114" height="114" alt="<?php echo ORM::Factory('product' , 15)->name; ?>" /> 12 <?php echo ORM::Factory('product', 15)->name;?> -
SYSPATH/classes/kohana/view.php [ 61 ] » include(arguments)
0string(87) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/aruhaz/optivisc.php"56 ob_start(); 57 58 try 59 { 60 // Load the view within the current scope 61 include $kohana_view_filename; 62 } 63 catch (Exception $e) 64 { 65 // Delete the output buffer 66 ob_end_clean(); -
SYSPATH/classes/kohana/view.php [ 348 ] » Kohana_View::capture(arguments)
0string(87) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/aruhaz/optivisc.php"1array(2) ( "kohana_view_filename" => string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/aruhaz.php" "kohana_view_data" => array(0) )
343 { 344 throw new View_Exception('You must set the file to use within your view before rendering'); 345 } 346 347 // Combine local and global data and capture the output 348 return View::capture($this->_file, $this->_data); 349 } 350 351 } -
SYSPATH/classes/kohana/view.php [ 228 ] » Kohana_View->render()
223 */ 224 public function __toString() 225 { 226 try 227 { 228 return $this->render(); 229 } 230 catch (Exception $e) 231 { 232 /** 233 * Display the exception message. -
MODPATH/frontend/views/site/aruhaz.php [ 60 ] » Kohana_View->__toString()
55 56 <!-- novosseum_dental --> 57 <?php echo View::factory('site/aruhaz/novosseum_dental', get_defined_vars()); ?> 58 59 <!-- optivisc --> 60 <?php echo View::factory('site/aruhaz/optivisc', get_defined_vars()); ?> 61 62 <!-- OPTIVISC SINGLE 60MG HA --> 63 <?php echo View::factory('site/aruhaz/optivisc_60', get_defined_vars()); ?> 64 65 <!-- BIOVISC ORTHO PLUS 40MG/2ML --> -
SYSPATH/classes/kohana/view.php [ 61 ] » include(arguments)
0string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/aruhaz.php"56 ob_start(); 57 58 try 59 { 60 // Load the view within the current scope 61 include $kohana_view_filename; 62 } 63 catch (Exception $e) 64 { 65 // Delete the output buffer 66 ob_end_clean(); -
SYSPATH/classes/kohana/view.php [ 348 ] » Kohana_View::capture(arguments)
0string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/aruhaz.php"1array(0)343 { 344 throw new View_Exception('You must set the file to use within your view before rendering'); 345 } 346 347 // Combine local and global data and capture the output 348 return View::capture($this->_file, $this->_data); 349 } 350 351 } -
SYSPATH/classes/kohana/view.php [ 228 ] » Kohana_View->render()
223 */ 224 public function __toString() 225 { 226 try 227 { 228 return $this->render(); 229 } 230 catch (Exception $e) 231 { 232 /** 233 * Display the exception message. -
MODPATH/frontend/views/site/layout.php [ 238 ] » Kohana_View->__toString()
233 <?php endif; ?> 234 </div><!-- header --> 235 236 <div id="content"> 237 238 <?php echo @$content; ?> 239 240 </div><!-- content --> 241 242 <div class="clear"></div> 243 -
SYSPATH/classes/kohana/view.php [ 61 ] » include(arguments)
0string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/layout.php"56 ob_start(); 57 58 try 59 { 60 // Load the view within the current scope 61 include $kohana_view_filename; 62 } 63 catch (Exception $e) 64 { 65 // Delete the output buffer 66 ob_end_clean(); -
SYSPATH/classes/kohana/view.php [ 348 ] » Kohana_View::capture(arguments)
0string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/layout.php"1array(4) ( "user" => bool FALSE "cartnum" => integer 0 "bodyclass" => string(7) "webshop" "content" => object View(2)
{ protected _file => string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/aruhaz.php" protected _data => array(0) })343 { 344 throw new View_Exception('You must set the file to use within your view before rendering'); 345 } 346 347 // Combine local and global data and capture the output 348 return View::capture($this->_file, $this->_data); 349 } 350 351 } -
SYSPATH/classes/kohana/controller/template.php [ 44 ] » Kohana_View->render()
39 */ 40 public function after() 41 { 42 if ($this->auto_render === TRUE) 43 { 44 $this->response->body($this->template->render()); 45 } 46 47 parent::after(); 48 } 49 -
SYSPATH/classes/kohana/controller.php [ 87 ] » Kohana_Controller_Template->after()
82 83 // Execute the action itself 84 $this->{$action}(); 85 86 // Execute the "after action" method 87 $this->after(); 88 89 // Return the response 90 return $this->response; 91 } 92 -
{PHP internal call} » Kohana_Controller->execute()
-
SYSPATH/classes/kohana/request/client/internal.php [ 97 ] » ReflectionMethod->invoke(arguments)
0object Controller_Site(4)
{ public template => object View(2){ protected _file => string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/layout.php" protected _data => array(4) ( "user" => bool FALSE "cartnum" => integer 0 "bodyclass" => string(7) "webshop" "content" => object View(2)public auto_render => bool TRUE public request => object Request(19){ protected _file => string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/aruhaz.php" protected _data => array(0) }) }{ protected _requested_with => NULL protected _method => string(3) "GET" protected _protocol => string(8) "HTTP/1.1" protected _secure => bool TRUE protected _referrer => NULL protected _route => object Route(5)public response => object Response(5){ protected _filters => array(0) protected _uri => string(6) "aruhaz" protected _regex => array(0) protected _defaults => array(2) ( "controller" => string(4) "site" "action" => string(6) "aruhaz" ) protected _route_regex => string(12) "#^aruhaz$#uD" }protected _routes => array(0) protected _header => object HTTP_Header(0){ }protected _body => NULL protected _directory => string(0) "" protected _controller => string(4) "Site" protected _action => string(6) "aruhaz" protected _uri => string(6) "aruhaz" protected _external => bool FALSE protected _params => array(0) protected _get => array(0) protected _post => array(0) protected _cookies => array(0) protected _client => object Request_Client_Internal(9){ protected _previous_environment => NULL protected _cache => NULL protected _follow => bool FALSE protected _follow_headers => array(1) ( 0 => string(13) "Authorization" ) protected _strict_redirect => bool TRUE protected _header_callbacks => array(1) ( "Location" => string(34) "Request_Client::on_header_location" ) protected _max_callback_depth => integer 5 protected _callback_depth => integer 1 protected _callback_params => array(0) }}{ protected _status => integer 200 protected _header => object HTTP_Header(0)}{ }protected _body => string(0) "" protected _cookies => array(0) protected _protocol => string(8) "HTTP/1.1" }92 93 // Create a new instance of the controller 94 $controller = $class->newInstance($request, $response); 95 96 // Run the controller's execute() method 97 $response = $class->getMethod('execute')->invoke($controller); 98 99 if ( ! $response instanceof Response) 100 { 101 // Controller failed to return a Response. 102 throw new Kohana_Exception('Controller failed to return a Response'); -
SYSPATH/classes/kohana/request/client.php [ 114 ] » Kohana_Request_Client_Internal->execute_request(arguments)
0object Request(19)
{ protected _requested_with => NULL protected _method => string(3) "GET" protected _protocol => string(8) "HTTP/1.1" protected _secure => bool TRUE protected _referrer => NULL protected _route => object Route(5){ protected _filters => array(0) protected _uri => string(6) "aruhaz" protected _regex => array(0) protected _defaults => array(2) ( "controller" => string(4) "site" "action" => string(6) "aruhaz" ) protected _route_regex => string(12) "#^aruhaz$#uD" }protected _routes => array(0) protected _header => object HTTP_Header(0){ }protected _body => NULL protected _directory => string(0) "" protected _controller => string(4) "Site" protected _action => string(6) "aruhaz" protected _uri => string(6) "aruhaz" protected _external => bool FALSE protected _params => array(0) protected _get => array(0) protected _post => array(0) protected _cookies => array(0) protected _client => object Request_Client_Internal(9){ protected _previous_environment => NULL protected _cache => NULL protected _follow => bool FALSE protected _follow_headers => array(1) ( 0 => string(13) "Authorization" ) protected _strict_redirect => bool TRUE protected _header_callbacks => array(1) ( "Location" => string(34) "Request_Client::on_header_location" ) protected _max_callback_depth => integer 5 protected _callback_depth => integer 1 protected _callback_params => array(0) }}1object Response(5)
{ protected _status => integer 200 protected _header => object HTTP_Header(0){ }protected _body => string(0) "" protected _cookies => array(0) protected _protocol => string(8) "HTTP/1.1" }109 $orig_response = $response = Response::factory(array('_protocol' => $request->protocol())); 110 111 if (($cache = $this->cache()) instanceof HTTP_Cache) 112 return $cache->execute($this, $request, $response); 113 114 $response = $this->execute_request($request, $response); 115 116 // Execute response callbacks 117 foreach ($this->header_callbacks() as $header => $callback) 118 { 119 if ($response->headers($header)) -
SYSPATH/classes/kohana/request.php [ 986 ] » Kohana_Request_Client->execute(arguments)
0object Request(19)
{ protected _requested_with => NULL protected _method => string(3) "GET" protected _protocol => string(8) "HTTP/1.1" protected _secure => bool TRUE protected _referrer => NULL protected _route => object Route(5){ protected _filters => array(0) protected _uri => string(6) "aruhaz" protected _regex => array(0) protected _defaults => array(2) ( "controller" => string(4) "site" "action" => string(6) "aruhaz" ) protected _route_regex => string(12) "#^aruhaz$#uD" }protected _routes => array(0) protected _header => object HTTP_Header(0){ }protected _body => NULL protected _directory => string(0) "" protected _controller => string(4) "Site" protected _action => string(6) "aruhaz" protected _uri => string(6) "aruhaz" protected _external => bool FALSE protected _params => array(0) protected _get => array(0) protected _post => array(0) protected _cookies => array(0) protected _client => object Request_Client_Internal(9){ protected _previous_environment => NULL protected _cache => NULL protected _follow => bool FALSE protected _follow_headers => array(1) ( 0 => string(13) "Authorization" ) protected _strict_redirect => bool TRUE protected _header_callbacks => array(1) ( "Location" => string(34) "Request_Client::on_header_location" ) protected _max_callback_depth => integer 5 protected _callback_depth => integer 1 protected _callback_params => array(0) }}981 throw new Request_Exception('Unable to execute :uri without a Kohana_Request_Client', array( 982 ':uri' => $this->_uri, 983 )); 984 } 985 986 return $this->_client->execute($this); 987 } 988 989 /** 990 * Returns whether this request is the initial request kohana received. 991 * Can be used to test for sub requests. -
DOCROOT/index.php [ 120 ] » Kohana_Request->execute()
115 /** 116 * Execute the main request. A source of the URI can be passed, eg: $_SERVER['PATH_INFO']. 117 * If no source is specified, the URI will be automatically detected. 118 */ 119 echo Request::factory(TRUE, array(), FALSE) 120 ->execute() 121 ->send_headers(TRUE) 122 ->body(); 123 }
Environment
Included files (107)
DOCROOT/index.php |
APPPATH/bootstrap.php |
SYSPATH/classes/kohana/core.php |
SYSPATH/classes/kohana.php |
SYSPATH/classes/i18n.php |
SYSPATH/classes/kohana/i18n.php |
SYSPATH/classes/http.php |
SYSPATH/classes/kohana/http.php |
SYSPATH/classes/kohana/exception.php |
SYSPATH/classes/kohana/kohana/exception.php |
SYSPATH/classes/log.php |
SYSPATH/classes/kohana/log.php |
SYSPATH/classes/config.php |
SYSPATH/classes/kohana/config.php |
SYSPATH/classes/log/file.php |
SYSPATH/classes/kohana/log/file.php |
SYSPATH/classes/log/writer.php |
SYSPATH/classes/kohana/log/writer.php |
SYSPATH/classes/config/file.php |
SYSPATH/classes/kohana/config/file.php |
SYSPATH/classes/kohana/config/file/reader.php |
SYSPATH/classes/kohana/config/reader.php |
SYSPATH/classes/kohana/config/source.php |
MODPATH/product/init.php |
SYSPATH/classes/route.php |
SYSPATH/classes/kohana/route.php |
MODPATH/email/init.php |
MODPATH/imagefly/init.php |
MODPATH/captcha/init.php |
MODPATH/admin/init.php |
MODPATH/frontend/init.php |
SYSPATH/classes/cookie.php |
SYSPATH/classes/kohana/cookie.php |
MODPATH/admin/classes/papertrail/log.php |
SYSPATH/classes/request.php |
SYSPATH/classes/kohana/request.php |
SYSPATH/classes/http/request.php |
SYSPATH/classes/kohana/http/request.php |
SYSPATH/classes/http/message.php |
SYSPATH/classes/kohana/http/message.php |
SYSPATH/classes/http/header.php |
SYSPATH/classes/kohana/http/header.php |
SYSPATH/classes/request/client/internal.php |
SYSPATH/classes/kohana/request/client/internal.php |
SYSPATH/classes/request/client.php |
SYSPATH/classes/kohana/request/client.php |
SYSPATH/classes/arr.php |
SYSPATH/classes/kohana/arr.php |
SYSPATH/classes/response.php |
SYSPATH/classes/kohana/response.php |
SYSPATH/classes/http/response.php |
SYSPATH/classes/kohana/http/response.php |
SYSPATH/classes/profiler.php |
SYSPATH/classes/kohana/profiler.php |
MODPATH/frontend/classes/controller/site.php |
SYSPATH/classes/controller/template.php |
SYSPATH/classes/kohana/controller/template.php |
SYSPATH/classes/controller.php |
SYSPATH/classes/kohana/controller.php |
SYSPATH/classes/view.php |
SYSPATH/classes/kohana/view.php |
SYSPATH/classes/session.php |
SYSPATH/classes/kohana/session.php |
SYSPATH/config/session.php |
MODPATH/database/config/session.php |
SYSPATH/classes/config/group.php |
SYSPATH/classes/kohana/config/group.php |
SYSPATH/classes/session/native.php |
SYSPATH/classes/kohana/session/native.php |
MODPATH/frontend/views/site/layout.php |
SYSPATH/classes/url.php |
SYSPATH/classes/kohana/url.php |
SYSPATH/classes/utf8.php |
SYSPATH/classes/kohana/utf8.php |
MODPATH/frontend/views/site/aruhaz.php |
MODPATH/frontend/views/site/aruhaz/css.php |
MODPATH/frontend/views/site/aruhaz/xynbio.php |
APPPATH/classes/orm.php |
MODPATH/orm/classes/kohana/orm.php |
SYSPATH/classes/model.php |
SYSPATH/classes/kohana/model.php |
MODPATH/product/classes/model/product.php |
SYSPATH/classes/inflector.php |
SYSPATH/classes/kohana/inflector.php |
SYSPATH/config/inflector.php |
MODPATH/database/classes/database.php |
MODPATH/database/classes/kohana/database.php |
MODPATH/database/config/database.php |
APPPATH/config/database.php |
MODPATH/database/classes/database/mysql.php |
MODPATH/database/classes/kohana/database/mysql.php |
MODPATH/database/classes/database/exception.php |
MODPATH/database/classes/kohana/database/exception.php |
SYSPATH/classes/debug.php |
SYSPATH/classes/kohana/debug.php |
SYSPATH/classes/date.php |
SYSPATH/classes/kohana/date.php |
SYSPATH/views/kohana/error.php |
MODPATH/frontend/views/site/aruhaz/mask.php |
MODPATH/frontend/views/site/aruhaz/novosseum.php |
MODPATH/frontend/views/site/aruhaz/neocartil.php |
MODPATH/frontend/views/site/aruhaz/fluxus_prostatae.php |
MODPATH/frontend/views/site/aruhaz/neocartil_pro.php |
MODPATH/frontend/views/site/aruhaz/resistar_pro.php |
MODPATH/frontend/views/site/aruhaz/yxor.php |
MODPATH/frontend/views/site/aruhaz/novosseum_dental.php |
MODPATH/frontend/views/site/aruhaz/optivisc.php |
Loaded extensions (53)
Core |
date |
ereg |
libxml |
openssl |
pcre |
zlib |
filter |
hash |
pcntl |
readline |
Reflection |
SPL |
session |
standard |
cgi-fcgi |
bcmath |
calendar |
ctype |
curl |
dom |
fileinfo |
ftp |
gd |
imap |
intl |
json |
mbstring |
mcrypt |
mysqlnd |
mysql |
mysqli |
PDO |
pdo_mysql |
pdo_pgsql |
pdo_sqlite |
pgsql |
Phar |
posix |
SimpleXML |
soap |
sockets |
sqlite3 |
tokenizer |
xml |
wddx |
xmlreader |
xmlrpc |
xmlwriter |
xsl |
zip |
mhash |
ionCube Loader |
$_SERVER
CONTEXT_DOCUMENT_ROOT |
string(39) "/home/synergohub/webshop.synergohub.com" |
CONTEXT_PREFIX |
string(0) "" |
DOCUMENT_ROOT |
string(39) "/home/synergohub/webshop.synergohub.com" |
GATEWAY_INTERFACE |
string(7) "CGI/1.1" |
HTTPS |
string(2) "on" |
HTTP_ACCEPT |
string(3) "*/*" |
HTTP_ACCEPT_ENCODING |
string(23) "gzip, br, zstd, deflate" |
HTTP_HOST |
string(19) "shop.synergohub.com" |
HTTP_USER_AGENT |
string(103) "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" |
PATH |
string(13) "/bin:/usr/bin" |
PHP_INI_SCAN_DIR |
string(67) "/opt/cpanel/ea-php56/root/etc:/opt/cpanel/ea-php56/root/etc/php.d:." |
QUERY_STRING |
string(0) "" |
REDIRECT_HTTPS |
string(2) "on" |
REDIRECT_SSL_TLS_SNI |
string(19) "shop.synergohub.com" |
REDIRECT_STATUS |
string(3) "200" |
REDIRECT_UNIQUE_ID |
string(27) "aVH0bOAH2TfTjairR_s5XQAAAAQ" |
REDIRECT_URL |
string(7) "/aruhaz" |
REMOTE_ADDR |
string(13) "216.73.216.85" |
REMOTE_PORT |
string(5) "14248" |
REQUEST_METHOD |
string(3) "GET" |
REQUEST_SCHEME |
string(5) "https" |
REQUEST_URI |
string(7) "/aruhaz" |
SCRIPT_FILENAME |
string(49) "/home/synergohub/webshop.synergohub.com/index.php" |
SCRIPT_NAME |
string(10) "/index.php" |
SERVER_ADDR |
string(14) "185.51.191.204" |
SERVER_ADMIN |
string(29) "webmaster@shop.synergohub.com" |
SERVER_NAME |
string(19) "shop.synergohub.com" |
SERVER_PORT |
string(3) "443" |
SERVER_PROTOCOL |
string(8) "HTTP/1.1" |
SERVER_SIGNATURE |
string(0) "" |
SERVER_SOFTWARE |
string(6) "Apache" |
SSL_TLS_SNI |
string(19) "shop.synergohub.com" |
TZ |
string(15) "Europe/Budapest" |
UNIQUE_ID |
string(27) "aVH0bOAH2TfTjairR_s5XQAAAAQ" |
ORIG_PATH_INFO |
string(7) "/aruhaz" |
ORIG_PATH_TRANSLATED |
string(49) "/home/synergohub/webshop.synergohub.com/index.php" |
PHP_SELF |
string(10) "/index.php" |
REQUEST_TIME_FLOAT |
float 1766978668,26 |
REQUEST_TIME |
integer 1766978668 |
argv |
array(0) |
argc |
integer 0 |
Database_Exception [ 1046 ]:
MODPATH/database/classes/kohana/database/mysql.php [ 194 ]
189 {
190 // This benchmark is worthless
191 Profiler::delete($benchmark);
192 }
193
194 throw new Database_Exception(':error [ :query ]',
195 array(':error' => mysql_error($this->_connection), ':query' => $sql),
196 mysql_errno($this->_connection));
197 }
198
199 if (isset($benchmark))
-
MODPATH/database/classes/kohana/database/mysql.php [ 359 ] » Kohana_Database_MySQL->query(arguments)
0integer 1
1string(33) "SHOW FULL COLUMNS FROM `products`"2bool FALSE
354 $result = $this->query(Database::SELECT, 'SHOW FULL COLUMNS FROM '.$table.' LIKE '.$this->quote($like), FALSE); 355 } 356 else 357 { 358 // Find all column names 359 $result = $this->query(Database::SELECT, 'SHOW FULL COLUMNS FROM '.$table, FALSE); 360 } 361 362 $count = 0; 363 $columns = array(); 364 foreach ($result as $row) -
MODPATH/orm/classes/kohana/orm.php [ 1668 ] » Kohana_Database_MySQL->list_columns(arguments)
0string(8) "products"1663 * @return array 1664 */ 1665 public function list_columns() 1666 { 1667 // Proxy to database 1668 return $this->_db->list_columns($this->_table_name); 1669 } 1670 1671 /** 1672 * Returns an ORM model for the given one-one related alias 1673 * -
MODPATH/orm/classes/kohana/orm.php [ 444 ] » Kohana_ORM->list_columns()
439 $this->_table_columns = ORM::$_column_cache[$this->_object_name]; 440 } 441 else 442 { 443 // Grab column information from database 444 $this->_table_columns = $this->list_columns(); 445 446 // Load column cache 447 ORM::$_column_cache[$this->_object_name] = $this->_table_columns; 448 } 449 } -
MODPATH/orm/classes/kohana/orm.php [ 389 ] » Kohana_ORM->reload_columns()
384 { 385 $this->{$property} = $value; 386 } 387 388 // Load column information 389 $this->reload_columns(); 390 391 // Clear initial model state 392 $this->clear(); 393 } 394 -
APPPATH/classes/orm.php [ 59 ] » Kohana_ORM->_initialize()
54 private $old = array(); 55 private $new = array(); 56 57 public function __construct($id = NULL) 58 { 59 $this->_initialize(); 60 61 if ($id !== NULL) 62 { 63 if (is_array($id)) 64 { -
MODPATH/orm/classes/kohana/orm.php [ 46 ] » ORM->__construct(arguments)
0integer 18
41 public static function factory($model, $id = NULL) 42 { 43 // Set class name 44 $model = 'Model_'.$model; 45 46 return new $model($id); 47 } 48 49 /** 50 * "Has one" relationships 51 * @var array -
MODPATH/frontend/views/site/aruhaz/optivisc_60.php [ 7 ] » Kohana_ORM::factory(arguments)
0string(7) "product"1integer 18
2 <div class="product product_optivisc_60"> 3 <!-- <div class="ribbon ribbon-cyan"><div>Ingyenes kiszállítás</div></div> --> 4 <!-- <div class="ribbon ribbon-red">Két havi adag</div> --> 5 6 <div class="priceline"> 7 <?php echo Controller_Site::formatPrice((int) ORM::Factory('product', 18)->getGrossPrice());?> Ft 8 </div> 9 10 <div class="titleline"> 11 <img src="/img/aruhaz/optivisc_60_box.png" width="92" height="60" alt="<?php echo ORM::Factory('product' , 18)->name; ?>"> 12 <?php echo ORM::Factory('product', 18)->name;?> -
SYSPATH/classes/kohana/view.php [ 61 ] » include(arguments)
0string(90) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/aruhaz/optivisc_60.php"56 ob_start(); 57 58 try 59 { 60 // Load the view within the current scope 61 include $kohana_view_filename; 62 } 63 catch (Exception $e) 64 { 65 // Delete the output buffer 66 ob_end_clean(); -
SYSPATH/classes/kohana/view.php [ 348 ] » Kohana_View::capture(arguments)
0string(90) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/aruhaz/optivisc_60.php"1array(2) ( "kohana_view_filename" => string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/aruhaz.php" "kohana_view_data" => array(0) )
343 { 344 throw new View_Exception('You must set the file to use within your view before rendering'); 345 } 346 347 // Combine local and global data and capture the output 348 return View::capture($this->_file, $this->_data); 349 } 350 351 } -
SYSPATH/classes/kohana/view.php [ 228 ] » Kohana_View->render()
223 */ 224 public function __toString() 225 { 226 try 227 { 228 return $this->render(); 229 } 230 catch (Exception $e) 231 { 232 /** 233 * Display the exception message. -
MODPATH/frontend/views/site/aruhaz.php [ 63 ] » Kohana_View->__toString()
58 59 <!-- optivisc --> 60 <?php echo View::factory('site/aruhaz/optivisc', get_defined_vars()); ?> 61 62 <!-- OPTIVISC SINGLE 60MG HA --> 63 <?php echo View::factory('site/aruhaz/optivisc_60', get_defined_vars()); ?> 64 65 <!-- BIOVISC ORTHO PLUS 40MG/2ML --> 66 <?php echo View::factory('site/aruhaz/biovisc_ortho_plus', get_defined_vars()); ?> 67 68 <!-- syncartil --> -
SYSPATH/classes/kohana/view.php [ 61 ] » include(arguments)
0string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/aruhaz.php"56 ob_start(); 57 58 try 59 { 60 // Load the view within the current scope 61 include $kohana_view_filename; 62 } 63 catch (Exception $e) 64 { 65 // Delete the output buffer 66 ob_end_clean(); -
SYSPATH/classes/kohana/view.php [ 348 ] » Kohana_View::capture(arguments)
0string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/aruhaz.php"1array(0)343 { 344 throw new View_Exception('You must set the file to use within your view before rendering'); 345 } 346 347 // Combine local and global data and capture the output 348 return View::capture($this->_file, $this->_data); 349 } 350 351 } -
SYSPATH/classes/kohana/view.php [ 228 ] » Kohana_View->render()
223 */ 224 public function __toString() 225 { 226 try 227 { 228 return $this->render(); 229 } 230 catch (Exception $e) 231 { 232 /** 233 * Display the exception message. -
MODPATH/frontend/views/site/layout.php [ 238 ] » Kohana_View->__toString()
233 <?php endif; ?> 234 </div><!-- header --> 235 236 <div id="content"> 237 238 <?php echo @$content; ?> 239 240 </div><!-- content --> 241 242 <div class="clear"></div> 243 -
SYSPATH/classes/kohana/view.php [ 61 ] » include(arguments)
0string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/layout.php"56 ob_start(); 57 58 try 59 { 60 // Load the view within the current scope 61 include $kohana_view_filename; 62 } 63 catch (Exception $e) 64 { 65 // Delete the output buffer 66 ob_end_clean(); -
SYSPATH/classes/kohana/view.php [ 348 ] » Kohana_View::capture(arguments)
0string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/layout.php"1array(4) ( "user" => bool FALSE "cartnum" => integer 0 "bodyclass" => string(7) "webshop" "content" => object View(2)
{ protected _file => string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/aruhaz.php" protected _data => array(0) })343 { 344 throw new View_Exception('You must set the file to use within your view before rendering'); 345 } 346 347 // Combine local and global data and capture the output 348 return View::capture($this->_file, $this->_data); 349 } 350 351 } -
SYSPATH/classes/kohana/controller/template.php [ 44 ] » Kohana_View->render()
39 */ 40 public function after() 41 { 42 if ($this->auto_render === TRUE) 43 { 44 $this->response->body($this->template->render()); 45 } 46 47 parent::after(); 48 } 49 -
SYSPATH/classes/kohana/controller.php [ 87 ] » Kohana_Controller_Template->after()
82 83 // Execute the action itself 84 $this->{$action}(); 85 86 // Execute the "after action" method 87 $this->after(); 88 89 // Return the response 90 return $this->response; 91 } 92 -
{PHP internal call} » Kohana_Controller->execute()
-
SYSPATH/classes/kohana/request/client/internal.php [ 97 ] » ReflectionMethod->invoke(arguments)
0object Controller_Site(4)
{ public template => object View(2){ protected _file => string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/layout.php" protected _data => array(4) ( "user" => bool FALSE "cartnum" => integer 0 "bodyclass" => string(7) "webshop" "content" => object View(2)public auto_render => bool TRUE public request => object Request(19){ protected _file => string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/aruhaz.php" protected _data => array(0) }) }{ protected _requested_with => NULL protected _method => string(3) "GET" protected _protocol => string(8) "HTTP/1.1" protected _secure => bool TRUE protected _referrer => NULL protected _route => object Route(5)public response => object Response(5){ protected _filters => array(0) protected _uri => string(6) "aruhaz" protected _regex => array(0) protected _defaults => array(2) ( "controller" => string(4) "site" "action" => string(6) "aruhaz" ) protected _route_regex => string(12) "#^aruhaz$#uD" }protected _routes => array(0) protected _header => object HTTP_Header(0){ }protected _body => NULL protected _directory => string(0) "" protected _controller => string(4) "Site" protected _action => string(6) "aruhaz" protected _uri => string(6) "aruhaz" protected _external => bool FALSE protected _params => array(0) protected _get => array(0) protected _post => array(0) protected _cookies => array(0) protected _client => object Request_Client_Internal(9){ protected _previous_environment => NULL protected _cache => NULL protected _follow => bool FALSE protected _follow_headers => array(1) ( 0 => string(13) "Authorization" ) protected _strict_redirect => bool TRUE protected _header_callbacks => array(1) ( "Location" => string(34) "Request_Client::on_header_location" ) protected _max_callback_depth => integer 5 protected _callback_depth => integer 1 protected _callback_params => array(0) }}{ protected _status => integer 200 protected _header => object HTTP_Header(0)}{ }protected _body => string(0) "" protected _cookies => array(0) protected _protocol => string(8) "HTTP/1.1" }92 93 // Create a new instance of the controller 94 $controller = $class->newInstance($request, $response); 95 96 // Run the controller's execute() method 97 $response = $class->getMethod('execute')->invoke($controller); 98 99 if ( ! $response instanceof Response) 100 { 101 // Controller failed to return a Response. 102 throw new Kohana_Exception('Controller failed to return a Response'); -
SYSPATH/classes/kohana/request/client.php [ 114 ] » Kohana_Request_Client_Internal->execute_request(arguments)
0object Request(19)
{ protected _requested_with => NULL protected _method => string(3) "GET" protected _protocol => string(8) "HTTP/1.1" protected _secure => bool TRUE protected _referrer => NULL protected _route => object Route(5){ protected _filters => array(0) protected _uri => string(6) "aruhaz" protected _regex => array(0) protected _defaults => array(2) ( "controller" => string(4) "site" "action" => string(6) "aruhaz" ) protected _route_regex => string(12) "#^aruhaz$#uD" }protected _routes => array(0) protected _header => object HTTP_Header(0){ }protected _body => NULL protected _directory => string(0) "" protected _controller => string(4) "Site" protected _action => string(6) "aruhaz" protected _uri => string(6) "aruhaz" protected _external => bool FALSE protected _params => array(0) protected _get => array(0) protected _post => array(0) protected _cookies => array(0) protected _client => object Request_Client_Internal(9){ protected _previous_environment => NULL protected _cache => NULL protected _follow => bool FALSE protected _follow_headers => array(1) ( 0 => string(13) "Authorization" ) protected _strict_redirect => bool TRUE protected _header_callbacks => array(1) ( "Location" => string(34) "Request_Client::on_header_location" ) protected _max_callback_depth => integer 5 protected _callback_depth => integer 1 protected _callback_params => array(0) }}1object Response(5)
{ protected _status => integer 200 protected _header => object HTTP_Header(0){ }protected _body => string(0) "" protected _cookies => array(0) protected _protocol => string(8) "HTTP/1.1" }109 $orig_response = $response = Response::factory(array('_protocol' => $request->protocol())); 110 111 if (($cache = $this->cache()) instanceof HTTP_Cache) 112 return $cache->execute($this, $request, $response); 113 114 $response = $this->execute_request($request, $response); 115 116 // Execute response callbacks 117 foreach ($this->header_callbacks() as $header => $callback) 118 { 119 if ($response->headers($header)) -
SYSPATH/classes/kohana/request.php [ 986 ] » Kohana_Request_Client->execute(arguments)
0object Request(19)
{ protected _requested_with => NULL protected _method => string(3) "GET" protected _protocol => string(8) "HTTP/1.1" protected _secure => bool TRUE protected _referrer => NULL protected _route => object Route(5){ protected _filters => array(0) protected _uri => string(6) "aruhaz" protected _regex => array(0) protected _defaults => array(2) ( "controller" => string(4) "site" "action" => string(6) "aruhaz" ) protected _route_regex => string(12) "#^aruhaz$#uD" }protected _routes => array(0) protected _header => object HTTP_Header(0){ }protected _body => NULL protected _directory => string(0) "" protected _controller => string(4) "Site" protected _action => string(6) "aruhaz" protected _uri => string(6) "aruhaz" protected _external => bool FALSE protected _params => array(0) protected _get => array(0) protected _post => array(0) protected _cookies => array(0) protected _client => object Request_Client_Internal(9){ protected _previous_environment => NULL protected _cache => NULL protected _follow => bool FALSE protected _follow_headers => array(1) ( 0 => string(13) "Authorization" ) protected _strict_redirect => bool TRUE protected _header_callbacks => array(1) ( "Location" => string(34) "Request_Client::on_header_location" ) protected _max_callback_depth => integer 5 protected _callback_depth => integer 1 protected _callback_params => array(0) }}981 throw new Request_Exception('Unable to execute :uri without a Kohana_Request_Client', array( 982 ':uri' => $this->_uri, 983 )); 984 } 985 986 return $this->_client->execute($this); 987 } 988 989 /** 990 * Returns whether this request is the initial request kohana received. 991 * Can be used to test for sub requests. -
DOCROOT/index.php [ 120 ] » Kohana_Request->execute()
115 /** 116 * Execute the main request. A source of the URI can be passed, eg: $_SERVER['PATH_INFO']. 117 * If no source is specified, the URI will be automatically detected. 118 */ 119 echo Request::factory(TRUE, array(), FALSE) 120 ->execute() 121 ->send_headers(TRUE) 122 ->body(); 123 }
Environment
Included files (108)
DOCROOT/index.php |
APPPATH/bootstrap.php |
SYSPATH/classes/kohana/core.php |
SYSPATH/classes/kohana.php |
SYSPATH/classes/i18n.php |
SYSPATH/classes/kohana/i18n.php |
SYSPATH/classes/http.php |
SYSPATH/classes/kohana/http.php |
SYSPATH/classes/kohana/exception.php |
SYSPATH/classes/kohana/kohana/exception.php |
SYSPATH/classes/log.php |
SYSPATH/classes/kohana/log.php |
SYSPATH/classes/config.php |
SYSPATH/classes/kohana/config.php |
SYSPATH/classes/log/file.php |
SYSPATH/classes/kohana/log/file.php |
SYSPATH/classes/log/writer.php |
SYSPATH/classes/kohana/log/writer.php |
SYSPATH/classes/config/file.php |
SYSPATH/classes/kohana/config/file.php |
SYSPATH/classes/kohana/config/file/reader.php |
SYSPATH/classes/kohana/config/reader.php |
SYSPATH/classes/kohana/config/source.php |
MODPATH/product/init.php |
SYSPATH/classes/route.php |
SYSPATH/classes/kohana/route.php |
MODPATH/email/init.php |
MODPATH/imagefly/init.php |
MODPATH/captcha/init.php |
MODPATH/admin/init.php |
MODPATH/frontend/init.php |
SYSPATH/classes/cookie.php |
SYSPATH/classes/kohana/cookie.php |
MODPATH/admin/classes/papertrail/log.php |
SYSPATH/classes/request.php |
SYSPATH/classes/kohana/request.php |
SYSPATH/classes/http/request.php |
SYSPATH/classes/kohana/http/request.php |
SYSPATH/classes/http/message.php |
SYSPATH/classes/kohana/http/message.php |
SYSPATH/classes/http/header.php |
SYSPATH/classes/kohana/http/header.php |
SYSPATH/classes/request/client/internal.php |
SYSPATH/classes/kohana/request/client/internal.php |
SYSPATH/classes/request/client.php |
SYSPATH/classes/kohana/request/client.php |
SYSPATH/classes/arr.php |
SYSPATH/classes/kohana/arr.php |
SYSPATH/classes/response.php |
SYSPATH/classes/kohana/response.php |
SYSPATH/classes/http/response.php |
SYSPATH/classes/kohana/http/response.php |
SYSPATH/classes/profiler.php |
SYSPATH/classes/kohana/profiler.php |
MODPATH/frontend/classes/controller/site.php |
SYSPATH/classes/controller/template.php |
SYSPATH/classes/kohana/controller/template.php |
SYSPATH/classes/controller.php |
SYSPATH/classes/kohana/controller.php |
SYSPATH/classes/view.php |
SYSPATH/classes/kohana/view.php |
SYSPATH/classes/session.php |
SYSPATH/classes/kohana/session.php |
SYSPATH/config/session.php |
MODPATH/database/config/session.php |
SYSPATH/classes/config/group.php |
SYSPATH/classes/kohana/config/group.php |
SYSPATH/classes/session/native.php |
SYSPATH/classes/kohana/session/native.php |
MODPATH/frontend/views/site/layout.php |
SYSPATH/classes/url.php |
SYSPATH/classes/kohana/url.php |
SYSPATH/classes/utf8.php |
SYSPATH/classes/kohana/utf8.php |
MODPATH/frontend/views/site/aruhaz.php |
MODPATH/frontend/views/site/aruhaz/css.php |
MODPATH/frontend/views/site/aruhaz/xynbio.php |
APPPATH/classes/orm.php |
MODPATH/orm/classes/kohana/orm.php |
SYSPATH/classes/model.php |
SYSPATH/classes/kohana/model.php |
MODPATH/product/classes/model/product.php |
SYSPATH/classes/inflector.php |
SYSPATH/classes/kohana/inflector.php |
SYSPATH/config/inflector.php |
MODPATH/database/classes/database.php |
MODPATH/database/classes/kohana/database.php |
MODPATH/database/config/database.php |
APPPATH/config/database.php |
MODPATH/database/classes/database/mysql.php |
MODPATH/database/classes/kohana/database/mysql.php |
MODPATH/database/classes/database/exception.php |
MODPATH/database/classes/kohana/database/exception.php |
SYSPATH/classes/debug.php |
SYSPATH/classes/kohana/debug.php |
SYSPATH/classes/date.php |
SYSPATH/classes/kohana/date.php |
SYSPATH/views/kohana/error.php |
MODPATH/frontend/views/site/aruhaz/mask.php |
MODPATH/frontend/views/site/aruhaz/novosseum.php |
MODPATH/frontend/views/site/aruhaz/neocartil.php |
MODPATH/frontend/views/site/aruhaz/fluxus_prostatae.php |
MODPATH/frontend/views/site/aruhaz/neocartil_pro.php |
MODPATH/frontend/views/site/aruhaz/resistar_pro.php |
MODPATH/frontend/views/site/aruhaz/yxor.php |
MODPATH/frontend/views/site/aruhaz/novosseum_dental.php |
MODPATH/frontend/views/site/aruhaz/optivisc.php |
MODPATH/frontend/views/site/aruhaz/optivisc_60.php |
Loaded extensions (53)
Core |
date |
ereg |
libxml |
openssl |
pcre |
zlib |
filter |
hash |
pcntl |
readline |
Reflection |
SPL |
session |
standard |
cgi-fcgi |
bcmath |
calendar |
ctype |
curl |
dom |
fileinfo |
ftp |
gd |
imap |
intl |
json |
mbstring |
mcrypt |
mysqlnd |
mysql |
mysqli |
PDO |
pdo_mysql |
pdo_pgsql |
pdo_sqlite |
pgsql |
Phar |
posix |
SimpleXML |
soap |
sockets |
sqlite3 |
tokenizer |
xml |
wddx |
xmlreader |
xmlrpc |
xmlwriter |
xsl |
zip |
mhash |
ionCube Loader |
$_SERVER
CONTEXT_DOCUMENT_ROOT |
string(39) "/home/synergohub/webshop.synergohub.com" |
CONTEXT_PREFIX |
string(0) "" |
DOCUMENT_ROOT |
string(39) "/home/synergohub/webshop.synergohub.com" |
GATEWAY_INTERFACE |
string(7) "CGI/1.1" |
HTTPS |
string(2) "on" |
HTTP_ACCEPT |
string(3) "*/*" |
HTTP_ACCEPT_ENCODING |
string(23) "gzip, br, zstd, deflate" |
HTTP_HOST |
string(19) "shop.synergohub.com" |
HTTP_USER_AGENT |
string(103) "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" |
PATH |
string(13) "/bin:/usr/bin" |
PHP_INI_SCAN_DIR |
string(67) "/opt/cpanel/ea-php56/root/etc:/opt/cpanel/ea-php56/root/etc/php.d:." |
QUERY_STRING |
string(0) "" |
REDIRECT_HTTPS |
string(2) "on" |
REDIRECT_SSL_TLS_SNI |
string(19) "shop.synergohub.com" |
REDIRECT_STATUS |
string(3) "200" |
REDIRECT_UNIQUE_ID |
string(27) "aVH0bOAH2TfTjairR_s5XQAAAAQ" |
REDIRECT_URL |
string(7) "/aruhaz" |
REMOTE_ADDR |
string(13) "216.73.216.85" |
REMOTE_PORT |
string(5) "14248" |
REQUEST_METHOD |
string(3) "GET" |
REQUEST_SCHEME |
string(5) "https" |
REQUEST_URI |
string(7) "/aruhaz" |
SCRIPT_FILENAME |
string(49) "/home/synergohub/webshop.synergohub.com/index.php" |
SCRIPT_NAME |
string(10) "/index.php" |
SERVER_ADDR |
string(14) "185.51.191.204" |
SERVER_ADMIN |
string(29) "webmaster@shop.synergohub.com" |
SERVER_NAME |
string(19) "shop.synergohub.com" |
SERVER_PORT |
string(3) "443" |
SERVER_PROTOCOL |
string(8) "HTTP/1.1" |
SERVER_SIGNATURE |
string(0) "" |
SERVER_SOFTWARE |
string(6) "Apache" |
SSL_TLS_SNI |
string(19) "shop.synergohub.com" |
TZ |
string(15) "Europe/Budapest" |
UNIQUE_ID |
string(27) "aVH0bOAH2TfTjairR_s5XQAAAAQ" |
ORIG_PATH_INFO |
string(7) "/aruhaz" |
ORIG_PATH_TRANSLATED |
string(49) "/home/synergohub/webshop.synergohub.com/index.php" |
PHP_SELF |
string(10) "/index.php" |
REQUEST_TIME_FLOAT |
float 1766978668,26 |
REQUEST_TIME |
integer 1766978668 |
argv |
array(0) |
argc |
integer 0 |
Database_Exception [ 1046 ]:
MODPATH/database/classes/kohana/database/mysql.php [ 194 ]
189 {
190 // This benchmark is worthless
191 Profiler::delete($benchmark);
192 }
193
194 throw new Database_Exception(':error [ :query ]',
195 array(':error' => mysql_error($this->_connection), ':query' => $sql),
196 mysql_errno($this->_connection));
197 }
198
199 if (isset($benchmark))
-
MODPATH/database/classes/kohana/database/mysql.php [ 359 ] » Kohana_Database_MySQL->query(arguments)
0integer 1
1string(33) "SHOW FULL COLUMNS FROM `products`"2bool FALSE
354 $result = $this->query(Database::SELECT, 'SHOW FULL COLUMNS FROM '.$table.' LIKE '.$this->quote($like), FALSE); 355 } 356 else 357 { 358 // Find all column names 359 $result = $this->query(Database::SELECT, 'SHOW FULL COLUMNS FROM '.$table, FALSE); 360 } 361 362 $count = 0; 363 $columns = array(); 364 foreach ($result as $row) -
MODPATH/orm/classes/kohana/orm.php [ 1668 ] » Kohana_Database_MySQL->list_columns(arguments)
0string(8) "products"1663 * @return array 1664 */ 1665 public function list_columns() 1666 { 1667 // Proxy to database 1668 return $this->_db->list_columns($this->_table_name); 1669 } 1670 1671 /** 1672 * Returns an ORM model for the given one-one related alias 1673 * -
MODPATH/orm/classes/kohana/orm.php [ 444 ] » Kohana_ORM->list_columns()
439 $this->_table_columns = ORM::$_column_cache[$this->_object_name]; 440 } 441 else 442 { 443 // Grab column information from database 444 $this->_table_columns = $this->list_columns(); 445 446 // Load column cache 447 ORM::$_column_cache[$this->_object_name] = $this->_table_columns; 448 } 449 } -
MODPATH/orm/classes/kohana/orm.php [ 389 ] » Kohana_ORM->reload_columns()
384 { 385 $this->{$property} = $value; 386 } 387 388 // Load column information 389 $this->reload_columns(); 390 391 // Clear initial model state 392 $this->clear(); 393 } 394 -
APPPATH/classes/orm.php [ 59 ] » Kohana_ORM->_initialize()
54 private $old = array(); 55 private $new = array(); 56 57 public function __construct($id = NULL) 58 { 59 $this->_initialize(); 60 61 if ($id !== NULL) 62 { 63 if (is_array($id)) 64 { -
MODPATH/orm/classes/kohana/orm.php [ 46 ] » ORM->__construct(arguments)
0integer 20
41 public static function factory($model, $id = NULL) 42 { 43 // Set class name 44 $model = 'Model_'.$model; 45 46 return new $model($id); 47 } 48 49 /** 50 * "Has one" relationships 51 * @var array -
MODPATH/frontend/views/site/aruhaz/biovisc_ortho_plus.php [ 7 ] » Kohana_ORM::factory(arguments)
0string(7) "product"1integer 20
2 <div class="product product_biovisc_ortho_plus"> 3 <!-- <div class="ribbon ribbon-cyan"><div>Ingyenes kiszállítás</div></div> --> 4 <!-- <div class="ribbon ribbon-red">Két havi adag</div> --> 5 6 <div class="priceline"> 7 <?php echo Controller_Site::formatPrice((int) ORM::Factory('product', 20)->getGrossPrice());?> Ft 8 </div> 9 10 <div class="titleline"> 11 <img src="/img/aruhaz/biovisc_ortho_plus_box.png" width="92" height="55" alt="<?php echo ORM::Factory('product' , 20)->name; ?>"> 12 <?php echo ORM::Factory('product', 20)->name;?> -
SYSPATH/classes/kohana/view.php [ 61 ] » include(arguments)
0string(97) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/aruhaz/biovisc_ortho_plus.php"56 ob_start(); 57 58 try 59 { 60 // Load the view within the current scope 61 include $kohana_view_filename; 62 } 63 catch (Exception $e) 64 { 65 // Delete the output buffer 66 ob_end_clean(); -
SYSPATH/classes/kohana/view.php [ 348 ] » Kohana_View::capture(arguments)
0string(97) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/aruhaz/biovisc_ortho_plus.php"1array(2) ( "kohana_view_filename" => string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/aruhaz.php" "kohana_view_data" => array(0) )
343 { 344 throw new View_Exception('You must set the file to use within your view before rendering'); 345 } 346 347 // Combine local and global data and capture the output 348 return View::capture($this->_file, $this->_data); 349 } 350 351 } -
SYSPATH/classes/kohana/view.php [ 228 ] » Kohana_View->render()
223 */ 224 public function __toString() 225 { 226 try 227 { 228 return $this->render(); 229 } 230 catch (Exception $e) 231 { 232 /** 233 * Display the exception message. -
MODPATH/frontend/views/site/aruhaz.php [ 66 ] » Kohana_View->__toString()
61 62 <!-- OPTIVISC SINGLE 60MG HA --> 63 <?php echo View::factory('site/aruhaz/optivisc_60', get_defined_vars()); ?> 64 65 <!-- BIOVISC ORTHO PLUS 40MG/2ML --> 66 <?php echo View::factory('site/aruhaz/biovisc_ortho_plus', get_defined_vars()); ?> 67 68 <!-- syncartil --> 69 <?php //echo View::factory('site/aruhaz/syncartil', get_defined_vars()); ?> 70 71 <!-- Optivisc™ 20 --> -
SYSPATH/classes/kohana/view.php [ 61 ] » include(arguments)
0string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/aruhaz.php"56 ob_start(); 57 58 try 59 { 60 // Load the view within the current scope 61 include $kohana_view_filename; 62 } 63 catch (Exception $e) 64 { 65 // Delete the output buffer 66 ob_end_clean(); -
SYSPATH/classes/kohana/view.php [ 348 ] » Kohana_View::capture(arguments)
0string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/aruhaz.php"1array(0)343 { 344 throw new View_Exception('You must set the file to use within your view before rendering'); 345 } 346 347 // Combine local and global data and capture the output 348 return View::capture($this->_file, $this->_data); 349 } 350 351 } -
SYSPATH/classes/kohana/view.php [ 228 ] » Kohana_View->render()
223 */ 224 public function __toString() 225 { 226 try 227 { 228 return $this->render(); 229 } 230 catch (Exception $e) 231 { 232 /** 233 * Display the exception message. -
MODPATH/frontend/views/site/layout.php [ 238 ] » Kohana_View->__toString()
233 <?php endif; ?> 234 </div><!-- header --> 235 236 <div id="content"> 237 238 <?php echo @$content; ?> 239 240 </div><!-- content --> 241 242 <div class="clear"></div> 243 -
SYSPATH/classes/kohana/view.php [ 61 ] » include(arguments)
0string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/layout.php"56 ob_start(); 57 58 try 59 { 60 // Load the view within the current scope 61 include $kohana_view_filename; 62 } 63 catch (Exception $e) 64 { 65 // Delete the output buffer 66 ob_end_clean(); -
SYSPATH/classes/kohana/view.php [ 348 ] » Kohana_View::capture(arguments)
0string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/layout.php"1array(4) ( "user" => bool FALSE "cartnum" => integer 0 "bodyclass" => string(7) "webshop" "content" => object View(2)
{ protected _file => string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/aruhaz.php" protected _data => array(0) })343 { 344 throw new View_Exception('You must set the file to use within your view before rendering'); 345 } 346 347 // Combine local and global data and capture the output 348 return View::capture($this->_file, $this->_data); 349 } 350 351 } -
SYSPATH/classes/kohana/controller/template.php [ 44 ] » Kohana_View->render()
39 */ 40 public function after() 41 { 42 if ($this->auto_render === TRUE) 43 { 44 $this->response->body($this->template->render()); 45 } 46 47 parent::after(); 48 } 49 -
SYSPATH/classes/kohana/controller.php [ 87 ] » Kohana_Controller_Template->after()
82 83 // Execute the action itself 84 $this->{$action}(); 85 86 // Execute the "after action" method 87 $this->after(); 88 89 // Return the response 90 return $this->response; 91 } 92 -
{PHP internal call} » Kohana_Controller->execute()
-
SYSPATH/classes/kohana/request/client/internal.php [ 97 ] » ReflectionMethod->invoke(arguments)
0object Controller_Site(4)
{ public template => object View(2){ protected _file => string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/layout.php" protected _data => array(4) ( "user" => bool FALSE "cartnum" => integer 0 "bodyclass" => string(7) "webshop" "content" => object View(2)public auto_render => bool TRUE public request => object Request(19){ protected _file => string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/aruhaz.php" protected _data => array(0) }) }{ protected _requested_with => NULL protected _method => string(3) "GET" protected _protocol => string(8) "HTTP/1.1" protected _secure => bool TRUE protected _referrer => NULL protected _route => object Route(5)public response => object Response(5){ protected _filters => array(0) protected _uri => string(6) "aruhaz" protected _regex => array(0) protected _defaults => array(2) ( "controller" => string(4) "site" "action" => string(6) "aruhaz" ) protected _route_regex => string(12) "#^aruhaz$#uD" }protected _routes => array(0) protected _header => object HTTP_Header(0){ }protected _body => NULL protected _directory => string(0) "" protected _controller => string(4) "Site" protected _action => string(6) "aruhaz" protected _uri => string(6) "aruhaz" protected _external => bool FALSE protected _params => array(0) protected _get => array(0) protected _post => array(0) protected _cookies => array(0) protected _client => object Request_Client_Internal(9){ protected _previous_environment => NULL protected _cache => NULL protected _follow => bool FALSE protected _follow_headers => array(1) ( 0 => string(13) "Authorization" ) protected _strict_redirect => bool TRUE protected _header_callbacks => array(1) ( "Location" => string(34) "Request_Client::on_header_location" ) protected _max_callback_depth => integer 5 protected _callback_depth => integer 1 protected _callback_params => array(0) }}{ protected _status => integer 200 protected _header => object HTTP_Header(0)}{ }protected _body => string(0) "" protected _cookies => array(0) protected _protocol => string(8) "HTTP/1.1" }92 93 // Create a new instance of the controller 94 $controller = $class->newInstance($request, $response); 95 96 // Run the controller's execute() method 97 $response = $class->getMethod('execute')->invoke($controller); 98 99 if ( ! $response instanceof Response) 100 { 101 // Controller failed to return a Response. 102 throw new Kohana_Exception('Controller failed to return a Response'); -
SYSPATH/classes/kohana/request/client.php [ 114 ] » Kohana_Request_Client_Internal->execute_request(arguments)
0object Request(19)
{ protected _requested_with => NULL protected _method => string(3) "GET" protected _protocol => string(8) "HTTP/1.1" protected _secure => bool TRUE protected _referrer => NULL protected _route => object Route(5){ protected _filters => array(0) protected _uri => string(6) "aruhaz" protected _regex => array(0) protected _defaults => array(2) ( "controller" => string(4) "site" "action" => string(6) "aruhaz" ) protected _route_regex => string(12) "#^aruhaz$#uD" }protected _routes => array(0) protected _header => object HTTP_Header(0){ }protected _body => NULL protected _directory => string(0) "" protected _controller => string(4) "Site" protected _action => string(6) "aruhaz" protected _uri => string(6) "aruhaz" protected _external => bool FALSE protected _params => array(0) protected _get => array(0) protected _post => array(0) protected _cookies => array(0) protected _client => object Request_Client_Internal(9){ protected _previous_environment => NULL protected _cache => NULL protected _follow => bool FALSE protected _follow_headers => array(1) ( 0 => string(13) "Authorization" ) protected _strict_redirect => bool TRUE protected _header_callbacks => array(1) ( "Location" => string(34) "Request_Client::on_header_location" ) protected _max_callback_depth => integer 5 protected _callback_depth => integer 1 protected _callback_params => array(0) }}1object Response(5)
{ protected _status => integer 200 protected _header => object HTTP_Header(0){ }protected _body => string(0) "" protected _cookies => array(0) protected _protocol => string(8) "HTTP/1.1" }109 $orig_response = $response = Response::factory(array('_protocol' => $request->protocol())); 110 111 if (($cache = $this->cache()) instanceof HTTP_Cache) 112 return $cache->execute($this, $request, $response); 113 114 $response = $this->execute_request($request, $response); 115 116 // Execute response callbacks 117 foreach ($this->header_callbacks() as $header => $callback) 118 { 119 if ($response->headers($header)) -
SYSPATH/classes/kohana/request.php [ 986 ] » Kohana_Request_Client->execute(arguments)
0object Request(19)
{ protected _requested_with => NULL protected _method => string(3) "GET" protected _protocol => string(8) "HTTP/1.1" protected _secure => bool TRUE protected _referrer => NULL protected _route => object Route(5){ protected _filters => array(0) protected _uri => string(6) "aruhaz" protected _regex => array(0) protected _defaults => array(2) ( "controller" => string(4) "site" "action" => string(6) "aruhaz" ) protected _route_regex => string(12) "#^aruhaz$#uD" }protected _routes => array(0) protected _header => object HTTP_Header(0){ }protected _body => NULL protected _directory => string(0) "" protected _controller => string(4) "Site" protected _action => string(6) "aruhaz" protected _uri => string(6) "aruhaz" protected _external => bool FALSE protected _params => array(0) protected _get => array(0) protected _post => array(0) protected _cookies => array(0) protected _client => object Request_Client_Internal(9){ protected _previous_environment => NULL protected _cache => NULL protected _follow => bool FALSE protected _follow_headers => array(1) ( 0 => string(13) "Authorization" ) protected _strict_redirect => bool TRUE protected _header_callbacks => array(1) ( "Location" => string(34) "Request_Client::on_header_location" ) protected _max_callback_depth => integer 5 protected _callback_depth => integer 1 protected _callback_params => array(0) }}981 throw new Request_Exception('Unable to execute :uri without a Kohana_Request_Client', array( 982 ':uri' => $this->_uri, 983 )); 984 } 985 986 return $this->_client->execute($this); 987 } 988 989 /** 990 * Returns whether this request is the initial request kohana received. 991 * Can be used to test for sub requests. -
DOCROOT/index.php [ 120 ] » Kohana_Request->execute()
115 /** 116 * Execute the main request. A source of the URI can be passed, eg: $_SERVER['PATH_INFO']. 117 * If no source is specified, the URI will be automatically detected. 118 */ 119 echo Request::factory(TRUE, array(), FALSE) 120 ->execute() 121 ->send_headers(TRUE) 122 ->body(); 123 }
Environment
Included files (109)
DOCROOT/index.php |
APPPATH/bootstrap.php |
SYSPATH/classes/kohana/core.php |
SYSPATH/classes/kohana.php |
SYSPATH/classes/i18n.php |
SYSPATH/classes/kohana/i18n.php |
SYSPATH/classes/http.php |
SYSPATH/classes/kohana/http.php |
SYSPATH/classes/kohana/exception.php |
SYSPATH/classes/kohana/kohana/exception.php |
SYSPATH/classes/log.php |
SYSPATH/classes/kohana/log.php |
SYSPATH/classes/config.php |
SYSPATH/classes/kohana/config.php |
SYSPATH/classes/log/file.php |
SYSPATH/classes/kohana/log/file.php |
SYSPATH/classes/log/writer.php |
SYSPATH/classes/kohana/log/writer.php |
SYSPATH/classes/config/file.php |
SYSPATH/classes/kohana/config/file.php |
SYSPATH/classes/kohana/config/file/reader.php |
SYSPATH/classes/kohana/config/reader.php |
SYSPATH/classes/kohana/config/source.php |
MODPATH/product/init.php |
SYSPATH/classes/route.php |
SYSPATH/classes/kohana/route.php |
MODPATH/email/init.php |
MODPATH/imagefly/init.php |
MODPATH/captcha/init.php |
MODPATH/admin/init.php |
MODPATH/frontend/init.php |
SYSPATH/classes/cookie.php |
SYSPATH/classes/kohana/cookie.php |
MODPATH/admin/classes/papertrail/log.php |
SYSPATH/classes/request.php |
SYSPATH/classes/kohana/request.php |
SYSPATH/classes/http/request.php |
SYSPATH/classes/kohana/http/request.php |
SYSPATH/classes/http/message.php |
SYSPATH/classes/kohana/http/message.php |
SYSPATH/classes/http/header.php |
SYSPATH/classes/kohana/http/header.php |
SYSPATH/classes/request/client/internal.php |
SYSPATH/classes/kohana/request/client/internal.php |
SYSPATH/classes/request/client.php |
SYSPATH/classes/kohana/request/client.php |
SYSPATH/classes/arr.php |
SYSPATH/classes/kohana/arr.php |
SYSPATH/classes/response.php |
SYSPATH/classes/kohana/response.php |
SYSPATH/classes/http/response.php |
SYSPATH/classes/kohana/http/response.php |
SYSPATH/classes/profiler.php |
SYSPATH/classes/kohana/profiler.php |
MODPATH/frontend/classes/controller/site.php |
SYSPATH/classes/controller/template.php |
SYSPATH/classes/kohana/controller/template.php |
SYSPATH/classes/controller.php |
SYSPATH/classes/kohana/controller.php |
SYSPATH/classes/view.php |
SYSPATH/classes/kohana/view.php |
SYSPATH/classes/session.php |
SYSPATH/classes/kohana/session.php |
SYSPATH/config/session.php |
MODPATH/database/config/session.php |
SYSPATH/classes/config/group.php |
SYSPATH/classes/kohana/config/group.php |
SYSPATH/classes/session/native.php |
SYSPATH/classes/kohana/session/native.php |
MODPATH/frontend/views/site/layout.php |
SYSPATH/classes/url.php |
SYSPATH/classes/kohana/url.php |
SYSPATH/classes/utf8.php |
SYSPATH/classes/kohana/utf8.php |
MODPATH/frontend/views/site/aruhaz.php |
MODPATH/frontend/views/site/aruhaz/css.php |
MODPATH/frontend/views/site/aruhaz/xynbio.php |
APPPATH/classes/orm.php |
MODPATH/orm/classes/kohana/orm.php |
SYSPATH/classes/model.php |
SYSPATH/classes/kohana/model.php |
MODPATH/product/classes/model/product.php |
SYSPATH/classes/inflector.php |
SYSPATH/classes/kohana/inflector.php |
SYSPATH/config/inflector.php |
MODPATH/database/classes/database.php |
MODPATH/database/classes/kohana/database.php |
MODPATH/database/config/database.php |
APPPATH/config/database.php |
MODPATH/database/classes/database/mysql.php |
MODPATH/database/classes/kohana/database/mysql.php |
MODPATH/database/classes/database/exception.php |
MODPATH/database/classes/kohana/database/exception.php |
SYSPATH/classes/debug.php |
SYSPATH/classes/kohana/debug.php |
SYSPATH/classes/date.php |
SYSPATH/classes/kohana/date.php |
SYSPATH/views/kohana/error.php |
MODPATH/frontend/views/site/aruhaz/mask.php |
MODPATH/frontend/views/site/aruhaz/novosseum.php |
MODPATH/frontend/views/site/aruhaz/neocartil.php |
MODPATH/frontend/views/site/aruhaz/fluxus_prostatae.php |
MODPATH/frontend/views/site/aruhaz/neocartil_pro.php |
MODPATH/frontend/views/site/aruhaz/resistar_pro.php |
MODPATH/frontend/views/site/aruhaz/yxor.php |
MODPATH/frontend/views/site/aruhaz/novosseum_dental.php |
MODPATH/frontend/views/site/aruhaz/optivisc.php |
MODPATH/frontend/views/site/aruhaz/optivisc_60.php |
MODPATH/frontend/views/site/aruhaz/biovisc_ortho_plus.php |
Loaded extensions (53)
Core |
date |
ereg |
libxml |
openssl |
pcre |
zlib |
filter |
hash |
pcntl |
readline |
Reflection |
SPL |
session |
standard |
cgi-fcgi |
bcmath |
calendar |
ctype |
curl |
dom |
fileinfo |
ftp |
gd |
imap |
intl |
json |
mbstring |
mcrypt |
mysqlnd |
mysql |
mysqli |
PDO |
pdo_mysql |
pdo_pgsql |
pdo_sqlite |
pgsql |
Phar |
posix |
SimpleXML |
soap |
sockets |
sqlite3 |
tokenizer |
xml |
wddx |
xmlreader |
xmlrpc |
xmlwriter |
xsl |
zip |
mhash |
ionCube Loader |
$_SERVER
CONTEXT_DOCUMENT_ROOT |
string(39) "/home/synergohub/webshop.synergohub.com" |
CONTEXT_PREFIX |
string(0) "" |
DOCUMENT_ROOT |
string(39) "/home/synergohub/webshop.synergohub.com" |
GATEWAY_INTERFACE |
string(7) "CGI/1.1" |
HTTPS |
string(2) "on" |
HTTP_ACCEPT |
string(3) "*/*" |
HTTP_ACCEPT_ENCODING |
string(23) "gzip, br, zstd, deflate" |
HTTP_HOST |
string(19) "shop.synergohub.com" |
HTTP_USER_AGENT |
string(103) "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" |
PATH |
string(13) "/bin:/usr/bin" |
PHP_INI_SCAN_DIR |
string(67) "/opt/cpanel/ea-php56/root/etc:/opt/cpanel/ea-php56/root/etc/php.d:." |
QUERY_STRING |
string(0) "" |
REDIRECT_HTTPS |
string(2) "on" |
REDIRECT_SSL_TLS_SNI |
string(19) "shop.synergohub.com" |
REDIRECT_STATUS |
string(3) "200" |
REDIRECT_UNIQUE_ID |
string(27) "aVH0bOAH2TfTjairR_s5XQAAAAQ" |
REDIRECT_URL |
string(7) "/aruhaz" |
REMOTE_ADDR |
string(13) "216.73.216.85" |
REMOTE_PORT |
string(5) "14248" |
REQUEST_METHOD |
string(3) "GET" |
REQUEST_SCHEME |
string(5) "https" |
REQUEST_URI |
string(7) "/aruhaz" |
SCRIPT_FILENAME |
string(49) "/home/synergohub/webshop.synergohub.com/index.php" |
SCRIPT_NAME |
string(10) "/index.php" |
SERVER_ADDR |
string(14) "185.51.191.204" |
SERVER_ADMIN |
string(29) "webmaster@shop.synergohub.com" |
SERVER_NAME |
string(19) "shop.synergohub.com" |
SERVER_PORT |
string(3) "443" |
SERVER_PROTOCOL |
string(8) "HTTP/1.1" |
SERVER_SIGNATURE |
string(0) "" |
SERVER_SOFTWARE |
string(6) "Apache" |
SSL_TLS_SNI |
string(19) "shop.synergohub.com" |
TZ |
string(15) "Europe/Budapest" |
UNIQUE_ID |
string(27) "aVH0bOAH2TfTjairR_s5XQAAAAQ" |
ORIG_PATH_INFO |
string(7) "/aruhaz" |
ORIG_PATH_TRANSLATED |
string(49) "/home/synergohub/webshop.synergohub.com/index.php" |
PHP_SELF |
string(10) "/index.php" |
REQUEST_TIME_FLOAT |
float 1766978668,26 |
REQUEST_TIME |
integer 1766978668 |
argv |
array(0) |
argc |
integer 0 |
Database_Exception [ 1046 ]:
MODPATH/database/classes/kohana/database/mysql.php [ 194 ]
189 {
190 // This benchmark is worthless
191 Profiler::delete($benchmark);
192 }
193
194 throw new Database_Exception(':error [ :query ]',
195 array(':error' => mysql_error($this->_connection), ':query' => $sql),
196 mysql_errno($this->_connection));
197 }
198
199 if (isset($benchmark))
-
MODPATH/database/classes/kohana/database/mysql.php [ 359 ] » Kohana_Database_MySQL->query(arguments)
0integer 1
1string(33) "SHOW FULL COLUMNS FROM `products`"2bool FALSE
354 $result = $this->query(Database::SELECT, 'SHOW FULL COLUMNS FROM '.$table.' LIKE '.$this->quote($like), FALSE); 355 } 356 else 357 { 358 // Find all column names 359 $result = $this->query(Database::SELECT, 'SHOW FULL COLUMNS FROM '.$table, FALSE); 360 } 361 362 $count = 0; 363 $columns = array(); 364 foreach ($result as $row) -
MODPATH/orm/classes/kohana/orm.php [ 1668 ] » Kohana_Database_MySQL->list_columns(arguments)
0string(8) "products"1663 * @return array 1664 */ 1665 public function list_columns() 1666 { 1667 // Proxy to database 1668 return $this->_db->list_columns($this->_table_name); 1669 } 1670 1671 /** 1672 * Returns an ORM model for the given one-one related alias 1673 * -
MODPATH/orm/classes/kohana/orm.php [ 444 ] » Kohana_ORM->list_columns()
439 $this->_table_columns = ORM::$_column_cache[$this->_object_name]; 440 } 441 else 442 { 443 // Grab column information from database 444 $this->_table_columns = $this->list_columns(); 445 446 // Load column cache 447 ORM::$_column_cache[$this->_object_name] = $this->_table_columns; 448 } 449 } -
MODPATH/orm/classes/kohana/orm.php [ 389 ] » Kohana_ORM->reload_columns()
384 { 385 $this->{$property} = $value; 386 } 387 388 // Load column information 389 $this->reload_columns(); 390 391 // Clear initial model state 392 $this->clear(); 393 } 394 -
APPPATH/classes/orm.php [ 59 ] » Kohana_ORM->_initialize()
54 private $old = array(); 55 private $new = array(); 56 57 public function __construct($id = NULL) 58 { 59 $this->_initialize(); 60 61 if ($id !== NULL) 62 { 63 if (is_array($id)) 64 { -
MODPATH/orm/classes/kohana/orm.php [ 46 ] » ORM->__construct(arguments)
0integer 21
41 public static function factory($model, $id = NULL) 42 { 43 // Set class name 44 $model = 'Model_'.$model; 45 46 return new $model($id); 47 } 48 49 /** 50 * "Has one" relationships 51 * @var array -
MODPATH/frontend/views/site/aruhaz/optivisc_20.php [ 7 ] » Kohana_ORM::factory(arguments)
0string(7) "product"1integer 21
2 <div class="product product_optivisc_20"> 3 <!-- <div class="ribbon ribbon-cyan"><div>Ingyenes kiszállítás</div></div> --> 4 <!-- <div class="ribbon ribbon-red">Két havi adag</div> --> 5 6 <div class="priceline"> 7 <?php echo Controller_Site::formatPrice((int) ORM::Factory('product', 21)->getGrossPrice());?> Ft 8 </div> 9 10 <div class="titleline"> 11 <img src="/img/aruhaz/optivisc_20_box.png" width="92" height="55" alt="<?php echo ORM::Factory('product' , 21)->name; ?>"> 12 <?php echo ORM::Factory('product', 21)->name;?> -
SYSPATH/classes/kohana/view.php [ 61 ] » include(arguments)
0string(90) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/aruhaz/optivisc_20.php"56 ob_start(); 57 58 try 59 { 60 // Load the view within the current scope 61 include $kohana_view_filename; 62 } 63 catch (Exception $e) 64 { 65 // Delete the output buffer 66 ob_end_clean(); -
SYSPATH/classes/kohana/view.php [ 348 ] » Kohana_View::capture(arguments)
0string(90) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/aruhaz/optivisc_20.php"1array(2) ( "kohana_view_filename" => string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/aruhaz.php" "kohana_view_data" => array(0) )
343 { 344 throw new View_Exception('You must set the file to use within your view before rendering'); 345 } 346 347 // Combine local and global data and capture the output 348 return View::capture($this->_file, $this->_data); 349 } 350 351 } -
SYSPATH/classes/kohana/view.php [ 228 ] » Kohana_View->render()
223 */ 224 public function __toString() 225 { 226 try 227 { 228 return $this->render(); 229 } 230 catch (Exception $e) 231 { 232 /** 233 * Display the exception message. -
MODPATH/frontend/views/site/aruhaz.php [ 72 ] » Kohana_View->__toString()
67 68 <!-- syncartil --> 69 <?php //echo View::factory('site/aruhaz/syncartil', get_defined_vars()); ?> 70 71 <!-- Optivisc™ 20 --> 72 <?php echo View::factory('site/aruhaz/optivisc_20', get_defined_vars()); ?> 73 74 <!-- syncordia --> 75 <?php echo View::factory('site/aruhaz/syncordia', get_defined_vars()); ?> 76 77 <!-- hexacor --> -
SYSPATH/classes/kohana/view.php [ 61 ] » include(arguments)
0string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/aruhaz.php"56 ob_start(); 57 58 try 59 { 60 // Load the view within the current scope 61 include $kohana_view_filename; 62 } 63 catch (Exception $e) 64 { 65 // Delete the output buffer 66 ob_end_clean(); -
SYSPATH/classes/kohana/view.php [ 348 ] » Kohana_View::capture(arguments)
0string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/aruhaz.php"1array(0)343 { 344 throw new View_Exception('You must set the file to use within your view before rendering'); 345 } 346 347 // Combine local and global data and capture the output 348 return View::capture($this->_file, $this->_data); 349 } 350 351 } -
SYSPATH/classes/kohana/view.php [ 228 ] » Kohana_View->render()
223 */ 224 public function __toString() 225 { 226 try 227 { 228 return $this->render(); 229 } 230 catch (Exception $e) 231 { 232 /** 233 * Display the exception message. -
MODPATH/frontend/views/site/layout.php [ 238 ] » Kohana_View->__toString()
233 <?php endif; ?> 234 </div><!-- header --> 235 236 <div id="content"> 237 238 <?php echo @$content; ?> 239 240 </div><!-- content --> 241 242 <div class="clear"></div> 243 -
SYSPATH/classes/kohana/view.php [ 61 ] » include(arguments)
0string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/layout.php"56 ob_start(); 57 58 try 59 { 60 // Load the view within the current scope 61 include $kohana_view_filename; 62 } 63 catch (Exception $e) 64 { 65 // Delete the output buffer 66 ob_end_clean(); -
SYSPATH/classes/kohana/view.php [ 348 ] » Kohana_View::capture(arguments)
0string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/layout.php"1array(4) ( "user" => bool FALSE "cartnum" => integer 0 "bodyclass" => string(7) "webshop" "content" => object View(2)
{ protected _file => string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/aruhaz.php" protected _data => array(0) })343 { 344 throw new View_Exception('You must set the file to use within your view before rendering'); 345 } 346 347 // Combine local and global data and capture the output 348 return View::capture($this->_file, $this->_data); 349 } 350 351 } -
SYSPATH/classes/kohana/controller/template.php [ 44 ] » Kohana_View->render()
39 */ 40 public function after() 41 { 42 if ($this->auto_render === TRUE) 43 { 44 $this->response->body($this->template->render()); 45 } 46 47 parent::after(); 48 } 49 -
SYSPATH/classes/kohana/controller.php [ 87 ] » Kohana_Controller_Template->after()
82 83 // Execute the action itself 84 $this->{$action}(); 85 86 // Execute the "after action" method 87 $this->after(); 88 89 // Return the response 90 return $this->response; 91 } 92 -
{PHP internal call} » Kohana_Controller->execute()
-
SYSPATH/classes/kohana/request/client/internal.php [ 97 ] » ReflectionMethod->invoke(arguments)
0object Controller_Site(4)
{ public template => object View(2){ protected _file => string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/layout.php" protected _data => array(4) ( "user" => bool FALSE "cartnum" => integer 0 "bodyclass" => string(7) "webshop" "content" => object View(2)public auto_render => bool TRUE public request => object Request(19){ protected _file => string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/aruhaz.php" protected _data => array(0) }) }{ protected _requested_with => NULL protected _method => string(3) "GET" protected _protocol => string(8) "HTTP/1.1" protected _secure => bool TRUE protected _referrer => NULL protected _route => object Route(5)public response => object Response(5){ protected _filters => array(0) protected _uri => string(6) "aruhaz" protected _regex => array(0) protected _defaults => array(2) ( "controller" => string(4) "site" "action" => string(6) "aruhaz" ) protected _route_regex => string(12) "#^aruhaz$#uD" }protected _routes => array(0) protected _header => object HTTP_Header(0){ }protected _body => NULL protected _directory => string(0) "" protected _controller => string(4) "Site" protected _action => string(6) "aruhaz" protected _uri => string(6) "aruhaz" protected _external => bool FALSE protected _params => array(0) protected _get => array(0) protected _post => array(0) protected _cookies => array(0) protected _client => object Request_Client_Internal(9){ protected _previous_environment => NULL protected _cache => NULL protected _follow => bool FALSE protected _follow_headers => array(1) ( 0 => string(13) "Authorization" ) protected _strict_redirect => bool TRUE protected _header_callbacks => array(1) ( "Location" => string(34) "Request_Client::on_header_location" ) protected _max_callback_depth => integer 5 protected _callback_depth => integer 1 protected _callback_params => array(0) }}{ protected _status => integer 200 protected _header => object HTTP_Header(0)}{ }protected _body => string(0) "" protected _cookies => array(0) protected _protocol => string(8) "HTTP/1.1" }92 93 // Create a new instance of the controller 94 $controller = $class->newInstance($request, $response); 95 96 // Run the controller's execute() method 97 $response = $class->getMethod('execute')->invoke($controller); 98 99 if ( ! $response instanceof Response) 100 { 101 // Controller failed to return a Response. 102 throw new Kohana_Exception('Controller failed to return a Response'); -
SYSPATH/classes/kohana/request/client.php [ 114 ] » Kohana_Request_Client_Internal->execute_request(arguments)
0object Request(19)
{ protected _requested_with => NULL protected _method => string(3) "GET" protected _protocol => string(8) "HTTP/1.1" protected _secure => bool TRUE protected _referrer => NULL protected _route => object Route(5){ protected _filters => array(0) protected _uri => string(6) "aruhaz" protected _regex => array(0) protected _defaults => array(2) ( "controller" => string(4) "site" "action" => string(6) "aruhaz" ) protected _route_regex => string(12) "#^aruhaz$#uD" }protected _routes => array(0) protected _header => object HTTP_Header(0){ }protected _body => NULL protected _directory => string(0) "" protected _controller => string(4) "Site" protected _action => string(6) "aruhaz" protected _uri => string(6) "aruhaz" protected _external => bool FALSE protected _params => array(0) protected _get => array(0) protected _post => array(0) protected _cookies => array(0) protected _client => object Request_Client_Internal(9){ protected _previous_environment => NULL protected _cache => NULL protected _follow => bool FALSE protected _follow_headers => array(1) ( 0 => string(13) "Authorization" ) protected _strict_redirect => bool TRUE protected _header_callbacks => array(1) ( "Location" => string(34) "Request_Client::on_header_location" ) protected _max_callback_depth => integer 5 protected _callback_depth => integer 1 protected _callback_params => array(0) }}1object Response(5)
{ protected _status => integer 200 protected _header => object HTTP_Header(0){ }protected _body => string(0) "" protected _cookies => array(0) protected _protocol => string(8) "HTTP/1.1" }109 $orig_response = $response = Response::factory(array('_protocol' => $request->protocol())); 110 111 if (($cache = $this->cache()) instanceof HTTP_Cache) 112 return $cache->execute($this, $request, $response); 113 114 $response = $this->execute_request($request, $response); 115 116 // Execute response callbacks 117 foreach ($this->header_callbacks() as $header => $callback) 118 { 119 if ($response->headers($header)) -
SYSPATH/classes/kohana/request.php [ 986 ] » Kohana_Request_Client->execute(arguments)
0object Request(19)
{ protected _requested_with => NULL protected _method => string(3) "GET" protected _protocol => string(8) "HTTP/1.1" protected _secure => bool TRUE protected _referrer => NULL protected _route => object Route(5){ protected _filters => array(0) protected _uri => string(6) "aruhaz" protected _regex => array(0) protected _defaults => array(2) ( "controller" => string(4) "site" "action" => string(6) "aruhaz" ) protected _route_regex => string(12) "#^aruhaz$#uD" }protected _routes => array(0) protected _header => object HTTP_Header(0){ }protected _body => NULL protected _directory => string(0) "" protected _controller => string(4) "Site" protected _action => string(6) "aruhaz" protected _uri => string(6) "aruhaz" protected _external => bool FALSE protected _params => array(0) protected _get => array(0) protected _post => array(0) protected _cookies => array(0) protected _client => object Request_Client_Internal(9){ protected _previous_environment => NULL protected _cache => NULL protected _follow => bool FALSE protected _follow_headers => array(1) ( 0 => string(13) "Authorization" ) protected _strict_redirect => bool TRUE protected _header_callbacks => array(1) ( "Location" => string(34) "Request_Client::on_header_location" ) protected _max_callback_depth => integer 5 protected _callback_depth => integer 1 protected _callback_params => array(0) }}981 throw new Request_Exception('Unable to execute :uri without a Kohana_Request_Client', array( 982 ':uri' => $this->_uri, 983 )); 984 } 985 986 return $this->_client->execute($this); 987 } 988 989 /** 990 * Returns whether this request is the initial request kohana received. 991 * Can be used to test for sub requests. -
DOCROOT/index.php [ 120 ] » Kohana_Request->execute()
115 /** 116 * Execute the main request. A source of the URI can be passed, eg: $_SERVER['PATH_INFO']. 117 * If no source is specified, the URI will be automatically detected. 118 */ 119 echo Request::factory(TRUE, array(), FALSE) 120 ->execute() 121 ->send_headers(TRUE) 122 ->body(); 123 }
Environment
Included files (110)
DOCROOT/index.php |
APPPATH/bootstrap.php |
SYSPATH/classes/kohana/core.php |
SYSPATH/classes/kohana.php |
SYSPATH/classes/i18n.php |
SYSPATH/classes/kohana/i18n.php |
SYSPATH/classes/http.php |
SYSPATH/classes/kohana/http.php |
SYSPATH/classes/kohana/exception.php |
SYSPATH/classes/kohana/kohana/exception.php |
SYSPATH/classes/log.php |
SYSPATH/classes/kohana/log.php |
SYSPATH/classes/config.php |
SYSPATH/classes/kohana/config.php |
SYSPATH/classes/log/file.php |
SYSPATH/classes/kohana/log/file.php |
SYSPATH/classes/log/writer.php |
SYSPATH/classes/kohana/log/writer.php |
SYSPATH/classes/config/file.php |
SYSPATH/classes/kohana/config/file.php |
SYSPATH/classes/kohana/config/file/reader.php |
SYSPATH/classes/kohana/config/reader.php |
SYSPATH/classes/kohana/config/source.php |
MODPATH/product/init.php |
SYSPATH/classes/route.php |
SYSPATH/classes/kohana/route.php |
MODPATH/email/init.php |
MODPATH/imagefly/init.php |
MODPATH/captcha/init.php |
MODPATH/admin/init.php |
MODPATH/frontend/init.php |
SYSPATH/classes/cookie.php |
SYSPATH/classes/kohana/cookie.php |
MODPATH/admin/classes/papertrail/log.php |
SYSPATH/classes/request.php |
SYSPATH/classes/kohana/request.php |
SYSPATH/classes/http/request.php |
SYSPATH/classes/kohana/http/request.php |
SYSPATH/classes/http/message.php |
SYSPATH/classes/kohana/http/message.php |
SYSPATH/classes/http/header.php |
SYSPATH/classes/kohana/http/header.php |
SYSPATH/classes/request/client/internal.php |
SYSPATH/classes/kohana/request/client/internal.php |
SYSPATH/classes/request/client.php |
SYSPATH/classes/kohana/request/client.php |
SYSPATH/classes/arr.php |
SYSPATH/classes/kohana/arr.php |
SYSPATH/classes/response.php |
SYSPATH/classes/kohana/response.php |
SYSPATH/classes/http/response.php |
SYSPATH/classes/kohana/http/response.php |
SYSPATH/classes/profiler.php |
SYSPATH/classes/kohana/profiler.php |
MODPATH/frontend/classes/controller/site.php |
SYSPATH/classes/controller/template.php |
SYSPATH/classes/kohana/controller/template.php |
SYSPATH/classes/controller.php |
SYSPATH/classes/kohana/controller.php |
SYSPATH/classes/view.php |
SYSPATH/classes/kohana/view.php |
SYSPATH/classes/session.php |
SYSPATH/classes/kohana/session.php |
SYSPATH/config/session.php |
MODPATH/database/config/session.php |
SYSPATH/classes/config/group.php |
SYSPATH/classes/kohana/config/group.php |
SYSPATH/classes/session/native.php |
SYSPATH/classes/kohana/session/native.php |
MODPATH/frontend/views/site/layout.php |
SYSPATH/classes/url.php |
SYSPATH/classes/kohana/url.php |
SYSPATH/classes/utf8.php |
SYSPATH/classes/kohana/utf8.php |
MODPATH/frontend/views/site/aruhaz.php |
MODPATH/frontend/views/site/aruhaz/css.php |
MODPATH/frontend/views/site/aruhaz/xynbio.php |
APPPATH/classes/orm.php |
MODPATH/orm/classes/kohana/orm.php |
SYSPATH/classes/model.php |
SYSPATH/classes/kohana/model.php |
MODPATH/product/classes/model/product.php |
SYSPATH/classes/inflector.php |
SYSPATH/classes/kohana/inflector.php |
SYSPATH/config/inflector.php |
MODPATH/database/classes/database.php |
MODPATH/database/classes/kohana/database.php |
MODPATH/database/config/database.php |
APPPATH/config/database.php |
MODPATH/database/classes/database/mysql.php |
MODPATH/database/classes/kohana/database/mysql.php |
MODPATH/database/classes/database/exception.php |
MODPATH/database/classes/kohana/database/exception.php |
SYSPATH/classes/debug.php |
SYSPATH/classes/kohana/debug.php |
SYSPATH/classes/date.php |
SYSPATH/classes/kohana/date.php |
SYSPATH/views/kohana/error.php |
MODPATH/frontend/views/site/aruhaz/mask.php |
MODPATH/frontend/views/site/aruhaz/novosseum.php |
MODPATH/frontend/views/site/aruhaz/neocartil.php |
MODPATH/frontend/views/site/aruhaz/fluxus_prostatae.php |
MODPATH/frontend/views/site/aruhaz/neocartil_pro.php |
MODPATH/frontend/views/site/aruhaz/resistar_pro.php |
MODPATH/frontend/views/site/aruhaz/yxor.php |
MODPATH/frontend/views/site/aruhaz/novosseum_dental.php |
MODPATH/frontend/views/site/aruhaz/optivisc.php |
MODPATH/frontend/views/site/aruhaz/optivisc_60.php |
MODPATH/frontend/views/site/aruhaz/biovisc_ortho_plus.php |
MODPATH/frontend/views/site/aruhaz/optivisc_20.php |
Loaded extensions (53)
Core |
date |
ereg |
libxml |
openssl |
pcre |
zlib |
filter |
hash |
pcntl |
readline |
Reflection |
SPL |
session |
standard |
cgi-fcgi |
bcmath |
calendar |
ctype |
curl |
dom |
fileinfo |
ftp |
gd |
imap |
intl |
json |
mbstring |
mcrypt |
mysqlnd |
mysql |
mysqli |
PDO |
pdo_mysql |
pdo_pgsql |
pdo_sqlite |
pgsql |
Phar |
posix |
SimpleXML |
soap |
sockets |
sqlite3 |
tokenizer |
xml |
wddx |
xmlreader |
xmlrpc |
xmlwriter |
xsl |
zip |
mhash |
ionCube Loader |
$_SERVER
CONTEXT_DOCUMENT_ROOT |
string(39) "/home/synergohub/webshop.synergohub.com" |
CONTEXT_PREFIX |
string(0) "" |
DOCUMENT_ROOT |
string(39) "/home/synergohub/webshop.synergohub.com" |
GATEWAY_INTERFACE |
string(7) "CGI/1.1" |
HTTPS |
string(2) "on" |
HTTP_ACCEPT |
string(3) "*/*" |
HTTP_ACCEPT_ENCODING |
string(23) "gzip, br, zstd, deflate" |
HTTP_HOST |
string(19) "shop.synergohub.com" |
HTTP_USER_AGENT |
string(103) "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" |
PATH |
string(13) "/bin:/usr/bin" |
PHP_INI_SCAN_DIR |
string(67) "/opt/cpanel/ea-php56/root/etc:/opt/cpanel/ea-php56/root/etc/php.d:." |
QUERY_STRING |
string(0) "" |
REDIRECT_HTTPS |
string(2) "on" |
REDIRECT_SSL_TLS_SNI |
string(19) "shop.synergohub.com" |
REDIRECT_STATUS |
string(3) "200" |
REDIRECT_UNIQUE_ID |
string(27) "aVH0bOAH2TfTjairR_s5XQAAAAQ" |
REDIRECT_URL |
string(7) "/aruhaz" |
REMOTE_ADDR |
string(13) "216.73.216.85" |
REMOTE_PORT |
string(5) "14248" |
REQUEST_METHOD |
string(3) "GET" |
REQUEST_SCHEME |
string(5) "https" |
REQUEST_URI |
string(7) "/aruhaz" |
SCRIPT_FILENAME |
string(49) "/home/synergohub/webshop.synergohub.com/index.php" |
SCRIPT_NAME |
string(10) "/index.php" |
SERVER_ADDR |
string(14) "185.51.191.204" |
SERVER_ADMIN |
string(29) "webmaster@shop.synergohub.com" |
SERVER_NAME |
string(19) "shop.synergohub.com" |
SERVER_PORT |
string(3) "443" |
SERVER_PROTOCOL |
string(8) "HTTP/1.1" |
SERVER_SIGNATURE |
string(0) "" |
SERVER_SOFTWARE |
string(6) "Apache" |
SSL_TLS_SNI |
string(19) "shop.synergohub.com" |
TZ |
string(15) "Europe/Budapest" |
UNIQUE_ID |
string(27) "aVH0bOAH2TfTjairR_s5XQAAAAQ" |
ORIG_PATH_INFO |
string(7) "/aruhaz" |
ORIG_PATH_TRANSLATED |
string(49) "/home/synergohub/webshop.synergohub.com/index.php" |
PHP_SELF |
string(10) "/index.php" |
REQUEST_TIME_FLOAT |
float 1766978668,26 |
REQUEST_TIME |
integer 1766978668 |
argv |
array(0) |
argc |
integer 0 |
Database_Exception [ 1046 ]:
MODPATH/database/classes/kohana/database/mysql.php [ 194 ]
189 {
190 // This benchmark is worthless
191 Profiler::delete($benchmark);
192 }
193
194 throw new Database_Exception(':error [ :query ]',
195 array(':error' => mysql_error($this->_connection), ':query' => $sql),
196 mysql_errno($this->_connection));
197 }
198
199 if (isset($benchmark))
-
MODPATH/database/classes/kohana/database/mysql.php [ 359 ] » Kohana_Database_MySQL->query(arguments)
0integer 1
1string(33) "SHOW FULL COLUMNS FROM `products`"2bool FALSE
354 $result = $this->query(Database::SELECT, 'SHOW FULL COLUMNS FROM '.$table.' LIKE '.$this->quote($like), FALSE); 355 } 356 else 357 { 358 // Find all column names 359 $result = $this->query(Database::SELECT, 'SHOW FULL COLUMNS FROM '.$table, FALSE); 360 } 361 362 $count = 0; 363 $columns = array(); 364 foreach ($result as $row) -
MODPATH/orm/classes/kohana/orm.php [ 1668 ] » Kohana_Database_MySQL->list_columns(arguments)
0string(8) "products"1663 * @return array 1664 */ 1665 public function list_columns() 1666 { 1667 // Proxy to database 1668 return $this->_db->list_columns($this->_table_name); 1669 } 1670 1671 /** 1672 * Returns an ORM model for the given one-one related alias 1673 * -
MODPATH/orm/classes/kohana/orm.php [ 444 ] » Kohana_ORM->list_columns()
439 $this->_table_columns = ORM::$_column_cache[$this->_object_name]; 440 } 441 else 442 { 443 // Grab column information from database 444 $this->_table_columns = $this->list_columns(); 445 446 // Load column cache 447 ORM::$_column_cache[$this->_object_name] = $this->_table_columns; 448 } 449 } -
MODPATH/orm/classes/kohana/orm.php [ 389 ] » Kohana_ORM->reload_columns()
384 { 385 $this->{$property} = $value; 386 } 387 388 // Load column information 389 $this->reload_columns(); 390 391 // Clear initial model state 392 $this->clear(); 393 } 394 -
APPPATH/classes/orm.php [ 59 ] » Kohana_ORM->_initialize()
54 private $old = array(); 55 private $new = array(); 56 57 public function __construct($id = NULL) 58 { 59 $this->_initialize(); 60 61 if ($id !== NULL) 62 { 63 if (is_array($id)) 64 { -
MODPATH/orm/classes/kohana/orm.php [ 46 ] » ORM->__construct(arguments)
0integer 1
41 public static function factory($model, $id = NULL) 42 { 43 // Set class name 44 $model = 'Model_'.$model; 45 46 return new $model($id); 47 } 48 49 /** 50 * "Has one" relationships 51 * @var array -
MODPATH/frontend/views/site/aruhaz/syncordia.php [ 7 ] » Kohana_ORM::factory(arguments)
0string(7) "product"1integer 1
2 <div class="product product_syncordia"> 3 <!-- <div class="ribbon ribbon-cyan"><div>Ingyenes kiszállítás</div></div> --> 4 <!-- <div class="ribbon ribbon-red">Két havi adag</div> --> 5 6 <div class="priceline"> 7 <?php echo Controller_Site::formatPrice((int) ORM::Factory('product', 1)->getGrossPrice());?> Ft 8 </div> 9 10 <div class="titleline"> 11 <img src="/img/aruhaz/syncordia_box.png" width="114" height="114" alt="<?php echo ORM::Factory('product' , 1)->name; ?>" /> 12 <?php echo ORM::Factory('product', 1)->name;?> -
SYSPATH/classes/kohana/view.php [ 61 ] » include(arguments)
0string(88) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/aruhaz/syncordia.php"56 ob_start(); 57 58 try 59 { 60 // Load the view within the current scope 61 include $kohana_view_filename; 62 } 63 catch (Exception $e) 64 { 65 // Delete the output buffer 66 ob_end_clean(); -
SYSPATH/classes/kohana/view.php [ 348 ] » Kohana_View::capture(arguments)
0string(88) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/aruhaz/syncordia.php"1array(2) ( "kohana_view_filename" => string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/aruhaz.php" "kohana_view_data" => array(0) )
343 { 344 throw new View_Exception('You must set the file to use within your view before rendering'); 345 } 346 347 // Combine local and global data and capture the output 348 return View::capture($this->_file, $this->_data); 349 } 350 351 } -
SYSPATH/classes/kohana/view.php [ 228 ] » Kohana_View->render()
223 */ 224 public function __toString() 225 { 226 try 227 { 228 return $this->render(); 229 } 230 catch (Exception $e) 231 { 232 /** 233 * Display the exception message. -
MODPATH/frontend/views/site/aruhaz.php [ 75 ] » Kohana_View->__toString()
70 71 <!-- Optivisc™ 20 --> 72 <?php echo View::factory('site/aruhaz/optivisc_20', get_defined_vars()); ?> 73 74 <!-- syncordia --> 75 <?php echo View::factory('site/aruhaz/syncordia', get_defined_vars()); ?> 76 77 <!-- hexacor --> 78 <?php echo View::factory('site/aruhaz/hexacor', get_defined_vars()); ?> 79 80 <!-- resistar --> -
SYSPATH/classes/kohana/view.php [ 61 ] » include(arguments)
0string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/aruhaz.php"56 ob_start(); 57 58 try 59 { 60 // Load the view within the current scope 61 include $kohana_view_filename; 62 } 63 catch (Exception $e) 64 { 65 // Delete the output buffer 66 ob_end_clean(); -
SYSPATH/classes/kohana/view.php [ 348 ] » Kohana_View::capture(arguments)
0string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/aruhaz.php"1array(0)343 { 344 throw new View_Exception('You must set the file to use within your view before rendering'); 345 } 346 347 // Combine local and global data and capture the output 348 return View::capture($this->_file, $this->_data); 349 } 350 351 } -
SYSPATH/classes/kohana/view.php [ 228 ] » Kohana_View->render()
223 */ 224 public function __toString() 225 { 226 try 227 { 228 return $this->render(); 229 } 230 catch (Exception $e) 231 { 232 /** 233 * Display the exception message. -
MODPATH/frontend/views/site/layout.php [ 238 ] » Kohana_View->__toString()
233 <?php endif; ?> 234 </div><!-- header --> 235 236 <div id="content"> 237 238 <?php echo @$content; ?> 239 240 </div><!-- content --> 241 242 <div class="clear"></div> 243 -
SYSPATH/classes/kohana/view.php [ 61 ] » include(arguments)
0string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/layout.php"56 ob_start(); 57 58 try 59 { 60 // Load the view within the current scope 61 include $kohana_view_filename; 62 } 63 catch (Exception $e) 64 { 65 // Delete the output buffer 66 ob_end_clean(); -
SYSPATH/classes/kohana/view.php [ 348 ] » Kohana_View::capture(arguments)
0string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/layout.php"1array(4) ( "user" => bool FALSE "cartnum" => integer 0 "bodyclass" => string(7) "webshop" "content" => object View(2)
{ protected _file => string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/aruhaz.php" protected _data => array(0) })343 { 344 throw new View_Exception('You must set the file to use within your view before rendering'); 345 } 346 347 // Combine local and global data and capture the output 348 return View::capture($this->_file, $this->_data); 349 } 350 351 } -
SYSPATH/classes/kohana/controller/template.php [ 44 ] » Kohana_View->render()
39 */ 40 public function after() 41 { 42 if ($this->auto_render === TRUE) 43 { 44 $this->response->body($this->template->render()); 45 } 46 47 parent::after(); 48 } 49 -
SYSPATH/classes/kohana/controller.php [ 87 ] » Kohana_Controller_Template->after()
82 83 // Execute the action itself 84 $this->{$action}(); 85 86 // Execute the "after action" method 87 $this->after(); 88 89 // Return the response 90 return $this->response; 91 } 92 -
{PHP internal call} » Kohana_Controller->execute()
-
SYSPATH/classes/kohana/request/client/internal.php [ 97 ] » ReflectionMethod->invoke(arguments)
0object Controller_Site(4)
{ public template => object View(2){ protected _file => string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/layout.php" protected _data => array(4) ( "user" => bool FALSE "cartnum" => integer 0 "bodyclass" => string(7) "webshop" "content" => object View(2)public auto_render => bool TRUE public request => object Request(19){ protected _file => string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/aruhaz.php" protected _data => array(0) }) }{ protected _requested_with => NULL protected _method => string(3) "GET" protected _protocol => string(8) "HTTP/1.1" protected _secure => bool TRUE protected _referrer => NULL protected _route => object Route(5)public response => object Response(5){ protected _filters => array(0) protected _uri => string(6) "aruhaz" protected _regex => array(0) protected _defaults => array(2) ( "controller" => string(4) "site" "action" => string(6) "aruhaz" ) protected _route_regex => string(12) "#^aruhaz$#uD" }protected _routes => array(0) protected _header => object HTTP_Header(0){ }protected _body => NULL protected _directory => string(0) "" protected _controller => string(4) "Site" protected _action => string(6) "aruhaz" protected _uri => string(6) "aruhaz" protected _external => bool FALSE protected _params => array(0) protected _get => array(0) protected _post => array(0) protected _cookies => array(0) protected _client => object Request_Client_Internal(9){ protected _previous_environment => NULL protected _cache => NULL protected _follow => bool FALSE protected _follow_headers => array(1) ( 0 => string(13) "Authorization" ) protected _strict_redirect => bool TRUE protected _header_callbacks => array(1) ( "Location" => string(34) "Request_Client::on_header_location" ) protected _max_callback_depth => integer 5 protected _callback_depth => integer 1 protected _callback_params => array(0) }}{ protected _status => integer 200 protected _header => object HTTP_Header(0)}{ }protected _body => string(0) "" protected _cookies => array(0) protected _protocol => string(8) "HTTP/1.1" }92 93 // Create a new instance of the controller 94 $controller = $class->newInstance($request, $response); 95 96 // Run the controller's execute() method 97 $response = $class->getMethod('execute')->invoke($controller); 98 99 if ( ! $response instanceof Response) 100 { 101 // Controller failed to return a Response. 102 throw new Kohana_Exception('Controller failed to return a Response'); -
SYSPATH/classes/kohana/request/client.php [ 114 ] » Kohana_Request_Client_Internal->execute_request(arguments)
0object Request(19)
{ protected _requested_with => NULL protected _method => string(3) "GET" protected _protocol => string(8) "HTTP/1.1" protected _secure => bool TRUE protected _referrer => NULL protected _route => object Route(5){ protected _filters => array(0) protected _uri => string(6) "aruhaz" protected _regex => array(0) protected _defaults => array(2) ( "controller" => string(4) "site" "action" => string(6) "aruhaz" ) protected _route_regex => string(12) "#^aruhaz$#uD" }protected _routes => array(0) protected _header => object HTTP_Header(0){ }protected _body => NULL protected _directory => string(0) "" protected _controller => string(4) "Site" protected _action => string(6) "aruhaz" protected _uri => string(6) "aruhaz" protected _external => bool FALSE protected _params => array(0) protected _get => array(0) protected _post => array(0) protected _cookies => array(0) protected _client => object Request_Client_Internal(9){ protected _previous_environment => NULL protected _cache => NULL protected _follow => bool FALSE protected _follow_headers => array(1) ( 0 => string(13) "Authorization" ) protected _strict_redirect => bool TRUE protected _header_callbacks => array(1) ( "Location" => string(34) "Request_Client::on_header_location" ) protected _max_callback_depth => integer 5 protected _callback_depth => integer 1 protected _callback_params => array(0) }}1object Response(5)
{ protected _status => integer 200 protected _header => object HTTP_Header(0){ }protected _body => string(0) "" protected _cookies => array(0) protected _protocol => string(8) "HTTP/1.1" }109 $orig_response = $response = Response::factory(array('_protocol' => $request->protocol())); 110 111 if (($cache = $this->cache()) instanceof HTTP_Cache) 112 return $cache->execute($this, $request, $response); 113 114 $response = $this->execute_request($request, $response); 115 116 // Execute response callbacks 117 foreach ($this->header_callbacks() as $header => $callback) 118 { 119 if ($response->headers($header)) -
SYSPATH/classes/kohana/request.php [ 986 ] » Kohana_Request_Client->execute(arguments)
0object Request(19)
{ protected _requested_with => NULL protected _method => string(3) "GET" protected _protocol => string(8) "HTTP/1.1" protected _secure => bool TRUE protected _referrer => NULL protected _route => object Route(5){ protected _filters => array(0) protected _uri => string(6) "aruhaz" protected _regex => array(0) protected _defaults => array(2) ( "controller" => string(4) "site" "action" => string(6) "aruhaz" ) protected _route_regex => string(12) "#^aruhaz$#uD" }protected _routes => array(0) protected _header => object HTTP_Header(0){ }protected _body => NULL protected _directory => string(0) "" protected _controller => string(4) "Site" protected _action => string(6) "aruhaz" protected _uri => string(6) "aruhaz" protected _external => bool FALSE protected _params => array(0) protected _get => array(0) protected _post => array(0) protected _cookies => array(0) protected _client => object Request_Client_Internal(9){ protected _previous_environment => NULL protected _cache => NULL protected _follow => bool FALSE protected _follow_headers => array(1) ( 0 => string(13) "Authorization" ) protected _strict_redirect => bool TRUE protected _header_callbacks => array(1) ( "Location" => string(34) "Request_Client::on_header_location" ) protected _max_callback_depth => integer 5 protected _callback_depth => integer 1 protected _callback_params => array(0) }}981 throw new Request_Exception('Unable to execute :uri without a Kohana_Request_Client', array( 982 ':uri' => $this->_uri, 983 )); 984 } 985 986 return $this->_client->execute($this); 987 } 988 989 /** 990 * Returns whether this request is the initial request kohana received. 991 * Can be used to test for sub requests. -
DOCROOT/index.php [ 120 ] » Kohana_Request->execute()
115 /** 116 * Execute the main request. A source of the URI can be passed, eg: $_SERVER['PATH_INFO']. 117 * If no source is specified, the URI will be automatically detected. 118 */ 119 echo Request::factory(TRUE, array(), FALSE) 120 ->execute() 121 ->send_headers(TRUE) 122 ->body(); 123 }
Environment
Included files (111)
DOCROOT/index.php |
APPPATH/bootstrap.php |
SYSPATH/classes/kohana/core.php |
SYSPATH/classes/kohana.php |
SYSPATH/classes/i18n.php |
SYSPATH/classes/kohana/i18n.php |
SYSPATH/classes/http.php |
SYSPATH/classes/kohana/http.php |
SYSPATH/classes/kohana/exception.php |
SYSPATH/classes/kohana/kohana/exception.php |
SYSPATH/classes/log.php |
SYSPATH/classes/kohana/log.php |
SYSPATH/classes/config.php |
SYSPATH/classes/kohana/config.php |
SYSPATH/classes/log/file.php |
SYSPATH/classes/kohana/log/file.php |
SYSPATH/classes/log/writer.php |
SYSPATH/classes/kohana/log/writer.php |
SYSPATH/classes/config/file.php |
SYSPATH/classes/kohana/config/file.php |
SYSPATH/classes/kohana/config/file/reader.php |
SYSPATH/classes/kohana/config/reader.php |
SYSPATH/classes/kohana/config/source.php |
MODPATH/product/init.php |
SYSPATH/classes/route.php |
SYSPATH/classes/kohana/route.php |
MODPATH/email/init.php |
MODPATH/imagefly/init.php |
MODPATH/captcha/init.php |
MODPATH/admin/init.php |
MODPATH/frontend/init.php |
SYSPATH/classes/cookie.php |
SYSPATH/classes/kohana/cookie.php |
MODPATH/admin/classes/papertrail/log.php |
SYSPATH/classes/request.php |
SYSPATH/classes/kohana/request.php |
SYSPATH/classes/http/request.php |
SYSPATH/classes/kohana/http/request.php |
SYSPATH/classes/http/message.php |
SYSPATH/classes/kohana/http/message.php |
SYSPATH/classes/http/header.php |
SYSPATH/classes/kohana/http/header.php |
SYSPATH/classes/request/client/internal.php |
SYSPATH/classes/kohana/request/client/internal.php |
SYSPATH/classes/request/client.php |
SYSPATH/classes/kohana/request/client.php |
SYSPATH/classes/arr.php |
SYSPATH/classes/kohana/arr.php |
SYSPATH/classes/response.php |
SYSPATH/classes/kohana/response.php |
SYSPATH/classes/http/response.php |
SYSPATH/classes/kohana/http/response.php |
SYSPATH/classes/profiler.php |
SYSPATH/classes/kohana/profiler.php |
MODPATH/frontend/classes/controller/site.php |
SYSPATH/classes/controller/template.php |
SYSPATH/classes/kohana/controller/template.php |
SYSPATH/classes/controller.php |
SYSPATH/classes/kohana/controller.php |
SYSPATH/classes/view.php |
SYSPATH/classes/kohana/view.php |
SYSPATH/classes/session.php |
SYSPATH/classes/kohana/session.php |
SYSPATH/config/session.php |
MODPATH/database/config/session.php |
SYSPATH/classes/config/group.php |
SYSPATH/classes/kohana/config/group.php |
SYSPATH/classes/session/native.php |
SYSPATH/classes/kohana/session/native.php |
MODPATH/frontend/views/site/layout.php |
SYSPATH/classes/url.php |
SYSPATH/classes/kohana/url.php |
SYSPATH/classes/utf8.php |
SYSPATH/classes/kohana/utf8.php |
MODPATH/frontend/views/site/aruhaz.php |
MODPATH/frontend/views/site/aruhaz/css.php |
MODPATH/frontend/views/site/aruhaz/xynbio.php |
APPPATH/classes/orm.php |
MODPATH/orm/classes/kohana/orm.php |
SYSPATH/classes/model.php |
SYSPATH/classes/kohana/model.php |
MODPATH/product/classes/model/product.php |
SYSPATH/classes/inflector.php |
SYSPATH/classes/kohana/inflector.php |
SYSPATH/config/inflector.php |
MODPATH/database/classes/database.php |
MODPATH/database/classes/kohana/database.php |
MODPATH/database/config/database.php |
APPPATH/config/database.php |
MODPATH/database/classes/database/mysql.php |
MODPATH/database/classes/kohana/database/mysql.php |
MODPATH/database/classes/database/exception.php |
MODPATH/database/classes/kohana/database/exception.php |
SYSPATH/classes/debug.php |
SYSPATH/classes/kohana/debug.php |
SYSPATH/classes/date.php |
SYSPATH/classes/kohana/date.php |
SYSPATH/views/kohana/error.php |
MODPATH/frontend/views/site/aruhaz/mask.php |
MODPATH/frontend/views/site/aruhaz/novosseum.php |
MODPATH/frontend/views/site/aruhaz/neocartil.php |
MODPATH/frontend/views/site/aruhaz/fluxus_prostatae.php |
MODPATH/frontend/views/site/aruhaz/neocartil_pro.php |
MODPATH/frontend/views/site/aruhaz/resistar_pro.php |
MODPATH/frontend/views/site/aruhaz/yxor.php |
MODPATH/frontend/views/site/aruhaz/novosseum_dental.php |
MODPATH/frontend/views/site/aruhaz/optivisc.php |
MODPATH/frontend/views/site/aruhaz/optivisc_60.php |
MODPATH/frontend/views/site/aruhaz/biovisc_ortho_plus.php |
MODPATH/frontend/views/site/aruhaz/optivisc_20.php |
MODPATH/frontend/views/site/aruhaz/syncordia.php |
Loaded extensions (53)
Core |
date |
ereg |
libxml |
openssl |
pcre |
zlib |
filter |
hash |
pcntl |
readline |
Reflection |
SPL |
session |
standard |
cgi-fcgi |
bcmath |
calendar |
ctype |
curl |
dom |
fileinfo |
ftp |
gd |
imap |
intl |
json |
mbstring |
mcrypt |
mysqlnd |
mysql |
mysqli |
PDO |
pdo_mysql |
pdo_pgsql |
pdo_sqlite |
pgsql |
Phar |
posix |
SimpleXML |
soap |
sockets |
sqlite3 |
tokenizer |
xml |
wddx |
xmlreader |
xmlrpc |
xmlwriter |
xsl |
zip |
mhash |
ionCube Loader |
$_SERVER
CONTEXT_DOCUMENT_ROOT |
string(39) "/home/synergohub/webshop.synergohub.com" |
CONTEXT_PREFIX |
string(0) "" |
DOCUMENT_ROOT |
string(39) "/home/synergohub/webshop.synergohub.com" |
GATEWAY_INTERFACE |
string(7) "CGI/1.1" |
HTTPS |
string(2) "on" |
HTTP_ACCEPT |
string(3) "*/*" |
HTTP_ACCEPT_ENCODING |
string(23) "gzip, br, zstd, deflate" |
HTTP_HOST |
string(19) "shop.synergohub.com" |
HTTP_USER_AGENT |
string(103) "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" |
PATH |
string(13) "/bin:/usr/bin" |
PHP_INI_SCAN_DIR |
string(67) "/opt/cpanel/ea-php56/root/etc:/opt/cpanel/ea-php56/root/etc/php.d:." |
QUERY_STRING |
string(0) "" |
REDIRECT_HTTPS |
string(2) "on" |
REDIRECT_SSL_TLS_SNI |
string(19) "shop.synergohub.com" |
REDIRECT_STATUS |
string(3) "200" |
REDIRECT_UNIQUE_ID |
string(27) "aVH0bOAH2TfTjairR_s5XQAAAAQ" |
REDIRECT_URL |
string(7) "/aruhaz" |
REMOTE_ADDR |
string(13) "216.73.216.85" |
REMOTE_PORT |
string(5) "14248" |
REQUEST_METHOD |
string(3) "GET" |
REQUEST_SCHEME |
string(5) "https" |
REQUEST_URI |
string(7) "/aruhaz" |
SCRIPT_FILENAME |
string(49) "/home/synergohub/webshop.synergohub.com/index.php" |
SCRIPT_NAME |
string(10) "/index.php" |
SERVER_ADDR |
string(14) "185.51.191.204" |
SERVER_ADMIN |
string(29) "webmaster@shop.synergohub.com" |
SERVER_NAME |
string(19) "shop.synergohub.com" |
SERVER_PORT |
string(3) "443" |
SERVER_PROTOCOL |
string(8) "HTTP/1.1" |
SERVER_SIGNATURE |
string(0) "" |
SERVER_SOFTWARE |
string(6) "Apache" |
SSL_TLS_SNI |
string(19) "shop.synergohub.com" |
TZ |
string(15) "Europe/Budapest" |
UNIQUE_ID |
string(27) "aVH0bOAH2TfTjairR_s5XQAAAAQ" |
ORIG_PATH_INFO |
string(7) "/aruhaz" |
ORIG_PATH_TRANSLATED |
string(49) "/home/synergohub/webshop.synergohub.com/index.php" |
PHP_SELF |
string(10) "/index.php" |
REQUEST_TIME_FLOAT |
float 1766978668,26 |
REQUEST_TIME |
integer 1766978668 |
argv |
array(0) |
argc |
integer 0 |
Database_Exception [ 1046 ]:
MODPATH/database/classes/kohana/database/mysql.php [ 194 ]
189 {
190 // This benchmark is worthless
191 Profiler::delete($benchmark);
192 }
193
194 throw new Database_Exception(':error [ :query ]',
195 array(':error' => mysql_error($this->_connection), ':query' => $sql),
196 mysql_errno($this->_connection));
197 }
198
199 if (isset($benchmark))
-
MODPATH/database/classes/kohana/database/mysql.php [ 359 ] » Kohana_Database_MySQL->query(arguments)
0integer 1
1string(33) "SHOW FULL COLUMNS FROM `products`"2bool FALSE
354 $result = $this->query(Database::SELECT, 'SHOW FULL COLUMNS FROM '.$table.' LIKE '.$this->quote($like), FALSE); 355 } 356 else 357 { 358 // Find all column names 359 $result = $this->query(Database::SELECT, 'SHOW FULL COLUMNS FROM '.$table, FALSE); 360 } 361 362 $count = 0; 363 $columns = array(); 364 foreach ($result as $row) -
MODPATH/orm/classes/kohana/orm.php [ 1668 ] » Kohana_Database_MySQL->list_columns(arguments)
0string(8) "products"1663 * @return array 1664 */ 1665 public function list_columns() 1666 { 1667 // Proxy to database 1668 return $this->_db->list_columns($this->_table_name); 1669 } 1670 1671 /** 1672 * Returns an ORM model for the given one-one related alias 1673 * -
MODPATH/orm/classes/kohana/orm.php [ 444 ] » Kohana_ORM->list_columns()
439 $this->_table_columns = ORM::$_column_cache[$this->_object_name]; 440 } 441 else 442 { 443 // Grab column information from database 444 $this->_table_columns = $this->list_columns(); 445 446 // Load column cache 447 ORM::$_column_cache[$this->_object_name] = $this->_table_columns; 448 } 449 } -
MODPATH/orm/classes/kohana/orm.php [ 389 ] » Kohana_ORM->reload_columns()
384 { 385 $this->{$property} = $value; 386 } 387 388 // Load column information 389 $this->reload_columns(); 390 391 // Clear initial model state 392 $this->clear(); 393 } 394 -
APPPATH/classes/orm.php [ 59 ] » Kohana_ORM->_initialize()
54 private $old = array(); 55 private $new = array(); 56 57 public function __construct($id = NULL) 58 { 59 $this->_initialize(); 60 61 if ($id !== NULL) 62 { 63 if (is_array($id)) 64 { -
MODPATH/orm/classes/kohana/orm.php [ 46 ] » ORM->__construct(arguments)
0integer 7
41 public static function factory($model, $id = NULL) 42 { 43 // Set class name 44 $model = 'Model_'.$model; 45 46 return new $model($id); 47 } 48 49 /** 50 * "Has one" relationships 51 * @var array -
MODPATH/frontend/views/site/aruhaz/hexacor.php [ 7 ] » Kohana_ORM::factory(arguments)
0string(7) "product"1integer 7
2 <div class="product product_hexacor"> 3 <!-- <div class="ribbon ribbon-cyan"><div>Ingyenes kiszállítás</div></div> --> 4 <!-- <div class="ribbon ribbon-red">Két havi adag</div> --> 5 6 <div class="priceline"> 7 <?php echo Controller_Site::formatPrice((int) ORM::Factory('product', 7)->getGrossPrice());?> Ft 8 </div> 9 10 <div class="titleline"> 11 <img src="/img/aruhaz/hexacor_box.png" width="114" height="114" alt="<?php echo ORM::Factory('product' , 7)->name; ?>" /> 12 <?php echo ORM::Factory('product', 7)->name;?> -
SYSPATH/classes/kohana/view.php [ 61 ] » include(arguments)
0string(86) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/aruhaz/hexacor.php"56 ob_start(); 57 58 try 59 { 60 // Load the view within the current scope 61 include $kohana_view_filename; 62 } 63 catch (Exception $e) 64 { 65 // Delete the output buffer 66 ob_end_clean(); -
SYSPATH/classes/kohana/view.php [ 348 ] » Kohana_View::capture(arguments)
0string(86) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/aruhaz/hexacor.php"1array(2) ( "kohana_view_filename" => string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/aruhaz.php" "kohana_view_data" => array(0) )
343 { 344 throw new View_Exception('You must set the file to use within your view before rendering'); 345 } 346 347 // Combine local and global data and capture the output 348 return View::capture($this->_file, $this->_data); 349 } 350 351 } -
SYSPATH/classes/kohana/view.php [ 228 ] » Kohana_View->render()
223 */ 224 public function __toString() 225 { 226 try 227 { 228 return $this->render(); 229 } 230 catch (Exception $e) 231 { 232 /** 233 * Display the exception message. -
MODPATH/frontend/views/site/aruhaz.php [ 78 ] » Kohana_View->__toString()
73 74 <!-- syncordia --> 75 <?php echo View::factory('site/aruhaz/syncordia', get_defined_vars()); ?> 76 77 <!-- hexacor --> 78 <?php echo View::factory('site/aruhaz/hexacor', get_defined_vars()); ?> 79 80 <!-- resistar --> 81 <?php echo View::factory('site/aruhaz/resistar', get_defined_vars()); ?> 82 83 <!-- duocor --> -
SYSPATH/classes/kohana/view.php [ 61 ] » include(arguments)
0string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/aruhaz.php"56 ob_start(); 57 58 try 59 { 60 // Load the view within the current scope 61 include $kohana_view_filename; 62 } 63 catch (Exception $e) 64 { 65 // Delete the output buffer 66 ob_end_clean(); -
SYSPATH/classes/kohana/view.php [ 348 ] » Kohana_View::capture(arguments)
0string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/aruhaz.php"1array(0)343 { 344 throw new View_Exception('You must set the file to use within your view before rendering'); 345 } 346 347 // Combine local and global data and capture the output 348 return View::capture($this->_file, $this->_data); 349 } 350 351 } -
SYSPATH/classes/kohana/view.php [ 228 ] » Kohana_View->render()
223 */ 224 public function __toString() 225 { 226 try 227 { 228 return $this->render(); 229 } 230 catch (Exception $e) 231 { 232 /** 233 * Display the exception message. -
MODPATH/frontend/views/site/layout.php [ 238 ] » Kohana_View->__toString()
233 <?php endif; ?> 234 </div><!-- header --> 235 236 <div id="content"> 237 238 <?php echo @$content; ?> 239 240 </div><!-- content --> 241 242 <div class="clear"></div> 243 -
SYSPATH/classes/kohana/view.php [ 61 ] » include(arguments)
0string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/layout.php"56 ob_start(); 57 58 try 59 { 60 // Load the view within the current scope 61 include $kohana_view_filename; 62 } 63 catch (Exception $e) 64 { 65 // Delete the output buffer 66 ob_end_clean(); -
SYSPATH/classes/kohana/view.php [ 348 ] » Kohana_View::capture(arguments)
0string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/layout.php"1array(4) ( "user" => bool FALSE "cartnum" => integer 0 "bodyclass" => string(7) "webshop" "content" => object View(2)
{ protected _file => string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/aruhaz.php" protected _data => array(0) })343 { 344 throw new View_Exception('You must set the file to use within your view before rendering'); 345 } 346 347 // Combine local and global data and capture the output 348 return View::capture($this->_file, $this->_data); 349 } 350 351 } -
SYSPATH/classes/kohana/controller/template.php [ 44 ] » Kohana_View->render()
39 */ 40 public function after() 41 { 42 if ($this->auto_render === TRUE) 43 { 44 $this->response->body($this->template->render()); 45 } 46 47 parent::after(); 48 } 49 -
SYSPATH/classes/kohana/controller.php [ 87 ] » Kohana_Controller_Template->after()
82 83 // Execute the action itself 84 $this->{$action}(); 85 86 // Execute the "after action" method 87 $this->after(); 88 89 // Return the response 90 return $this->response; 91 } 92 -
{PHP internal call} » Kohana_Controller->execute()
-
SYSPATH/classes/kohana/request/client/internal.php [ 97 ] » ReflectionMethod->invoke(arguments)
0object Controller_Site(4)
{ public template => object View(2){ protected _file => string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/layout.php" protected _data => array(4) ( "user" => bool FALSE "cartnum" => integer 0 "bodyclass" => string(7) "webshop" "content" => object View(2)public auto_render => bool TRUE public request => object Request(19){ protected _file => string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/aruhaz.php" protected _data => array(0) }) }{ protected _requested_with => NULL protected _method => string(3) "GET" protected _protocol => string(8) "HTTP/1.1" protected _secure => bool TRUE protected _referrer => NULL protected _route => object Route(5)public response => object Response(5){ protected _filters => array(0) protected _uri => string(6) "aruhaz" protected _regex => array(0) protected _defaults => array(2) ( "controller" => string(4) "site" "action" => string(6) "aruhaz" ) protected _route_regex => string(12) "#^aruhaz$#uD" }protected _routes => array(0) protected _header => object HTTP_Header(0){ }protected _body => NULL protected _directory => string(0) "" protected _controller => string(4) "Site" protected _action => string(6) "aruhaz" protected _uri => string(6) "aruhaz" protected _external => bool FALSE protected _params => array(0) protected _get => array(0) protected _post => array(0) protected _cookies => array(0) protected _client => object Request_Client_Internal(9){ protected _previous_environment => NULL protected _cache => NULL protected _follow => bool FALSE protected _follow_headers => array(1) ( 0 => string(13) "Authorization" ) protected _strict_redirect => bool TRUE protected _header_callbacks => array(1) ( "Location" => string(34) "Request_Client::on_header_location" ) protected _max_callback_depth => integer 5 protected _callback_depth => integer 1 protected _callback_params => array(0) }}{ protected _status => integer 200 protected _header => object HTTP_Header(0)}{ }protected _body => string(0) "" protected _cookies => array(0) protected _protocol => string(8) "HTTP/1.1" }92 93 // Create a new instance of the controller 94 $controller = $class->newInstance($request, $response); 95 96 // Run the controller's execute() method 97 $response = $class->getMethod('execute')->invoke($controller); 98 99 if ( ! $response instanceof Response) 100 { 101 // Controller failed to return a Response. 102 throw new Kohana_Exception('Controller failed to return a Response'); -
SYSPATH/classes/kohana/request/client.php [ 114 ] » Kohana_Request_Client_Internal->execute_request(arguments)
0object Request(19)
{ protected _requested_with => NULL protected _method => string(3) "GET" protected _protocol => string(8) "HTTP/1.1" protected _secure => bool TRUE protected _referrer => NULL protected _route => object Route(5){ protected _filters => array(0) protected _uri => string(6) "aruhaz" protected _regex => array(0) protected _defaults => array(2) ( "controller" => string(4) "site" "action" => string(6) "aruhaz" ) protected _route_regex => string(12) "#^aruhaz$#uD" }protected _routes => array(0) protected _header => object HTTP_Header(0){ }protected _body => NULL protected _directory => string(0) "" protected _controller => string(4) "Site" protected _action => string(6) "aruhaz" protected _uri => string(6) "aruhaz" protected _external => bool FALSE protected _params => array(0) protected _get => array(0) protected _post => array(0) protected _cookies => array(0) protected _client => object Request_Client_Internal(9){ protected _previous_environment => NULL protected _cache => NULL protected _follow => bool FALSE protected _follow_headers => array(1) ( 0 => string(13) "Authorization" ) protected _strict_redirect => bool TRUE protected _header_callbacks => array(1) ( "Location" => string(34) "Request_Client::on_header_location" ) protected _max_callback_depth => integer 5 protected _callback_depth => integer 1 protected _callback_params => array(0) }}1object Response(5)
{ protected _status => integer 200 protected _header => object HTTP_Header(0){ }protected _body => string(0) "" protected _cookies => array(0) protected _protocol => string(8) "HTTP/1.1" }109 $orig_response = $response = Response::factory(array('_protocol' => $request->protocol())); 110 111 if (($cache = $this->cache()) instanceof HTTP_Cache) 112 return $cache->execute($this, $request, $response); 113 114 $response = $this->execute_request($request, $response); 115 116 // Execute response callbacks 117 foreach ($this->header_callbacks() as $header => $callback) 118 { 119 if ($response->headers($header)) -
SYSPATH/classes/kohana/request.php [ 986 ] » Kohana_Request_Client->execute(arguments)
0object Request(19)
{ protected _requested_with => NULL protected _method => string(3) "GET" protected _protocol => string(8) "HTTP/1.1" protected _secure => bool TRUE protected _referrer => NULL protected _route => object Route(5){ protected _filters => array(0) protected _uri => string(6) "aruhaz" protected _regex => array(0) protected _defaults => array(2) ( "controller" => string(4) "site" "action" => string(6) "aruhaz" ) protected _route_regex => string(12) "#^aruhaz$#uD" }protected _routes => array(0) protected _header => object HTTP_Header(0){ }protected _body => NULL protected _directory => string(0) "" protected _controller => string(4) "Site" protected _action => string(6) "aruhaz" protected _uri => string(6) "aruhaz" protected _external => bool FALSE protected _params => array(0) protected _get => array(0) protected _post => array(0) protected _cookies => array(0) protected _client => object Request_Client_Internal(9){ protected _previous_environment => NULL protected _cache => NULL protected _follow => bool FALSE protected _follow_headers => array(1) ( 0 => string(13) "Authorization" ) protected _strict_redirect => bool TRUE protected _header_callbacks => array(1) ( "Location" => string(34) "Request_Client::on_header_location" ) protected _max_callback_depth => integer 5 protected _callback_depth => integer 1 protected _callback_params => array(0) }}981 throw new Request_Exception('Unable to execute :uri without a Kohana_Request_Client', array( 982 ':uri' => $this->_uri, 983 )); 984 } 985 986 return $this->_client->execute($this); 987 } 988 989 /** 990 * Returns whether this request is the initial request kohana received. 991 * Can be used to test for sub requests. -
DOCROOT/index.php [ 120 ] » Kohana_Request->execute()
115 /** 116 * Execute the main request. A source of the URI can be passed, eg: $_SERVER['PATH_INFO']. 117 * If no source is specified, the URI will be automatically detected. 118 */ 119 echo Request::factory(TRUE, array(), FALSE) 120 ->execute() 121 ->send_headers(TRUE) 122 ->body(); 123 }
Environment
Included files (112)
DOCROOT/index.php |
APPPATH/bootstrap.php |
SYSPATH/classes/kohana/core.php |
SYSPATH/classes/kohana.php |
SYSPATH/classes/i18n.php |
SYSPATH/classes/kohana/i18n.php |
SYSPATH/classes/http.php |
SYSPATH/classes/kohana/http.php |
SYSPATH/classes/kohana/exception.php |
SYSPATH/classes/kohana/kohana/exception.php |
SYSPATH/classes/log.php |
SYSPATH/classes/kohana/log.php |
SYSPATH/classes/config.php |
SYSPATH/classes/kohana/config.php |
SYSPATH/classes/log/file.php |
SYSPATH/classes/kohana/log/file.php |
SYSPATH/classes/log/writer.php |
SYSPATH/classes/kohana/log/writer.php |
SYSPATH/classes/config/file.php |
SYSPATH/classes/kohana/config/file.php |
SYSPATH/classes/kohana/config/file/reader.php |
SYSPATH/classes/kohana/config/reader.php |
SYSPATH/classes/kohana/config/source.php |
MODPATH/product/init.php |
SYSPATH/classes/route.php |
SYSPATH/classes/kohana/route.php |
MODPATH/email/init.php |
MODPATH/imagefly/init.php |
MODPATH/captcha/init.php |
MODPATH/admin/init.php |
MODPATH/frontend/init.php |
SYSPATH/classes/cookie.php |
SYSPATH/classes/kohana/cookie.php |
MODPATH/admin/classes/papertrail/log.php |
SYSPATH/classes/request.php |
SYSPATH/classes/kohana/request.php |
SYSPATH/classes/http/request.php |
SYSPATH/classes/kohana/http/request.php |
SYSPATH/classes/http/message.php |
SYSPATH/classes/kohana/http/message.php |
SYSPATH/classes/http/header.php |
SYSPATH/classes/kohana/http/header.php |
SYSPATH/classes/request/client/internal.php |
SYSPATH/classes/kohana/request/client/internal.php |
SYSPATH/classes/request/client.php |
SYSPATH/classes/kohana/request/client.php |
SYSPATH/classes/arr.php |
SYSPATH/classes/kohana/arr.php |
SYSPATH/classes/response.php |
SYSPATH/classes/kohana/response.php |
SYSPATH/classes/http/response.php |
SYSPATH/classes/kohana/http/response.php |
SYSPATH/classes/profiler.php |
SYSPATH/classes/kohana/profiler.php |
MODPATH/frontend/classes/controller/site.php |
SYSPATH/classes/controller/template.php |
SYSPATH/classes/kohana/controller/template.php |
SYSPATH/classes/controller.php |
SYSPATH/classes/kohana/controller.php |
SYSPATH/classes/view.php |
SYSPATH/classes/kohana/view.php |
SYSPATH/classes/session.php |
SYSPATH/classes/kohana/session.php |
SYSPATH/config/session.php |
MODPATH/database/config/session.php |
SYSPATH/classes/config/group.php |
SYSPATH/classes/kohana/config/group.php |
SYSPATH/classes/session/native.php |
SYSPATH/classes/kohana/session/native.php |
MODPATH/frontend/views/site/layout.php |
SYSPATH/classes/url.php |
SYSPATH/classes/kohana/url.php |
SYSPATH/classes/utf8.php |
SYSPATH/classes/kohana/utf8.php |
MODPATH/frontend/views/site/aruhaz.php |
MODPATH/frontend/views/site/aruhaz/css.php |
MODPATH/frontend/views/site/aruhaz/xynbio.php |
APPPATH/classes/orm.php |
MODPATH/orm/classes/kohana/orm.php |
SYSPATH/classes/model.php |
SYSPATH/classes/kohana/model.php |
MODPATH/product/classes/model/product.php |
SYSPATH/classes/inflector.php |
SYSPATH/classes/kohana/inflector.php |
SYSPATH/config/inflector.php |
MODPATH/database/classes/database.php |
MODPATH/database/classes/kohana/database.php |
MODPATH/database/config/database.php |
APPPATH/config/database.php |
MODPATH/database/classes/database/mysql.php |
MODPATH/database/classes/kohana/database/mysql.php |
MODPATH/database/classes/database/exception.php |
MODPATH/database/classes/kohana/database/exception.php |
SYSPATH/classes/debug.php |
SYSPATH/classes/kohana/debug.php |
SYSPATH/classes/date.php |
SYSPATH/classes/kohana/date.php |
SYSPATH/views/kohana/error.php |
MODPATH/frontend/views/site/aruhaz/mask.php |
MODPATH/frontend/views/site/aruhaz/novosseum.php |
MODPATH/frontend/views/site/aruhaz/neocartil.php |
MODPATH/frontend/views/site/aruhaz/fluxus_prostatae.php |
MODPATH/frontend/views/site/aruhaz/neocartil_pro.php |
MODPATH/frontend/views/site/aruhaz/resistar_pro.php |
MODPATH/frontend/views/site/aruhaz/yxor.php |
MODPATH/frontend/views/site/aruhaz/novosseum_dental.php |
MODPATH/frontend/views/site/aruhaz/optivisc.php |
MODPATH/frontend/views/site/aruhaz/optivisc_60.php |
MODPATH/frontend/views/site/aruhaz/biovisc_ortho_plus.php |
MODPATH/frontend/views/site/aruhaz/optivisc_20.php |
MODPATH/frontend/views/site/aruhaz/syncordia.php |
MODPATH/frontend/views/site/aruhaz/hexacor.php |
Loaded extensions (53)
Core |
date |
ereg |
libxml |
openssl |
pcre |
zlib |
filter |
hash |
pcntl |
readline |
Reflection |
SPL |
session |
standard |
cgi-fcgi |
bcmath |
calendar |
ctype |
curl |
dom |
fileinfo |
ftp |
gd |
imap |
intl |
json |
mbstring |
mcrypt |
mysqlnd |
mysql |
mysqli |
PDO |
pdo_mysql |
pdo_pgsql |
pdo_sqlite |
pgsql |
Phar |
posix |
SimpleXML |
soap |
sockets |
sqlite3 |
tokenizer |
xml |
wddx |
xmlreader |
xmlrpc |
xmlwriter |
xsl |
zip |
mhash |
ionCube Loader |
$_SERVER
CONTEXT_DOCUMENT_ROOT |
string(39) "/home/synergohub/webshop.synergohub.com" |
CONTEXT_PREFIX |
string(0) "" |
DOCUMENT_ROOT |
string(39) "/home/synergohub/webshop.synergohub.com" |
GATEWAY_INTERFACE |
string(7) "CGI/1.1" |
HTTPS |
string(2) "on" |
HTTP_ACCEPT |
string(3) "*/*" |
HTTP_ACCEPT_ENCODING |
string(23) "gzip, br, zstd, deflate" |
HTTP_HOST |
string(19) "shop.synergohub.com" |
HTTP_USER_AGENT |
string(103) "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" |
PATH |
string(13) "/bin:/usr/bin" |
PHP_INI_SCAN_DIR |
string(67) "/opt/cpanel/ea-php56/root/etc:/opt/cpanel/ea-php56/root/etc/php.d:." |
QUERY_STRING |
string(0) "" |
REDIRECT_HTTPS |
string(2) "on" |
REDIRECT_SSL_TLS_SNI |
string(19) "shop.synergohub.com" |
REDIRECT_STATUS |
string(3) "200" |
REDIRECT_UNIQUE_ID |
string(27) "aVH0bOAH2TfTjairR_s5XQAAAAQ" |
REDIRECT_URL |
string(7) "/aruhaz" |
REMOTE_ADDR |
string(13) "216.73.216.85" |
REMOTE_PORT |
string(5) "14248" |
REQUEST_METHOD |
string(3) "GET" |
REQUEST_SCHEME |
string(5) "https" |
REQUEST_URI |
string(7) "/aruhaz" |
SCRIPT_FILENAME |
string(49) "/home/synergohub/webshop.synergohub.com/index.php" |
SCRIPT_NAME |
string(10) "/index.php" |
SERVER_ADDR |
string(14) "185.51.191.204" |
SERVER_ADMIN |
string(29) "webmaster@shop.synergohub.com" |
SERVER_NAME |
string(19) "shop.synergohub.com" |
SERVER_PORT |
string(3) "443" |
SERVER_PROTOCOL |
string(8) "HTTP/1.1" |
SERVER_SIGNATURE |
string(0) "" |
SERVER_SOFTWARE |
string(6) "Apache" |
SSL_TLS_SNI |
string(19) "shop.synergohub.com" |
TZ |
string(15) "Europe/Budapest" |
UNIQUE_ID |
string(27) "aVH0bOAH2TfTjairR_s5XQAAAAQ" |
ORIG_PATH_INFO |
string(7) "/aruhaz" |
ORIG_PATH_TRANSLATED |
string(49) "/home/synergohub/webshop.synergohub.com/index.php" |
PHP_SELF |
string(10) "/index.php" |
REQUEST_TIME_FLOAT |
float 1766978668,26 |
REQUEST_TIME |
integer 1766978668 |
argv |
array(0) |
argc |
integer 0 |
Database_Exception [ 1046 ]:
MODPATH/database/classes/kohana/database/mysql.php [ 194 ]
189 {
190 // This benchmark is worthless
191 Profiler::delete($benchmark);
192 }
193
194 throw new Database_Exception(':error [ :query ]',
195 array(':error' => mysql_error($this->_connection), ':query' => $sql),
196 mysql_errno($this->_connection));
197 }
198
199 if (isset($benchmark))
-
MODPATH/database/classes/kohana/database/mysql.php [ 359 ] » Kohana_Database_MySQL->query(arguments)
0integer 1
1string(33) "SHOW FULL COLUMNS FROM `products`"2bool FALSE
354 $result = $this->query(Database::SELECT, 'SHOW FULL COLUMNS FROM '.$table.' LIKE '.$this->quote($like), FALSE); 355 } 356 else 357 { 358 // Find all column names 359 $result = $this->query(Database::SELECT, 'SHOW FULL COLUMNS FROM '.$table, FALSE); 360 } 361 362 $count = 0; 363 $columns = array(); 364 foreach ($result as $row) -
MODPATH/orm/classes/kohana/orm.php [ 1668 ] » Kohana_Database_MySQL->list_columns(arguments)
0string(8) "products"1663 * @return array 1664 */ 1665 public function list_columns() 1666 { 1667 // Proxy to database 1668 return $this->_db->list_columns($this->_table_name); 1669 } 1670 1671 /** 1672 * Returns an ORM model for the given one-one related alias 1673 * -
MODPATH/orm/classes/kohana/orm.php [ 444 ] » Kohana_ORM->list_columns()
439 $this->_table_columns = ORM::$_column_cache[$this->_object_name]; 440 } 441 else 442 { 443 // Grab column information from database 444 $this->_table_columns = $this->list_columns(); 445 446 // Load column cache 447 ORM::$_column_cache[$this->_object_name] = $this->_table_columns; 448 } 449 } -
MODPATH/orm/classes/kohana/orm.php [ 389 ] » Kohana_ORM->reload_columns()
384 { 385 $this->{$property} = $value; 386 } 387 388 // Load column information 389 $this->reload_columns(); 390 391 // Clear initial model state 392 $this->clear(); 393 } 394 -
APPPATH/classes/orm.php [ 59 ] » Kohana_ORM->_initialize()
54 private $old = array(); 55 private $new = array(); 56 57 public function __construct($id = NULL) 58 { 59 $this->_initialize(); 60 61 if ($id !== NULL) 62 { 63 if (is_array($id)) 64 { -
MODPATH/orm/classes/kohana/orm.php [ 46 ] » ORM->__construct(arguments)
0integer 3
41 public static function factory($model, $id = NULL) 42 { 43 // Set class name 44 $model = 'Model_'.$model; 45 46 return new $model($id); 47 } 48 49 /** 50 * "Has one" relationships 51 * @var array -
MODPATH/frontend/views/site/aruhaz/resistar.php [ 7 ] » Kohana_ORM::factory(arguments)
0string(7) "product"1integer 3
2 <div class="product product_resistar"> 3 <!-- <div class="ribbon ribbon-cyan"><div>Ingyenes kiszállítás</div></div> --> 4 <!-- <div class="ribbon ribbon-red">Két havi adag</div> --> 5 6 <div class="priceline"> 7 <?php echo Controller_Site::formatPrice((int) ORM::Factory('product', 3)->getGrossPrice());?> Ft 8 </div> 9 10 <div class="titleline"> 11 <img src="/img/aruhaz/resistar_box.png" width="114" height="114" alt="<?php echo ORM::Factory('product' , 3)->name; ?>" /> 12 <?php echo ORM::Factory('product', 3)->name;?> -
SYSPATH/classes/kohana/view.php [ 61 ] » include(arguments)
0string(87) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/aruhaz/resistar.php"56 ob_start(); 57 58 try 59 { 60 // Load the view within the current scope 61 include $kohana_view_filename; 62 } 63 catch (Exception $e) 64 { 65 // Delete the output buffer 66 ob_end_clean(); -
SYSPATH/classes/kohana/view.php [ 348 ] » Kohana_View::capture(arguments)
0string(87) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/aruhaz/resistar.php"1array(2) ( "kohana_view_filename" => string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/aruhaz.php" "kohana_view_data" => array(0) )
343 { 344 throw new View_Exception('You must set the file to use within your view before rendering'); 345 } 346 347 // Combine local and global data and capture the output 348 return View::capture($this->_file, $this->_data); 349 } 350 351 } -
SYSPATH/classes/kohana/view.php [ 228 ] » Kohana_View->render()
223 */ 224 public function __toString() 225 { 226 try 227 { 228 return $this->render(); 229 } 230 catch (Exception $e) 231 { 232 /** 233 * Display the exception message. -
MODPATH/frontend/views/site/aruhaz.php [ 81 ] » Kohana_View->__toString()
76 77 <!-- hexacor --> 78 <?php echo View::factory('site/aruhaz/hexacor', get_defined_vars()); ?> 79 80 <!-- resistar --> 81 <?php echo View::factory('site/aruhaz/resistar', get_defined_vars()); ?> 82 83 <!-- duocor --> 84 <?php echo View::factory('site/aruhaz/duocor', get_defined_vars()); ?> 85 86 <!-- syncordia_duocor --> -
SYSPATH/classes/kohana/view.php [ 61 ] » include(arguments)
0string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/aruhaz.php"56 ob_start(); 57 58 try 59 { 60 // Load the view within the current scope 61 include $kohana_view_filename; 62 } 63 catch (Exception $e) 64 { 65 // Delete the output buffer 66 ob_end_clean(); -
SYSPATH/classes/kohana/view.php [ 348 ] » Kohana_View::capture(arguments)
0string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/aruhaz.php"1array(0)343 { 344 throw new View_Exception('You must set the file to use within your view before rendering'); 345 } 346 347 // Combine local and global data and capture the output 348 return View::capture($this->_file, $this->_data); 349 } 350 351 } -
SYSPATH/classes/kohana/view.php [ 228 ] » Kohana_View->render()
223 */ 224 public function __toString() 225 { 226 try 227 { 228 return $this->render(); 229 } 230 catch (Exception $e) 231 { 232 /** 233 * Display the exception message. -
MODPATH/frontend/views/site/layout.php [ 238 ] » Kohana_View->__toString()
233 <?php endif; ?> 234 </div><!-- header --> 235 236 <div id="content"> 237 238 <?php echo @$content; ?> 239 240 </div><!-- content --> 241 242 <div class="clear"></div> 243 -
SYSPATH/classes/kohana/view.php [ 61 ] » include(arguments)
0string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/layout.php"56 ob_start(); 57 58 try 59 { 60 // Load the view within the current scope 61 include $kohana_view_filename; 62 } 63 catch (Exception $e) 64 { 65 // Delete the output buffer 66 ob_end_clean(); -
SYSPATH/classes/kohana/view.php [ 348 ] » Kohana_View::capture(arguments)
0string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/layout.php"1array(4) ( "user" => bool FALSE "cartnum" => integer 0 "bodyclass" => string(7) "webshop" "content" => object View(2)
{ protected _file => string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/aruhaz.php" protected _data => array(0) })343 { 344 throw new View_Exception('You must set the file to use within your view before rendering'); 345 } 346 347 // Combine local and global data and capture the output 348 return View::capture($this->_file, $this->_data); 349 } 350 351 } -
SYSPATH/classes/kohana/controller/template.php [ 44 ] » Kohana_View->render()
39 */ 40 public function after() 41 { 42 if ($this->auto_render === TRUE) 43 { 44 $this->response->body($this->template->render()); 45 } 46 47 parent::after(); 48 } 49 -
SYSPATH/classes/kohana/controller.php [ 87 ] » Kohana_Controller_Template->after()
82 83 // Execute the action itself 84 $this->{$action}(); 85 86 // Execute the "after action" method 87 $this->after(); 88 89 // Return the response 90 return $this->response; 91 } 92 -
{PHP internal call} » Kohana_Controller->execute()
-
SYSPATH/classes/kohana/request/client/internal.php [ 97 ] » ReflectionMethod->invoke(arguments)
0object Controller_Site(4)
{ public template => object View(2){ protected _file => string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/layout.php" protected _data => array(4) ( "user" => bool FALSE "cartnum" => integer 0 "bodyclass" => string(7) "webshop" "content" => object View(2)public auto_render => bool TRUE public request => object Request(19){ protected _file => string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/aruhaz.php" protected _data => array(0) }) }{ protected _requested_with => NULL protected _method => string(3) "GET" protected _protocol => string(8) "HTTP/1.1" protected _secure => bool TRUE protected _referrer => NULL protected _route => object Route(5)public response => object Response(5){ protected _filters => array(0) protected _uri => string(6) "aruhaz" protected _regex => array(0) protected _defaults => array(2) ( "controller" => string(4) "site" "action" => string(6) "aruhaz" ) protected _route_regex => string(12) "#^aruhaz$#uD" }protected _routes => array(0) protected _header => object HTTP_Header(0){ }protected _body => NULL protected _directory => string(0) "" protected _controller => string(4) "Site" protected _action => string(6) "aruhaz" protected _uri => string(6) "aruhaz" protected _external => bool FALSE protected _params => array(0) protected _get => array(0) protected _post => array(0) protected _cookies => array(0) protected _client => object Request_Client_Internal(9){ protected _previous_environment => NULL protected _cache => NULL protected _follow => bool FALSE protected _follow_headers => array(1) ( 0 => string(13) "Authorization" ) protected _strict_redirect => bool TRUE protected _header_callbacks => array(1) ( "Location" => string(34) "Request_Client::on_header_location" ) protected _max_callback_depth => integer 5 protected _callback_depth => integer 1 protected _callback_params => array(0) }}{ protected _status => integer 200 protected _header => object HTTP_Header(0)}{ }protected _body => string(0) "" protected _cookies => array(0) protected _protocol => string(8) "HTTP/1.1" }92 93 // Create a new instance of the controller 94 $controller = $class->newInstance($request, $response); 95 96 // Run the controller's execute() method 97 $response = $class->getMethod('execute')->invoke($controller); 98 99 if ( ! $response instanceof Response) 100 { 101 // Controller failed to return a Response. 102 throw new Kohana_Exception('Controller failed to return a Response'); -
SYSPATH/classes/kohana/request/client.php [ 114 ] » Kohana_Request_Client_Internal->execute_request(arguments)
0object Request(19)
{ protected _requested_with => NULL protected _method => string(3) "GET" protected _protocol => string(8) "HTTP/1.1" protected _secure => bool TRUE protected _referrer => NULL protected _route => object Route(5){ protected _filters => array(0) protected _uri => string(6) "aruhaz" protected _regex => array(0) protected _defaults => array(2) ( "controller" => string(4) "site" "action" => string(6) "aruhaz" ) protected _route_regex => string(12) "#^aruhaz$#uD" }protected _routes => array(0) protected _header => object HTTP_Header(0){ }protected _body => NULL protected _directory => string(0) "" protected _controller => string(4) "Site" protected _action => string(6) "aruhaz" protected _uri => string(6) "aruhaz" protected _external => bool FALSE protected _params => array(0) protected _get => array(0) protected _post => array(0) protected _cookies => array(0) protected _client => object Request_Client_Internal(9){ protected _previous_environment => NULL protected _cache => NULL protected _follow => bool FALSE protected _follow_headers => array(1) ( 0 => string(13) "Authorization" ) protected _strict_redirect => bool TRUE protected _header_callbacks => array(1) ( "Location" => string(34) "Request_Client::on_header_location" ) protected _max_callback_depth => integer 5 protected _callback_depth => integer 1 protected _callback_params => array(0) }}1object Response(5)
{ protected _status => integer 200 protected _header => object HTTP_Header(0){ }protected _body => string(0) "" protected _cookies => array(0) protected _protocol => string(8) "HTTP/1.1" }109 $orig_response = $response = Response::factory(array('_protocol' => $request->protocol())); 110 111 if (($cache = $this->cache()) instanceof HTTP_Cache) 112 return $cache->execute($this, $request, $response); 113 114 $response = $this->execute_request($request, $response); 115 116 // Execute response callbacks 117 foreach ($this->header_callbacks() as $header => $callback) 118 { 119 if ($response->headers($header)) -
SYSPATH/classes/kohana/request.php [ 986 ] » Kohana_Request_Client->execute(arguments)
0object Request(19)
{ protected _requested_with => NULL protected _method => string(3) "GET" protected _protocol => string(8) "HTTP/1.1" protected _secure => bool TRUE protected _referrer => NULL protected _route => object Route(5){ protected _filters => array(0) protected _uri => string(6) "aruhaz" protected _regex => array(0) protected _defaults => array(2) ( "controller" => string(4) "site" "action" => string(6) "aruhaz" ) protected _route_regex => string(12) "#^aruhaz$#uD" }protected _routes => array(0) protected _header => object HTTP_Header(0){ }protected _body => NULL protected _directory => string(0) "" protected _controller => string(4) "Site" protected _action => string(6) "aruhaz" protected _uri => string(6) "aruhaz" protected _external => bool FALSE protected _params => array(0) protected _get => array(0) protected _post => array(0) protected _cookies => array(0) protected _client => object Request_Client_Internal(9){ protected _previous_environment => NULL protected _cache => NULL protected _follow => bool FALSE protected _follow_headers => array(1) ( 0 => string(13) "Authorization" ) protected _strict_redirect => bool TRUE protected _header_callbacks => array(1) ( "Location" => string(34) "Request_Client::on_header_location" ) protected _max_callback_depth => integer 5 protected _callback_depth => integer 1 protected _callback_params => array(0) }}981 throw new Request_Exception('Unable to execute :uri without a Kohana_Request_Client', array( 982 ':uri' => $this->_uri, 983 )); 984 } 985 986 return $this->_client->execute($this); 987 } 988 989 /** 990 * Returns whether this request is the initial request kohana received. 991 * Can be used to test for sub requests. -
DOCROOT/index.php [ 120 ] » Kohana_Request->execute()
115 /** 116 * Execute the main request. A source of the URI can be passed, eg: $_SERVER['PATH_INFO']. 117 * If no source is specified, the URI will be automatically detected. 118 */ 119 echo Request::factory(TRUE, array(), FALSE) 120 ->execute() 121 ->send_headers(TRUE) 122 ->body(); 123 }
Environment
Included files (113)
DOCROOT/index.php |
APPPATH/bootstrap.php |
SYSPATH/classes/kohana/core.php |
SYSPATH/classes/kohana.php |
SYSPATH/classes/i18n.php |
SYSPATH/classes/kohana/i18n.php |
SYSPATH/classes/http.php |
SYSPATH/classes/kohana/http.php |
SYSPATH/classes/kohana/exception.php |
SYSPATH/classes/kohana/kohana/exception.php |
SYSPATH/classes/log.php |
SYSPATH/classes/kohana/log.php |
SYSPATH/classes/config.php |
SYSPATH/classes/kohana/config.php |
SYSPATH/classes/log/file.php |
SYSPATH/classes/kohana/log/file.php |
SYSPATH/classes/log/writer.php |
SYSPATH/classes/kohana/log/writer.php |
SYSPATH/classes/config/file.php |
SYSPATH/classes/kohana/config/file.php |
SYSPATH/classes/kohana/config/file/reader.php |
SYSPATH/classes/kohana/config/reader.php |
SYSPATH/classes/kohana/config/source.php |
MODPATH/product/init.php |
SYSPATH/classes/route.php |
SYSPATH/classes/kohana/route.php |
MODPATH/email/init.php |
MODPATH/imagefly/init.php |
MODPATH/captcha/init.php |
MODPATH/admin/init.php |
MODPATH/frontend/init.php |
SYSPATH/classes/cookie.php |
SYSPATH/classes/kohana/cookie.php |
MODPATH/admin/classes/papertrail/log.php |
SYSPATH/classes/request.php |
SYSPATH/classes/kohana/request.php |
SYSPATH/classes/http/request.php |
SYSPATH/classes/kohana/http/request.php |
SYSPATH/classes/http/message.php |
SYSPATH/classes/kohana/http/message.php |
SYSPATH/classes/http/header.php |
SYSPATH/classes/kohana/http/header.php |
SYSPATH/classes/request/client/internal.php |
SYSPATH/classes/kohana/request/client/internal.php |
SYSPATH/classes/request/client.php |
SYSPATH/classes/kohana/request/client.php |
SYSPATH/classes/arr.php |
SYSPATH/classes/kohana/arr.php |
SYSPATH/classes/response.php |
SYSPATH/classes/kohana/response.php |
SYSPATH/classes/http/response.php |
SYSPATH/classes/kohana/http/response.php |
SYSPATH/classes/profiler.php |
SYSPATH/classes/kohana/profiler.php |
MODPATH/frontend/classes/controller/site.php |
SYSPATH/classes/controller/template.php |
SYSPATH/classes/kohana/controller/template.php |
SYSPATH/classes/controller.php |
SYSPATH/classes/kohana/controller.php |
SYSPATH/classes/view.php |
SYSPATH/classes/kohana/view.php |
SYSPATH/classes/session.php |
SYSPATH/classes/kohana/session.php |
SYSPATH/config/session.php |
MODPATH/database/config/session.php |
SYSPATH/classes/config/group.php |
SYSPATH/classes/kohana/config/group.php |
SYSPATH/classes/session/native.php |
SYSPATH/classes/kohana/session/native.php |
MODPATH/frontend/views/site/layout.php |
SYSPATH/classes/url.php |
SYSPATH/classes/kohana/url.php |
SYSPATH/classes/utf8.php |
SYSPATH/classes/kohana/utf8.php |
MODPATH/frontend/views/site/aruhaz.php |
MODPATH/frontend/views/site/aruhaz/css.php |
MODPATH/frontend/views/site/aruhaz/xynbio.php |
APPPATH/classes/orm.php |
MODPATH/orm/classes/kohana/orm.php |
SYSPATH/classes/model.php |
SYSPATH/classes/kohana/model.php |
MODPATH/product/classes/model/product.php |
SYSPATH/classes/inflector.php |
SYSPATH/classes/kohana/inflector.php |
SYSPATH/config/inflector.php |
MODPATH/database/classes/database.php |
MODPATH/database/classes/kohana/database.php |
MODPATH/database/config/database.php |
APPPATH/config/database.php |
MODPATH/database/classes/database/mysql.php |
MODPATH/database/classes/kohana/database/mysql.php |
MODPATH/database/classes/database/exception.php |
MODPATH/database/classes/kohana/database/exception.php |
SYSPATH/classes/debug.php |
SYSPATH/classes/kohana/debug.php |
SYSPATH/classes/date.php |
SYSPATH/classes/kohana/date.php |
SYSPATH/views/kohana/error.php |
MODPATH/frontend/views/site/aruhaz/mask.php |
MODPATH/frontend/views/site/aruhaz/novosseum.php |
MODPATH/frontend/views/site/aruhaz/neocartil.php |
MODPATH/frontend/views/site/aruhaz/fluxus_prostatae.php |
MODPATH/frontend/views/site/aruhaz/neocartil_pro.php |
MODPATH/frontend/views/site/aruhaz/resistar_pro.php |
MODPATH/frontend/views/site/aruhaz/yxor.php |
MODPATH/frontend/views/site/aruhaz/novosseum_dental.php |
MODPATH/frontend/views/site/aruhaz/optivisc.php |
MODPATH/frontend/views/site/aruhaz/optivisc_60.php |
MODPATH/frontend/views/site/aruhaz/biovisc_ortho_plus.php |
MODPATH/frontend/views/site/aruhaz/optivisc_20.php |
MODPATH/frontend/views/site/aruhaz/syncordia.php |
MODPATH/frontend/views/site/aruhaz/hexacor.php |
MODPATH/frontend/views/site/aruhaz/resistar.php |
Loaded extensions (53)
Core |
date |
ereg |
libxml |
openssl |
pcre |
zlib |
filter |
hash |
pcntl |
readline |
Reflection |
SPL |
session |
standard |
cgi-fcgi |
bcmath |
calendar |
ctype |
curl |
dom |
fileinfo |
ftp |
gd |
imap |
intl |
json |
mbstring |
mcrypt |
mysqlnd |
mysql |
mysqli |
PDO |
pdo_mysql |
pdo_pgsql |
pdo_sqlite |
pgsql |
Phar |
posix |
SimpleXML |
soap |
sockets |
sqlite3 |
tokenizer |
xml |
wddx |
xmlreader |
xmlrpc |
xmlwriter |
xsl |
zip |
mhash |
ionCube Loader |
$_SERVER
CONTEXT_DOCUMENT_ROOT |
string(39) "/home/synergohub/webshop.synergohub.com" |
CONTEXT_PREFIX |
string(0) "" |
DOCUMENT_ROOT |
string(39) "/home/synergohub/webshop.synergohub.com" |
GATEWAY_INTERFACE |
string(7) "CGI/1.1" |
HTTPS |
string(2) "on" |
HTTP_ACCEPT |
string(3) "*/*" |
HTTP_ACCEPT_ENCODING |
string(23) "gzip, br, zstd, deflate" |
HTTP_HOST |
string(19) "shop.synergohub.com" |
HTTP_USER_AGENT |
string(103) "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" |
PATH |
string(13) "/bin:/usr/bin" |
PHP_INI_SCAN_DIR |
string(67) "/opt/cpanel/ea-php56/root/etc:/opt/cpanel/ea-php56/root/etc/php.d:." |
QUERY_STRING |
string(0) "" |
REDIRECT_HTTPS |
string(2) "on" |
REDIRECT_SSL_TLS_SNI |
string(19) "shop.synergohub.com" |
REDIRECT_STATUS |
string(3) "200" |
REDIRECT_UNIQUE_ID |
string(27) "aVH0bOAH2TfTjairR_s5XQAAAAQ" |
REDIRECT_URL |
string(7) "/aruhaz" |
REMOTE_ADDR |
string(13) "216.73.216.85" |
REMOTE_PORT |
string(5) "14248" |
REQUEST_METHOD |
string(3) "GET" |
REQUEST_SCHEME |
string(5) "https" |
REQUEST_URI |
string(7) "/aruhaz" |
SCRIPT_FILENAME |
string(49) "/home/synergohub/webshop.synergohub.com/index.php" |
SCRIPT_NAME |
string(10) "/index.php" |
SERVER_ADDR |
string(14) "185.51.191.204" |
SERVER_ADMIN |
string(29) "webmaster@shop.synergohub.com" |
SERVER_NAME |
string(19) "shop.synergohub.com" |
SERVER_PORT |
string(3) "443" |
SERVER_PROTOCOL |
string(8) "HTTP/1.1" |
SERVER_SIGNATURE |
string(0) "" |
SERVER_SOFTWARE |
string(6) "Apache" |
SSL_TLS_SNI |
string(19) "shop.synergohub.com" |
TZ |
string(15) "Europe/Budapest" |
UNIQUE_ID |
string(27) "aVH0bOAH2TfTjairR_s5XQAAAAQ" |
ORIG_PATH_INFO |
string(7) "/aruhaz" |
ORIG_PATH_TRANSLATED |
string(49) "/home/synergohub/webshop.synergohub.com/index.php" |
PHP_SELF |
string(10) "/index.php" |
REQUEST_TIME_FLOAT |
float 1766978668,26 |
REQUEST_TIME |
integer 1766978668 |
argv |
array(0) |
argc |
integer 0 |
Database_Exception [ 1046 ]:
MODPATH/database/classes/kohana/database/mysql.php [ 194 ]
189 {
190 // This benchmark is worthless
191 Profiler::delete($benchmark);
192 }
193
194 throw new Database_Exception(':error [ :query ]',
195 array(':error' => mysql_error($this->_connection), ':query' => $sql),
196 mysql_errno($this->_connection));
197 }
198
199 if (isset($benchmark))
-
MODPATH/database/classes/kohana/database/mysql.php [ 359 ] » Kohana_Database_MySQL->query(arguments)
0integer 1
1string(33) "SHOW FULL COLUMNS FROM `products`"2bool FALSE
354 $result = $this->query(Database::SELECT, 'SHOW FULL COLUMNS FROM '.$table.' LIKE '.$this->quote($like), FALSE); 355 } 356 else 357 { 358 // Find all column names 359 $result = $this->query(Database::SELECT, 'SHOW FULL COLUMNS FROM '.$table, FALSE); 360 } 361 362 $count = 0; 363 $columns = array(); 364 foreach ($result as $row) -
MODPATH/orm/classes/kohana/orm.php [ 1668 ] » Kohana_Database_MySQL->list_columns(arguments)
0string(8) "products"1663 * @return array 1664 */ 1665 public function list_columns() 1666 { 1667 // Proxy to database 1668 return $this->_db->list_columns($this->_table_name); 1669 } 1670 1671 /** 1672 * Returns an ORM model for the given one-one related alias 1673 * -
MODPATH/orm/classes/kohana/orm.php [ 444 ] » Kohana_ORM->list_columns()
439 $this->_table_columns = ORM::$_column_cache[$this->_object_name]; 440 } 441 else 442 { 443 // Grab column information from database 444 $this->_table_columns = $this->list_columns(); 445 446 // Load column cache 447 ORM::$_column_cache[$this->_object_name] = $this->_table_columns; 448 } 449 } -
MODPATH/orm/classes/kohana/orm.php [ 389 ] » Kohana_ORM->reload_columns()
384 { 385 $this->{$property} = $value; 386 } 387 388 // Load column information 389 $this->reload_columns(); 390 391 // Clear initial model state 392 $this->clear(); 393 } 394 -
APPPATH/classes/orm.php [ 59 ] » Kohana_ORM->_initialize()
54 private $old = array(); 55 private $new = array(); 56 57 public function __construct($id = NULL) 58 { 59 $this->_initialize(); 60 61 if ($id !== NULL) 62 { 63 if (is_array($id)) 64 { -
MODPATH/orm/classes/kohana/orm.php [ 46 ] » ORM->__construct(arguments)
0integer 8
41 public static function factory($model, $id = NULL) 42 { 43 // Set class name 44 $model = 'Model_'.$model; 45 46 return new $model($id); 47 } 48 49 /** 50 * "Has one" relationships 51 * @var array -
MODPATH/frontend/views/site/aruhaz/duocor.php [ 7 ] » Kohana_ORM::factory(arguments)
0string(7) "product"1integer 8
2 <div class="product product_duocor"> 3 <!-- <div class="ribbon ribbon-cyan"><div>Ingyenes kiszállítás</div></div> --> 4 <!-- <div class="ribbon ribbon-red">Két havi adag</div> --> 5 6 <div class="priceline"> 7 <?php echo Controller_Site::formatPrice((int) ORM::Factory('product', 8)->getGrossPrice());?> Ft 8 </div> 9 10 <div class="titleline"> 11 <img src="/img/aruhaz/duocor_box.png" width="114" height="114" alt="<?php echo ORM::Factory('product' , 8)->name; ?>" /> 12 <?php echo ORM::Factory('product', 8)->name;?> -
SYSPATH/classes/kohana/view.php [ 61 ] » include(arguments)
0string(85) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/aruhaz/duocor.php"56 ob_start(); 57 58 try 59 { 60 // Load the view within the current scope 61 include $kohana_view_filename; 62 } 63 catch (Exception $e) 64 { 65 // Delete the output buffer 66 ob_end_clean(); -
SYSPATH/classes/kohana/view.php [ 348 ] » Kohana_View::capture(arguments)
0string(85) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/aruhaz/duocor.php"1array(2) ( "kohana_view_filename" => string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/aruhaz.php" "kohana_view_data" => array(0) )
343 { 344 throw new View_Exception('You must set the file to use within your view before rendering'); 345 } 346 347 // Combine local and global data and capture the output 348 return View::capture($this->_file, $this->_data); 349 } 350 351 } -
SYSPATH/classes/kohana/view.php [ 228 ] » Kohana_View->render()
223 */ 224 public function __toString() 225 { 226 try 227 { 228 return $this->render(); 229 } 230 catch (Exception $e) 231 { 232 /** 233 * Display the exception message. -
MODPATH/frontend/views/site/aruhaz.php [ 84 ] » Kohana_View->__toString()
79 80 <!-- resistar --> 81 <?php echo View::factory('site/aruhaz/resistar', get_defined_vars()); ?> 82 83 <!-- duocor --> 84 <?php echo View::factory('site/aruhaz/duocor', get_defined_vars()); ?> 85 86 <!-- syncordia_duocor --> 87 <?php echo View::factory('site/aruhaz/syncordia_duocor', get_defined_vars()); ?> 88 89 <!-- hexacor_duocor --> -
SYSPATH/classes/kohana/view.php [ 61 ] » include(arguments)
0string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/aruhaz.php"56 ob_start(); 57 58 try 59 { 60 // Load the view within the current scope 61 include $kohana_view_filename; 62 } 63 catch (Exception $e) 64 { 65 // Delete the output buffer 66 ob_end_clean(); -
SYSPATH/classes/kohana/view.php [ 348 ] » Kohana_View::capture(arguments)
0string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/aruhaz.php"1array(0)343 { 344 throw new View_Exception('You must set the file to use within your view before rendering'); 345 } 346 347 // Combine local and global data and capture the output 348 return View::capture($this->_file, $this->_data); 349 } 350 351 } -
SYSPATH/classes/kohana/view.php [ 228 ] » Kohana_View->render()
223 */ 224 public function __toString() 225 { 226 try 227 { 228 return $this->render(); 229 } 230 catch (Exception $e) 231 { 232 /** 233 * Display the exception message. -
MODPATH/frontend/views/site/layout.php [ 238 ] » Kohana_View->__toString()
233 <?php endif; ?> 234 </div><!-- header --> 235 236 <div id="content"> 237 238 <?php echo @$content; ?> 239 240 </div><!-- content --> 241 242 <div class="clear"></div> 243 -
SYSPATH/classes/kohana/view.php [ 61 ] » include(arguments)
0string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/layout.php"56 ob_start(); 57 58 try 59 { 60 // Load the view within the current scope 61 include $kohana_view_filename; 62 } 63 catch (Exception $e) 64 { 65 // Delete the output buffer 66 ob_end_clean(); -
SYSPATH/classes/kohana/view.php [ 348 ] » Kohana_View::capture(arguments)
0string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/layout.php"1array(4) ( "user" => bool FALSE "cartnum" => integer 0 "bodyclass" => string(7) "webshop" "content" => object View(2)
{ protected _file => string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/aruhaz.php" protected _data => array(0) })343 { 344 throw new View_Exception('You must set the file to use within your view before rendering'); 345 } 346 347 // Combine local and global data and capture the output 348 return View::capture($this->_file, $this->_data); 349 } 350 351 } -
SYSPATH/classes/kohana/controller/template.php [ 44 ] » Kohana_View->render()
39 */ 40 public function after() 41 { 42 if ($this->auto_render === TRUE) 43 { 44 $this->response->body($this->template->render()); 45 } 46 47 parent::after(); 48 } 49 -
SYSPATH/classes/kohana/controller.php [ 87 ] » Kohana_Controller_Template->after()
82 83 // Execute the action itself 84 $this->{$action}(); 85 86 // Execute the "after action" method 87 $this->after(); 88 89 // Return the response 90 return $this->response; 91 } 92 -
{PHP internal call} » Kohana_Controller->execute()
-
SYSPATH/classes/kohana/request/client/internal.php [ 97 ] » ReflectionMethod->invoke(arguments)
0object Controller_Site(4)
{ public template => object View(2){ protected _file => string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/layout.php" protected _data => array(4) ( "user" => bool FALSE "cartnum" => integer 0 "bodyclass" => string(7) "webshop" "content" => object View(2)public auto_render => bool TRUE public request => object Request(19){ protected _file => string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/aruhaz.php" protected _data => array(0) }) }{ protected _requested_with => NULL protected _method => string(3) "GET" protected _protocol => string(8) "HTTP/1.1" protected _secure => bool TRUE protected _referrer => NULL protected _route => object Route(5)public response => object Response(5){ protected _filters => array(0) protected _uri => string(6) "aruhaz" protected _regex => array(0) protected _defaults => array(2) ( "controller" => string(4) "site" "action" => string(6) "aruhaz" ) protected _route_regex => string(12) "#^aruhaz$#uD" }protected _routes => array(0) protected _header => object HTTP_Header(0){ }protected _body => NULL protected _directory => string(0) "" protected _controller => string(4) "Site" protected _action => string(6) "aruhaz" protected _uri => string(6) "aruhaz" protected _external => bool FALSE protected _params => array(0) protected _get => array(0) protected _post => array(0) protected _cookies => array(0) protected _client => object Request_Client_Internal(9){ protected _previous_environment => NULL protected _cache => NULL protected _follow => bool FALSE protected _follow_headers => array(1) ( 0 => string(13) "Authorization" ) protected _strict_redirect => bool TRUE protected _header_callbacks => array(1) ( "Location" => string(34) "Request_Client::on_header_location" ) protected _max_callback_depth => integer 5 protected _callback_depth => integer 1 protected _callback_params => array(0) }}{ protected _status => integer 200 protected _header => object HTTP_Header(0)}{ }protected _body => string(0) "" protected _cookies => array(0) protected _protocol => string(8) "HTTP/1.1" }92 93 // Create a new instance of the controller 94 $controller = $class->newInstance($request, $response); 95 96 // Run the controller's execute() method 97 $response = $class->getMethod('execute')->invoke($controller); 98 99 if ( ! $response instanceof Response) 100 { 101 // Controller failed to return a Response. 102 throw new Kohana_Exception('Controller failed to return a Response'); -
SYSPATH/classes/kohana/request/client.php [ 114 ] » Kohana_Request_Client_Internal->execute_request(arguments)
0object Request(19)
{ protected _requested_with => NULL protected _method => string(3) "GET" protected _protocol => string(8) "HTTP/1.1" protected _secure => bool TRUE protected _referrer => NULL protected _route => object Route(5){ protected _filters => array(0) protected _uri => string(6) "aruhaz" protected _regex => array(0) protected _defaults => array(2) ( "controller" => string(4) "site" "action" => string(6) "aruhaz" ) protected _route_regex => string(12) "#^aruhaz$#uD" }protected _routes => array(0) protected _header => object HTTP_Header(0){ }protected _body => NULL protected _directory => string(0) "" protected _controller => string(4) "Site" protected _action => string(6) "aruhaz" protected _uri => string(6) "aruhaz" protected _external => bool FALSE protected _params => array(0) protected _get => array(0) protected _post => array(0) protected _cookies => array(0) protected _client => object Request_Client_Internal(9){ protected _previous_environment => NULL protected _cache => NULL protected _follow => bool FALSE protected _follow_headers => array(1) ( 0 => string(13) "Authorization" ) protected _strict_redirect => bool TRUE protected _header_callbacks => array(1) ( "Location" => string(34) "Request_Client::on_header_location" ) protected _max_callback_depth => integer 5 protected _callback_depth => integer 1 protected _callback_params => array(0) }}1object Response(5)
{ protected _status => integer 200 protected _header => object HTTP_Header(0){ }protected _body => string(0) "" protected _cookies => array(0) protected _protocol => string(8) "HTTP/1.1" }109 $orig_response = $response = Response::factory(array('_protocol' => $request->protocol())); 110 111 if (($cache = $this->cache()) instanceof HTTP_Cache) 112 return $cache->execute($this, $request, $response); 113 114 $response = $this->execute_request($request, $response); 115 116 // Execute response callbacks 117 foreach ($this->header_callbacks() as $header => $callback) 118 { 119 if ($response->headers($header)) -
SYSPATH/classes/kohana/request.php [ 986 ] » Kohana_Request_Client->execute(arguments)
0object Request(19)
{ protected _requested_with => NULL protected _method => string(3) "GET" protected _protocol => string(8) "HTTP/1.1" protected _secure => bool TRUE protected _referrer => NULL protected _route => object Route(5){ protected _filters => array(0) protected _uri => string(6) "aruhaz" protected _regex => array(0) protected _defaults => array(2) ( "controller" => string(4) "site" "action" => string(6) "aruhaz" ) protected _route_regex => string(12) "#^aruhaz$#uD" }protected _routes => array(0) protected _header => object HTTP_Header(0){ }protected _body => NULL protected _directory => string(0) "" protected _controller => string(4) "Site" protected _action => string(6) "aruhaz" protected _uri => string(6) "aruhaz" protected _external => bool FALSE protected _params => array(0) protected _get => array(0) protected _post => array(0) protected _cookies => array(0) protected _client => object Request_Client_Internal(9){ protected _previous_environment => NULL protected _cache => NULL protected _follow => bool FALSE protected _follow_headers => array(1) ( 0 => string(13) "Authorization" ) protected _strict_redirect => bool TRUE protected _header_callbacks => array(1) ( "Location" => string(34) "Request_Client::on_header_location" ) protected _max_callback_depth => integer 5 protected _callback_depth => integer 1 protected _callback_params => array(0) }}981 throw new Request_Exception('Unable to execute :uri without a Kohana_Request_Client', array( 982 ':uri' => $this->_uri, 983 )); 984 } 985 986 return $this->_client->execute($this); 987 } 988 989 /** 990 * Returns whether this request is the initial request kohana received. 991 * Can be used to test for sub requests. -
DOCROOT/index.php [ 120 ] » Kohana_Request->execute()
115 /** 116 * Execute the main request. A source of the URI can be passed, eg: $_SERVER['PATH_INFO']. 117 * If no source is specified, the URI will be automatically detected. 118 */ 119 echo Request::factory(TRUE, array(), FALSE) 120 ->execute() 121 ->send_headers(TRUE) 122 ->body(); 123 }
Environment
Included files (114)
DOCROOT/index.php |
APPPATH/bootstrap.php |
SYSPATH/classes/kohana/core.php |
SYSPATH/classes/kohana.php |
SYSPATH/classes/i18n.php |
SYSPATH/classes/kohana/i18n.php |
SYSPATH/classes/http.php |
SYSPATH/classes/kohana/http.php |
SYSPATH/classes/kohana/exception.php |
SYSPATH/classes/kohana/kohana/exception.php |
SYSPATH/classes/log.php |
SYSPATH/classes/kohana/log.php |
SYSPATH/classes/config.php |
SYSPATH/classes/kohana/config.php |
SYSPATH/classes/log/file.php |
SYSPATH/classes/kohana/log/file.php |
SYSPATH/classes/log/writer.php |
SYSPATH/classes/kohana/log/writer.php |
SYSPATH/classes/config/file.php |
SYSPATH/classes/kohana/config/file.php |
SYSPATH/classes/kohana/config/file/reader.php |
SYSPATH/classes/kohana/config/reader.php |
SYSPATH/classes/kohana/config/source.php |
MODPATH/product/init.php |
SYSPATH/classes/route.php |
SYSPATH/classes/kohana/route.php |
MODPATH/email/init.php |
MODPATH/imagefly/init.php |
MODPATH/captcha/init.php |
MODPATH/admin/init.php |
MODPATH/frontend/init.php |
SYSPATH/classes/cookie.php |
SYSPATH/classes/kohana/cookie.php |
MODPATH/admin/classes/papertrail/log.php |
SYSPATH/classes/request.php |
SYSPATH/classes/kohana/request.php |
SYSPATH/classes/http/request.php |
SYSPATH/classes/kohana/http/request.php |
SYSPATH/classes/http/message.php |
SYSPATH/classes/kohana/http/message.php |
SYSPATH/classes/http/header.php |
SYSPATH/classes/kohana/http/header.php |
SYSPATH/classes/request/client/internal.php |
SYSPATH/classes/kohana/request/client/internal.php |
SYSPATH/classes/request/client.php |
SYSPATH/classes/kohana/request/client.php |
SYSPATH/classes/arr.php |
SYSPATH/classes/kohana/arr.php |
SYSPATH/classes/response.php |
SYSPATH/classes/kohana/response.php |
SYSPATH/classes/http/response.php |
SYSPATH/classes/kohana/http/response.php |
SYSPATH/classes/profiler.php |
SYSPATH/classes/kohana/profiler.php |
MODPATH/frontend/classes/controller/site.php |
SYSPATH/classes/controller/template.php |
SYSPATH/classes/kohana/controller/template.php |
SYSPATH/classes/controller.php |
SYSPATH/classes/kohana/controller.php |
SYSPATH/classes/view.php |
SYSPATH/classes/kohana/view.php |
SYSPATH/classes/session.php |
SYSPATH/classes/kohana/session.php |
SYSPATH/config/session.php |
MODPATH/database/config/session.php |
SYSPATH/classes/config/group.php |
SYSPATH/classes/kohana/config/group.php |
SYSPATH/classes/session/native.php |
SYSPATH/classes/kohana/session/native.php |
MODPATH/frontend/views/site/layout.php |
SYSPATH/classes/url.php |
SYSPATH/classes/kohana/url.php |
SYSPATH/classes/utf8.php |
SYSPATH/classes/kohana/utf8.php |
MODPATH/frontend/views/site/aruhaz.php |
MODPATH/frontend/views/site/aruhaz/css.php |
MODPATH/frontend/views/site/aruhaz/xynbio.php |
APPPATH/classes/orm.php |
MODPATH/orm/classes/kohana/orm.php |
SYSPATH/classes/model.php |
SYSPATH/classes/kohana/model.php |
MODPATH/product/classes/model/product.php |
SYSPATH/classes/inflector.php |
SYSPATH/classes/kohana/inflector.php |
SYSPATH/config/inflector.php |
MODPATH/database/classes/database.php |
MODPATH/database/classes/kohana/database.php |
MODPATH/database/config/database.php |
APPPATH/config/database.php |
MODPATH/database/classes/database/mysql.php |
MODPATH/database/classes/kohana/database/mysql.php |
MODPATH/database/classes/database/exception.php |
MODPATH/database/classes/kohana/database/exception.php |
SYSPATH/classes/debug.php |
SYSPATH/classes/kohana/debug.php |
SYSPATH/classes/date.php |
SYSPATH/classes/kohana/date.php |
SYSPATH/views/kohana/error.php |
MODPATH/frontend/views/site/aruhaz/mask.php |
MODPATH/frontend/views/site/aruhaz/novosseum.php |
MODPATH/frontend/views/site/aruhaz/neocartil.php |
MODPATH/frontend/views/site/aruhaz/fluxus_prostatae.php |
MODPATH/frontend/views/site/aruhaz/neocartil_pro.php |
MODPATH/frontend/views/site/aruhaz/resistar_pro.php |
MODPATH/frontend/views/site/aruhaz/yxor.php |
MODPATH/frontend/views/site/aruhaz/novosseum_dental.php |
MODPATH/frontend/views/site/aruhaz/optivisc.php |
MODPATH/frontend/views/site/aruhaz/optivisc_60.php |
MODPATH/frontend/views/site/aruhaz/biovisc_ortho_plus.php |
MODPATH/frontend/views/site/aruhaz/optivisc_20.php |
MODPATH/frontend/views/site/aruhaz/syncordia.php |
MODPATH/frontend/views/site/aruhaz/hexacor.php |
MODPATH/frontend/views/site/aruhaz/resistar.php |
MODPATH/frontend/views/site/aruhaz/duocor.php |
Loaded extensions (53)
Core |
date |
ereg |
libxml |
openssl |
pcre |
zlib |
filter |
hash |
pcntl |
readline |
Reflection |
SPL |
session |
standard |
cgi-fcgi |
bcmath |
calendar |
ctype |
curl |
dom |
fileinfo |
ftp |
gd |
imap |
intl |
json |
mbstring |
mcrypt |
mysqlnd |
mysql |
mysqli |
PDO |
pdo_mysql |
pdo_pgsql |
pdo_sqlite |
pgsql |
Phar |
posix |
SimpleXML |
soap |
sockets |
sqlite3 |
tokenizer |
xml |
wddx |
xmlreader |
xmlrpc |
xmlwriter |
xsl |
zip |
mhash |
ionCube Loader |
$_SERVER
CONTEXT_DOCUMENT_ROOT |
string(39) "/home/synergohub/webshop.synergohub.com" |
CONTEXT_PREFIX |
string(0) "" |
DOCUMENT_ROOT |
string(39) "/home/synergohub/webshop.synergohub.com" |
GATEWAY_INTERFACE |
string(7) "CGI/1.1" |
HTTPS |
string(2) "on" |
HTTP_ACCEPT |
string(3) "*/*" |
HTTP_ACCEPT_ENCODING |
string(23) "gzip, br, zstd, deflate" |
HTTP_HOST |
string(19) "shop.synergohub.com" |
HTTP_USER_AGENT |
string(103) "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" |
PATH |
string(13) "/bin:/usr/bin" |
PHP_INI_SCAN_DIR |
string(67) "/opt/cpanel/ea-php56/root/etc:/opt/cpanel/ea-php56/root/etc/php.d:." |
QUERY_STRING |
string(0) "" |
REDIRECT_HTTPS |
string(2) "on" |
REDIRECT_SSL_TLS_SNI |
string(19) "shop.synergohub.com" |
REDIRECT_STATUS |
string(3) "200" |
REDIRECT_UNIQUE_ID |
string(27) "aVH0bOAH2TfTjairR_s5XQAAAAQ" |
REDIRECT_URL |
string(7) "/aruhaz" |
REMOTE_ADDR |
string(13) "216.73.216.85" |
REMOTE_PORT |
string(5) "14248" |
REQUEST_METHOD |
string(3) "GET" |
REQUEST_SCHEME |
string(5) "https" |
REQUEST_URI |
string(7) "/aruhaz" |
SCRIPT_FILENAME |
string(49) "/home/synergohub/webshop.synergohub.com/index.php" |
SCRIPT_NAME |
string(10) "/index.php" |
SERVER_ADDR |
string(14) "185.51.191.204" |
SERVER_ADMIN |
string(29) "webmaster@shop.synergohub.com" |
SERVER_NAME |
string(19) "shop.synergohub.com" |
SERVER_PORT |
string(3) "443" |
SERVER_PROTOCOL |
string(8) "HTTP/1.1" |
SERVER_SIGNATURE |
string(0) "" |
SERVER_SOFTWARE |
string(6) "Apache" |
SSL_TLS_SNI |
string(19) "shop.synergohub.com" |
TZ |
string(15) "Europe/Budapest" |
UNIQUE_ID |
string(27) "aVH0bOAH2TfTjairR_s5XQAAAAQ" |
ORIG_PATH_INFO |
string(7) "/aruhaz" |
ORIG_PATH_TRANSLATED |
string(49) "/home/synergohub/webshop.synergohub.com/index.php" |
PHP_SELF |
string(10) "/index.php" |
REQUEST_TIME_FLOAT |
float 1766978668,26 |
REQUEST_TIME |
integer 1766978668 |
argv |
array(0) |
argc |
integer 0 |
Database_Exception [ 1046 ]:
MODPATH/database/classes/kohana/database/mysql.php [ 194 ]
189 {
190 // This benchmark is worthless
191 Profiler::delete($benchmark);
192 }
193
194 throw new Database_Exception(':error [ :query ]',
195 array(':error' => mysql_error($this->_connection), ':query' => $sql),
196 mysql_errno($this->_connection));
197 }
198
199 if (isset($benchmark))
-
MODPATH/database/classes/kohana/database/mysql.php [ 359 ] » Kohana_Database_MySQL->query(arguments)
0integer 1
1string(33) "SHOW FULL COLUMNS FROM `products`"2bool FALSE
354 $result = $this->query(Database::SELECT, 'SHOW FULL COLUMNS FROM '.$table.' LIKE '.$this->quote($like), FALSE); 355 } 356 else 357 { 358 // Find all column names 359 $result = $this->query(Database::SELECT, 'SHOW FULL COLUMNS FROM '.$table, FALSE); 360 } 361 362 $count = 0; 363 $columns = array(); 364 foreach ($result as $row) -
MODPATH/orm/classes/kohana/orm.php [ 1668 ] » Kohana_Database_MySQL->list_columns(arguments)
0string(8) "products"1663 * @return array 1664 */ 1665 public function list_columns() 1666 { 1667 // Proxy to database 1668 return $this->_db->list_columns($this->_table_name); 1669 } 1670 1671 /** 1672 * Returns an ORM model for the given one-one related alias 1673 * -
MODPATH/orm/classes/kohana/orm.php [ 444 ] » Kohana_ORM->list_columns()
439 $this->_table_columns = ORM::$_column_cache[$this->_object_name]; 440 } 441 else 442 { 443 // Grab column information from database 444 $this->_table_columns = $this->list_columns(); 445 446 // Load column cache 447 ORM::$_column_cache[$this->_object_name] = $this->_table_columns; 448 } 449 } -
MODPATH/orm/classes/kohana/orm.php [ 389 ] » Kohana_ORM->reload_columns()
384 { 385 $this->{$property} = $value; 386 } 387 388 // Load column information 389 $this->reload_columns(); 390 391 // Clear initial model state 392 $this->clear(); 393 } 394 -
APPPATH/classes/orm.php [ 59 ] » Kohana_ORM->_initialize()
54 private $old = array(); 55 private $new = array(); 56 57 public function __construct($id = NULL) 58 { 59 $this->_initialize(); 60 61 if ($id !== NULL) 62 { 63 if (is_array($id)) 64 { -
MODPATH/orm/classes/kohana/orm.php [ 46 ] » ORM->__construct(arguments)
0integer 10
41 public static function factory($model, $id = NULL) 42 { 43 // Set class name 44 $model = 'Model_'.$model; 45 46 return new $model($id); 47 } 48 49 /** 50 * "Has one" relationships 51 * @var array -
MODPATH/frontend/views/site/aruhaz/syncordia_duocor.php [ 7 ] » Kohana_ORM::factory(arguments)
0string(7) "product"1integer 10
2 <div class="product product_syncordia_duocor"> 3 <!-- <div class="ribbon ribbon-cyan"><div>Ingyenes kiszállítás</div></div> --> 4 <!-- <div class="ribbon ribbon-red">Két havi adag</div> --> 5 6 <div class="priceline"> 7 <?php echo Controller_Site::formatPrice((int) ORM::Factory('product', 10)->getGrossPrice());?> Ft 8 </div> 9 10 <div class="titleline"> 11 <img src="/img/aruhaz/syncordia_duocor_box.png" width="114" height="114" alt="<?php echo ORM::Factory('product' , 10)->name; ?>" /> 12 <?php echo ORM::Factory('product', 10)->name;?> -
SYSPATH/classes/kohana/view.php [ 61 ] » include(arguments)
0string(95) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/aruhaz/syncordia_duocor.php"56 ob_start(); 57 58 try 59 { 60 // Load the view within the current scope 61 include $kohana_view_filename; 62 } 63 catch (Exception $e) 64 { 65 // Delete the output buffer 66 ob_end_clean(); -
SYSPATH/classes/kohana/view.php [ 348 ] » Kohana_View::capture(arguments)
0string(95) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/aruhaz/syncordia_duocor.php"1array(2) ( "kohana_view_filename" => string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/aruhaz.php" "kohana_view_data" => array(0) )
343 { 344 throw new View_Exception('You must set the file to use within your view before rendering'); 345 } 346 347 // Combine local and global data and capture the output 348 return View::capture($this->_file, $this->_data); 349 } 350 351 } -
SYSPATH/classes/kohana/view.php [ 228 ] » Kohana_View->render()
223 */ 224 public function __toString() 225 { 226 try 227 { 228 return $this->render(); 229 } 230 catch (Exception $e) 231 { 232 /** 233 * Display the exception message. -
MODPATH/frontend/views/site/aruhaz.php [ 87 ] » Kohana_View->__toString()
82 83 <!-- duocor --> 84 <?php echo View::factory('site/aruhaz/duocor', get_defined_vars()); ?> 85 86 <!-- syncordia_duocor --> 87 <?php echo View::factory('site/aruhaz/syncordia_duocor', get_defined_vars()); ?> 88 89 <!-- hexacor_duocor --> 90 <?php echo View::factory('site/aruhaz/hexacor_duocor', get_defined_vars()); ?> 91 92 <!-- syncartil_3 --> -
SYSPATH/classes/kohana/view.php [ 61 ] » include(arguments)
0string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/aruhaz.php"56 ob_start(); 57 58 try 59 { 60 // Load the view within the current scope 61 include $kohana_view_filename; 62 } 63 catch (Exception $e) 64 { 65 // Delete the output buffer 66 ob_end_clean(); -
SYSPATH/classes/kohana/view.php [ 348 ] » Kohana_View::capture(arguments)
0string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/aruhaz.php"1array(0)343 { 344 throw new View_Exception('You must set the file to use within your view before rendering'); 345 } 346 347 // Combine local and global data and capture the output 348 return View::capture($this->_file, $this->_data); 349 } 350 351 } -
SYSPATH/classes/kohana/view.php [ 228 ] » Kohana_View->render()
223 */ 224 public function __toString() 225 { 226 try 227 { 228 return $this->render(); 229 } 230 catch (Exception $e) 231 { 232 /** 233 * Display the exception message. -
MODPATH/frontend/views/site/layout.php [ 238 ] » Kohana_View->__toString()
233 <?php endif; ?> 234 </div><!-- header --> 235 236 <div id="content"> 237 238 <?php echo @$content; ?> 239 240 </div><!-- content --> 241 242 <div class="clear"></div> 243 -
SYSPATH/classes/kohana/view.php [ 61 ] » include(arguments)
0string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/layout.php"56 ob_start(); 57 58 try 59 { 60 // Load the view within the current scope 61 include $kohana_view_filename; 62 } 63 catch (Exception $e) 64 { 65 // Delete the output buffer 66 ob_end_clean(); -
SYSPATH/classes/kohana/view.php [ 348 ] » Kohana_View::capture(arguments)
0string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/layout.php"1array(4) ( "user" => bool FALSE "cartnum" => integer 0 "bodyclass" => string(7) "webshop" "content" => object View(2)
{ protected _file => string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/aruhaz.php" protected _data => array(0) })343 { 344 throw new View_Exception('You must set the file to use within your view before rendering'); 345 } 346 347 // Combine local and global data and capture the output 348 return View::capture($this->_file, $this->_data); 349 } 350 351 } -
SYSPATH/classes/kohana/controller/template.php [ 44 ] » Kohana_View->render()
39 */ 40 public function after() 41 { 42 if ($this->auto_render === TRUE) 43 { 44 $this->response->body($this->template->render()); 45 } 46 47 parent::after(); 48 } 49 -
SYSPATH/classes/kohana/controller.php [ 87 ] » Kohana_Controller_Template->after()
82 83 // Execute the action itself 84 $this->{$action}(); 85 86 // Execute the "after action" method 87 $this->after(); 88 89 // Return the response 90 return $this->response; 91 } 92 -
{PHP internal call} » Kohana_Controller->execute()
-
SYSPATH/classes/kohana/request/client/internal.php [ 97 ] » ReflectionMethod->invoke(arguments)
0object Controller_Site(4)
{ public template => object View(2){ protected _file => string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/layout.php" protected _data => array(4) ( "user" => bool FALSE "cartnum" => integer 0 "bodyclass" => string(7) "webshop" "content" => object View(2)public auto_render => bool TRUE public request => object Request(19){ protected _file => string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/aruhaz.php" protected _data => array(0) }) }{ protected _requested_with => NULL protected _method => string(3) "GET" protected _protocol => string(8) "HTTP/1.1" protected _secure => bool TRUE protected _referrer => NULL protected _route => object Route(5)public response => object Response(5){ protected _filters => array(0) protected _uri => string(6) "aruhaz" protected _regex => array(0) protected _defaults => array(2) ( "controller" => string(4) "site" "action" => string(6) "aruhaz" ) protected _route_regex => string(12) "#^aruhaz$#uD" }protected _routes => array(0) protected _header => object HTTP_Header(0){ }protected _body => NULL protected _directory => string(0) "" protected _controller => string(4) "Site" protected _action => string(6) "aruhaz" protected _uri => string(6) "aruhaz" protected _external => bool FALSE protected _params => array(0) protected _get => array(0) protected _post => array(0) protected _cookies => array(0) protected _client => object Request_Client_Internal(9){ protected _previous_environment => NULL protected _cache => NULL protected _follow => bool FALSE protected _follow_headers => array(1) ( 0 => string(13) "Authorization" ) protected _strict_redirect => bool TRUE protected _header_callbacks => array(1) ( "Location" => string(34) "Request_Client::on_header_location" ) protected _max_callback_depth => integer 5 protected _callback_depth => integer 1 protected _callback_params => array(0) }}{ protected _status => integer 200 protected _header => object HTTP_Header(0)}{ }protected _body => string(0) "" protected _cookies => array(0) protected _protocol => string(8) "HTTP/1.1" }92 93 // Create a new instance of the controller 94 $controller = $class->newInstance($request, $response); 95 96 // Run the controller's execute() method 97 $response = $class->getMethod('execute')->invoke($controller); 98 99 if ( ! $response instanceof Response) 100 { 101 // Controller failed to return a Response. 102 throw new Kohana_Exception('Controller failed to return a Response'); -
SYSPATH/classes/kohana/request/client.php [ 114 ] » Kohana_Request_Client_Internal->execute_request(arguments)
0object Request(19)
{ protected _requested_with => NULL protected _method => string(3) "GET" protected _protocol => string(8) "HTTP/1.1" protected _secure => bool TRUE protected _referrer => NULL protected _route => object Route(5){ protected _filters => array(0) protected _uri => string(6) "aruhaz" protected _regex => array(0) protected _defaults => array(2) ( "controller" => string(4) "site" "action" => string(6) "aruhaz" ) protected _route_regex => string(12) "#^aruhaz$#uD" }protected _routes => array(0) protected _header => object HTTP_Header(0){ }protected _body => NULL protected _directory => string(0) "" protected _controller => string(4) "Site" protected _action => string(6) "aruhaz" protected _uri => string(6) "aruhaz" protected _external => bool FALSE protected _params => array(0) protected _get => array(0) protected _post => array(0) protected _cookies => array(0) protected _client => object Request_Client_Internal(9){ protected _previous_environment => NULL protected _cache => NULL protected _follow => bool FALSE protected _follow_headers => array(1) ( 0 => string(13) "Authorization" ) protected _strict_redirect => bool TRUE protected _header_callbacks => array(1) ( "Location" => string(34) "Request_Client::on_header_location" ) protected _max_callback_depth => integer 5 protected _callback_depth => integer 1 protected _callback_params => array(0) }}1object Response(5)
{ protected _status => integer 200 protected _header => object HTTP_Header(0){ }protected _body => string(0) "" protected _cookies => array(0) protected _protocol => string(8) "HTTP/1.1" }109 $orig_response = $response = Response::factory(array('_protocol' => $request->protocol())); 110 111 if (($cache = $this->cache()) instanceof HTTP_Cache) 112 return $cache->execute($this, $request, $response); 113 114 $response = $this->execute_request($request, $response); 115 116 // Execute response callbacks 117 foreach ($this->header_callbacks() as $header => $callback) 118 { 119 if ($response->headers($header)) -
SYSPATH/classes/kohana/request.php [ 986 ] » Kohana_Request_Client->execute(arguments)
0object Request(19)
{ protected _requested_with => NULL protected _method => string(3) "GET" protected _protocol => string(8) "HTTP/1.1" protected _secure => bool TRUE protected _referrer => NULL protected _route => object Route(5){ protected _filters => array(0) protected _uri => string(6) "aruhaz" protected _regex => array(0) protected _defaults => array(2) ( "controller" => string(4) "site" "action" => string(6) "aruhaz" ) protected _route_regex => string(12) "#^aruhaz$#uD" }protected _routes => array(0) protected _header => object HTTP_Header(0){ }protected _body => NULL protected _directory => string(0) "" protected _controller => string(4) "Site" protected _action => string(6) "aruhaz" protected _uri => string(6) "aruhaz" protected _external => bool FALSE protected _params => array(0) protected _get => array(0) protected _post => array(0) protected _cookies => array(0) protected _client => object Request_Client_Internal(9){ protected _previous_environment => NULL protected _cache => NULL protected _follow => bool FALSE protected _follow_headers => array(1) ( 0 => string(13) "Authorization" ) protected _strict_redirect => bool TRUE protected _header_callbacks => array(1) ( "Location" => string(34) "Request_Client::on_header_location" ) protected _max_callback_depth => integer 5 protected _callback_depth => integer 1 protected _callback_params => array(0) }}981 throw new Request_Exception('Unable to execute :uri without a Kohana_Request_Client', array( 982 ':uri' => $this->_uri, 983 )); 984 } 985 986 return $this->_client->execute($this); 987 } 988 989 /** 990 * Returns whether this request is the initial request kohana received. 991 * Can be used to test for sub requests. -
DOCROOT/index.php [ 120 ] » Kohana_Request->execute()
115 /** 116 * Execute the main request. A source of the URI can be passed, eg: $_SERVER['PATH_INFO']. 117 * If no source is specified, the URI will be automatically detected. 118 */ 119 echo Request::factory(TRUE, array(), FALSE) 120 ->execute() 121 ->send_headers(TRUE) 122 ->body(); 123 }
Environment
Included files (115)
DOCROOT/index.php |
APPPATH/bootstrap.php |
SYSPATH/classes/kohana/core.php |
SYSPATH/classes/kohana.php |
SYSPATH/classes/i18n.php |
SYSPATH/classes/kohana/i18n.php |
SYSPATH/classes/http.php |
SYSPATH/classes/kohana/http.php |
SYSPATH/classes/kohana/exception.php |
SYSPATH/classes/kohana/kohana/exception.php |
SYSPATH/classes/log.php |
SYSPATH/classes/kohana/log.php |
SYSPATH/classes/config.php |
SYSPATH/classes/kohana/config.php |
SYSPATH/classes/log/file.php |
SYSPATH/classes/kohana/log/file.php |
SYSPATH/classes/log/writer.php |
SYSPATH/classes/kohana/log/writer.php |
SYSPATH/classes/config/file.php |
SYSPATH/classes/kohana/config/file.php |
SYSPATH/classes/kohana/config/file/reader.php |
SYSPATH/classes/kohana/config/reader.php |
SYSPATH/classes/kohana/config/source.php |
MODPATH/product/init.php |
SYSPATH/classes/route.php |
SYSPATH/classes/kohana/route.php |
MODPATH/email/init.php |
MODPATH/imagefly/init.php |
MODPATH/captcha/init.php |
MODPATH/admin/init.php |
MODPATH/frontend/init.php |
SYSPATH/classes/cookie.php |
SYSPATH/classes/kohana/cookie.php |
MODPATH/admin/classes/papertrail/log.php |
SYSPATH/classes/request.php |
SYSPATH/classes/kohana/request.php |
SYSPATH/classes/http/request.php |
SYSPATH/classes/kohana/http/request.php |
SYSPATH/classes/http/message.php |
SYSPATH/classes/kohana/http/message.php |
SYSPATH/classes/http/header.php |
SYSPATH/classes/kohana/http/header.php |
SYSPATH/classes/request/client/internal.php |
SYSPATH/classes/kohana/request/client/internal.php |
SYSPATH/classes/request/client.php |
SYSPATH/classes/kohana/request/client.php |
SYSPATH/classes/arr.php |
SYSPATH/classes/kohana/arr.php |
SYSPATH/classes/response.php |
SYSPATH/classes/kohana/response.php |
SYSPATH/classes/http/response.php |
SYSPATH/classes/kohana/http/response.php |
SYSPATH/classes/profiler.php |
SYSPATH/classes/kohana/profiler.php |
MODPATH/frontend/classes/controller/site.php |
SYSPATH/classes/controller/template.php |
SYSPATH/classes/kohana/controller/template.php |
SYSPATH/classes/controller.php |
SYSPATH/classes/kohana/controller.php |
SYSPATH/classes/view.php |
SYSPATH/classes/kohana/view.php |
SYSPATH/classes/session.php |
SYSPATH/classes/kohana/session.php |
SYSPATH/config/session.php |
MODPATH/database/config/session.php |
SYSPATH/classes/config/group.php |
SYSPATH/classes/kohana/config/group.php |
SYSPATH/classes/session/native.php |
SYSPATH/classes/kohana/session/native.php |
MODPATH/frontend/views/site/layout.php |
SYSPATH/classes/url.php |
SYSPATH/classes/kohana/url.php |
SYSPATH/classes/utf8.php |
SYSPATH/classes/kohana/utf8.php |
MODPATH/frontend/views/site/aruhaz.php |
MODPATH/frontend/views/site/aruhaz/css.php |
MODPATH/frontend/views/site/aruhaz/xynbio.php |
APPPATH/classes/orm.php |
MODPATH/orm/classes/kohana/orm.php |
SYSPATH/classes/model.php |
SYSPATH/classes/kohana/model.php |
MODPATH/product/classes/model/product.php |
SYSPATH/classes/inflector.php |
SYSPATH/classes/kohana/inflector.php |
SYSPATH/config/inflector.php |
MODPATH/database/classes/database.php |
MODPATH/database/classes/kohana/database.php |
MODPATH/database/config/database.php |
APPPATH/config/database.php |
MODPATH/database/classes/database/mysql.php |
MODPATH/database/classes/kohana/database/mysql.php |
MODPATH/database/classes/database/exception.php |
MODPATH/database/classes/kohana/database/exception.php |
SYSPATH/classes/debug.php |
SYSPATH/classes/kohana/debug.php |
SYSPATH/classes/date.php |
SYSPATH/classes/kohana/date.php |
SYSPATH/views/kohana/error.php |
MODPATH/frontend/views/site/aruhaz/mask.php |
MODPATH/frontend/views/site/aruhaz/novosseum.php |
MODPATH/frontend/views/site/aruhaz/neocartil.php |
MODPATH/frontend/views/site/aruhaz/fluxus_prostatae.php |
MODPATH/frontend/views/site/aruhaz/neocartil_pro.php |
MODPATH/frontend/views/site/aruhaz/resistar_pro.php |
MODPATH/frontend/views/site/aruhaz/yxor.php |
MODPATH/frontend/views/site/aruhaz/novosseum_dental.php |
MODPATH/frontend/views/site/aruhaz/optivisc.php |
MODPATH/frontend/views/site/aruhaz/optivisc_60.php |
MODPATH/frontend/views/site/aruhaz/biovisc_ortho_plus.php |
MODPATH/frontend/views/site/aruhaz/optivisc_20.php |
MODPATH/frontend/views/site/aruhaz/syncordia.php |
MODPATH/frontend/views/site/aruhaz/hexacor.php |
MODPATH/frontend/views/site/aruhaz/resistar.php |
MODPATH/frontend/views/site/aruhaz/duocor.php |
MODPATH/frontend/views/site/aruhaz/syncordia_duocor.php |
Loaded extensions (53)
Core |
date |
ereg |
libxml |
openssl |
pcre |
zlib |
filter |
hash |
pcntl |
readline |
Reflection |
SPL |
session |
standard |
cgi-fcgi |
bcmath |
calendar |
ctype |
curl |
dom |
fileinfo |
ftp |
gd |
imap |
intl |
json |
mbstring |
mcrypt |
mysqlnd |
mysql |
mysqli |
PDO |
pdo_mysql |
pdo_pgsql |
pdo_sqlite |
pgsql |
Phar |
posix |
SimpleXML |
soap |
sockets |
sqlite3 |
tokenizer |
xml |
wddx |
xmlreader |
xmlrpc |
xmlwriter |
xsl |
zip |
mhash |
ionCube Loader |
$_SERVER
CONTEXT_DOCUMENT_ROOT |
string(39) "/home/synergohub/webshop.synergohub.com" |
CONTEXT_PREFIX |
string(0) "" |
DOCUMENT_ROOT |
string(39) "/home/synergohub/webshop.synergohub.com" |
GATEWAY_INTERFACE |
string(7) "CGI/1.1" |
HTTPS |
string(2) "on" |
HTTP_ACCEPT |
string(3) "*/*" |
HTTP_ACCEPT_ENCODING |
string(23) "gzip, br, zstd, deflate" |
HTTP_HOST |
string(19) "shop.synergohub.com" |
HTTP_USER_AGENT |
string(103) "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" |
PATH |
string(13) "/bin:/usr/bin" |
PHP_INI_SCAN_DIR |
string(67) "/opt/cpanel/ea-php56/root/etc:/opt/cpanel/ea-php56/root/etc/php.d:." |
QUERY_STRING |
string(0) "" |
REDIRECT_HTTPS |
string(2) "on" |
REDIRECT_SSL_TLS_SNI |
string(19) "shop.synergohub.com" |
REDIRECT_STATUS |
string(3) "200" |
REDIRECT_UNIQUE_ID |
string(27) "aVH0bOAH2TfTjairR_s5XQAAAAQ" |
REDIRECT_URL |
string(7) "/aruhaz" |
REMOTE_ADDR |
string(13) "216.73.216.85" |
REMOTE_PORT |
string(5) "14248" |
REQUEST_METHOD |
string(3) "GET" |
REQUEST_SCHEME |
string(5) "https" |
REQUEST_URI |
string(7) "/aruhaz" |
SCRIPT_FILENAME |
string(49) "/home/synergohub/webshop.synergohub.com/index.php" |
SCRIPT_NAME |
string(10) "/index.php" |
SERVER_ADDR |
string(14) "185.51.191.204" |
SERVER_ADMIN |
string(29) "webmaster@shop.synergohub.com" |
SERVER_NAME |
string(19) "shop.synergohub.com" |
SERVER_PORT |
string(3) "443" |
SERVER_PROTOCOL |
string(8) "HTTP/1.1" |
SERVER_SIGNATURE |
string(0) "" |
SERVER_SOFTWARE |
string(6) "Apache" |
SSL_TLS_SNI |
string(19) "shop.synergohub.com" |
TZ |
string(15) "Europe/Budapest" |
UNIQUE_ID |
string(27) "aVH0bOAH2TfTjairR_s5XQAAAAQ" |
ORIG_PATH_INFO |
string(7) "/aruhaz" |
ORIG_PATH_TRANSLATED |
string(49) "/home/synergohub/webshop.synergohub.com/index.php" |
PHP_SELF |
string(10) "/index.php" |
REQUEST_TIME_FLOAT |
float 1766978668,26 |
REQUEST_TIME |
integer 1766978668 |
argv |
array(0) |
argc |
integer 0 |
Database_Exception [ 1046 ]:
MODPATH/database/classes/kohana/database/mysql.php [ 194 ]
189 {
190 // This benchmark is worthless
191 Profiler::delete($benchmark);
192 }
193
194 throw new Database_Exception(':error [ :query ]',
195 array(':error' => mysql_error($this->_connection), ':query' => $sql),
196 mysql_errno($this->_connection));
197 }
198
199 if (isset($benchmark))
-
MODPATH/database/classes/kohana/database/mysql.php [ 359 ] » Kohana_Database_MySQL->query(arguments)
0integer 1
1string(33) "SHOW FULL COLUMNS FROM `products`"2bool FALSE
354 $result = $this->query(Database::SELECT, 'SHOW FULL COLUMNS FROM '.$table.' LIKE '.$this->quote($like), FALSE); 355 } 356 else 357 { 358 // Find all column names 359 $result = $this->query(Database::SELECT, 'SHOW FULL COLUMNS FROM '.$table, FALSE); 360 } 361 362 $count = 0; 363 $columns = array(); 364 foreach ($result as $row) -
MODPATH/orm/classes/kohana/orm.php [ 1668 ] » Kohana_Database_MySQL->list_columns(arguments)
0string(8) "products"1663 * @return array 1664 */ 1665 public function list_columns() 1666 { 1667 // Proxy to database 1668 return $this->_db->list_columns($this->_table_name); 1669 } 1670 1671 /** 1672 * Returns an ORM model for the given one-one related alias 1673 * -
MODPATH/orm/classes/kohana/orm.php [ 444 ] » Kohana_ORM->list_columns()
439 $this->_table_columns = ORM::$_column_cache[$this->_object_name]; 440 } 441 else 442 { 443 // Grab column information from database 444 $this->_table_columns = $this->list_columns(); 445 446 // Load column cache 447 ORM::$_column_cache[$this->_object_name] = $this->_table_columns; 448 } 449 } -
MODPATH/orm/classes/kohana/orm.php [ 389 ] » Kohana_ORM->reload_columns()
384 { 385 $this->{$property} = $value; 386 } 387 388 // Load column information 389 $this->reload_columns(); 390 391 // Clear initial model state 392 $this->clear(); 393 } 394 -
APPPATH/classes/orm.php [ 59 ] » Kohana_ORM->_initialize()
54 private $old = array(); 55 private $new = array(); 56 57 public function __construct($id = NULL) 58 { 59 $this->_initialize(); 60 61 if ($id !== NULL) 62 { 63 if (is_array($id)) 64 { -
MODPATH/orm/classes/kohana/orm.php [ 46 ] » ORM->__construct(arguments)
0integer 9
41 public static function factory($model, $id = NULL) 42 { 43 // Set class name 44 $model = 'Model_'.$model; 45 46 return new $model($id); 47 } 48 49 /** 50 * "Has one" relationships 51 * @var array -
MODPATH/frontend/views/site/aruhaz/hexacor_duocor.php [ 7 ] » Kohana_ORM::factory(arguments)
0string(7) "product"1integer 9
2 <div class="product product_hexacor_duocor"> 3 <!-- <div class="ribbon ribbon-cyan"><div>Ingyenes kiszállítás</div></div> --> 4 <!-- <div class="ribbon ribbon-red">Két havi adag</div> --> 5 6 <div class="priceline"> 7 <?php echo Controller_Site::formatPrice((int) ORM::Factory('product', 9)->getGrossPrice());?> Ft 8 </div> 9 10 <div class="titleline"> 11 <img src="/img/aruhaz/hexacor_duocor_box.png" width="114" height="114" alt="<?php echo ORM::Factory('product' , 9)->name; ?>" /> 12 <?php echo ORM::Factory('product', 9)->name;?> -
SYSPATH/classes/kohana/view.php [ 61 ] » include(arguments)
0string(93) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/aruhaz/hexacor_duocor.php"56 ob_start(); 57 58 try 59 { 60 // Load the view within the current scope 61 include $kohana_view_filename; 62 } 63 catch (Exception $e) 64 { 65 // Delete the output buffer 66 ob_end_clean(); -
SYSPATH/classes/kohana/view.php [ 348 ] » Kohana_View::capture(arguments)
0string(93) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/aruhaz/hexacor_duocor.php"1array(2) ( "kohana_view_filename" => string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/aruhaz.php" "kohana_view_data" => array(0) )
343 { 344 throw new View_Exception('You must set the file to use within your view before rendering'); 345 } 346 347 // Combine local and global data and capture the output 348 return View::capture($this->_file, $this->_data); 349 } 350 351 } -
SYSPATH/classes/kohana/view.php [ 228 ] » Kohana_View->render()
223 */ 224 public function __toString() 225 { 226 try 227 { 228 return $this->render(); 229 } 230 catch (Exception $e) 231 { 232 /** 233 * Display the exception message. -
MODPATH/frontend/views/site/aruhaz.php [ 90 ] » Kohana_View->__toString()
85 86 <!-- syncordia_duocor --> 87 <?php echo View::factory('site/aruhaz/syncordia_duocor', get_defined_vars()); ?> 88 89 <!-- hexacor_duocor --> 90 <?php echo View::factory('site/aruhaz/hexacor_duocor', get_defined_vars()); ?> 91 92 <!-- syncartil_3 --> 93 <?php //echo View::factory('site/aruhaz/syncartil_3', get_defined_vars()); ?> 94 95 <?php /* <!-- neocartil_syncartil --> -
SYSPATH/classes/kohana/view.php [ 61 ] » include(arguments)
0string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/aruhaz.php"56 ob_start(); 57 58 try 59 { 60 // Load the view within the current scope 61 include $kohana_view_filename; 62 } 63 catch (Exception $e) 64 { 65 // Delete the output buffer 66 ob_end_clean(); -
SYSPATH/classes/kohana/view.php [ 348 ] » Kohana_View::capture(arguments)
0string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/aruhaz.php"1array(0)343 { 344 throw new View_Exception('You must set the file to use within your view before rendering'); 345 } 346 347 // Combine local and global data and capture the output 348 return View::capture($this->_file, $this->_data); 349 } 350 351 } -
SYSPATH/classes/kohana/view.php [ 228 ] » Kohana_View->render()
223 */ 224 public function __toString() 225 { 226 try 227 { 228 return $this->render(); 229 } 230 catch (Exception $e) 231 { 232 /** 233 * Display the exception message. -
MODPATH/frontend/views/site/layout.php [ 238 ] » Kohana_View->__toString()
233 <?php endif; ?> 234 </div><!-- header --> 235 236 <div id="content"> 237 238 <?php echo @$content; ?> 239 240 </div><!-- content --> 241 242 <div class="clear"></div> 243 -
SYSPATH/classes/kohana/view.php [ 61 ] » include(arguments)
0string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/layout.php"56 ob_start(); 57 58 try 59 { 60 // Load the view within the current scope 61 include $kohana_view_filename; 62 } 63 catch (Exception $e) 64 { 65 // Delete the output buffer 66 ob_end_clean(); -
SYSPATH/classes/kohana/view.php [ 348 ] » Kohana_View::capture(arguments)
0string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/layout.php"1array(4) ( "user" => bool FALSE "cartnum" => integer 0 "bodyclass" => string(7) "webshop" "content" => object View(2)
{ protected _file => string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/aruhaz.php" protected _data => array(0) })343 { 344 throw new View_Exception('You must set the file to use within your view before rendering'); 345 } 346 347 // Combine local and global data and capture the output 348 return View::capture($this->_file, $this->_data); 349 } 350 351 } -
SYSPATH/classes/kohana/controller/template.php [ 44 ] » Kohana_View->render()
39 */ 40 public function after() 41 { 42 if ($this->auto_render === TRUE) 43 { 44 $this->response->body($this->template->render()); 45 } 46 47 parent::after(); 48 } 49 -
SYSPATH/classes/kohana/controller.php [ 87 ] » Kohana_Controller_Template->after()
82 83 // Execute the action itself 84 $this->{$action}(); 85 86 // Execute the "after action" method 87 $this->after(); 88 89 // Return the response 90 return $this->response; 91 } 92 -
{PHP internal call} » Kohana_Controller->execute()
-
SYSPATH/classes/kohana/request/client/internal.php [ 97 ] » ReflectionMethod->invoke(arguments)
0object Controller_Site(4)
{ public template => object View(2){ protected _file => string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/layout.php" protected _data => array(4) ( "user" => bool FALSE "cartnum" => integer 0 "bodyclass" => string(7) "webshop" "content" => object View(2)public auto_render => bool TRUE public request => object Request(19){ protected _file => string(78) "/home/synergohub/webshop.synergohub.com/modules/frontend/views/site/aruhaz.php" protected _data => array(0) }) }{ protected _requested_with => NULL protected _method => string(3) "GET" protected _protocol => string(8) "HTTP/1.1" protected _secure => bool TRUE protected _referrer => NULL protected _route => object Route(5)public response => object Response(5){ protected _filters => array(0) protected _uri => string(6) "aruhaz" protected _regex => array(0) protected _defaults => array(2) ( "controller" => string(4) "site" "action" => string(6) "aruhaz" ) protected _route_regex => string(12) "#^aruhaz$#uD" }protected _routes => array(0) protected _header => object HTTP_Header(0){ }protected _body => NULL protected _directory => string(0) "" protected _controller => string(4) "Site" protected _action => string(6) "aruhaz" protected _uri => string(6) "aruhaz" protected _external => bool FALSE protected _params => array(0) protected _get => array(0) protected _post => array(0) protected _cookies => array(0) protected _client => object Request_Client_Internal(9){ protected _previous_environment => NULL protected _cache => NULL protected _follow => bool FALSE protected _follow_headers => array(1) ( 0 => string(13) "Authorization" ) protected _strict_redirect => bool TRUE protected _header_callbacks => array(1) ( "Location" => string(34) "Request_Client::on_header_location" ) protected _max_callback_depth => integer 5 protected _callback_depth => integer 1 protected _callback_params => array(0) }}{ protected _status => integer 200 protected _header => object HTTP_Header(0)}{ }protected _body => string(0) "" protected _cookies => array(0) protected _protocol => string(8) "HTTP/1.1" }92 93 // Create a new instance of the controller 94 $controller = $class->newInstance($request, $response); 95 96 // Run the controller's execute() method 97 $response = $class->getMethod('execute')->invoke($controller); 98 99 if ( ! $response instanceof Response) 100 { 101 // Controller failed to return a Response. 102 throw new Kohana_Exception('Controller failed to return a Response'); -
SYSPATH/classes/kohana/request/client.php [ 114 ] » Kohana_Request_Client_Internal->execute_request(arguments)
0object Request(19)
{ protected _requested_with => NULL protected _method => string(3) "GET" protected _protocol => string(8) "HTTP/1.1" protected _secure => bool TRUE protected _referrer => NULL protected _route => object Route(5){ protected _filters => array(0) protected _uri => string(6) "aruhaz" protected _regex => array(0) protected _defaults => array(2) ( "controller" => string(4) "site" "action" => string(6) "aruhaz" ) protected _route_regex => string(12) "#^aruhaz$#uD" }protected _routes => array(0) protected _header => object HTTP_Header(0){ }protected _body => NULL protected _directory => string(0) "" protected _controller => string(4) "Site" protected _action => string(6) "aruhaz" protected _uri => string(6) "aruhaz" protected _external => bool FALSE protected _params => array(0) protected _get => array(0) protected _post => array(0) protected _cookies => array(0) protected _client => object Request_Client_Internal(9){ protected _previous_environment => NULL protected _cache => NULL protected _follow => bool FALSE protected _follow_headers => array(1) ( 0 => string(13) "Authorization" ) protected _strict_redirect => bool TRUE protected _header_callbacks => array(1) ( "Location" => string(34) "Request_Client::on_header_location" ) protected _max_callback_depth => integer 5 protected _callback_depth => integer 1 protected _callback_params => array(0) }}1object Response(5)
{ protected _status => integer 200 protected _header => object HTTP_Header(0){ }protected _body => string(0) "" protected _cookies => array(0) protected _protocol => string(8) "HTTP/1.1" }109 $orig_response = $response = Response::factory(array('_protocol' => $request->protocol())); 110 111 if (($cache = $this->cache()) instanceof HTTP_Cache) 112 return $cache->execute($this, $request, $response); 113 114 $response = $this->execute_request($request, $response); 115 116 // Execute response callbacks 117 foreach ($this->header_callbacks() as $header => $callback) 118 { 119 if ($response->headers($header)) -
SYSPATH/classes/kohana/request.php [ 986 ] » Kohana_Request_Client->execute(arguments)
0object Request(19)
{ protected _requested_with => NULL protected _method => string(3) "GET" protected _protocol => string(8) "HTTP/1.1" protected _secure => bool TRUE protected _referrer => NULL protected _route => object Route(5){ protected _filters => array(0) protected _uri => string(6) "aruhaz" protected _regex => array(0) protected _defaults => array(2) ( "controller" => string(4) "site" "action" => string(6) "aruhaz" ) protected _route_regex => string(12) "#^aruhaz$#uD" }protected _routes => array(0) protected _header => object HTTP_Header(0){ }protected _body => NULL protected _directory => string(0) "" protected _controller => string(4) "Site" protected _action => string(6) "aruhaz" protected _uri => string(6) "aruhaz" protected _external => bool FALSE protected _params => array(0) protected _get => array(0) protected _post => array(0) protected _cookies => array(0) protected _client => object Request_Client_Internal(9){ protected _previous_environment => NULL protected _cache => NULL protected _follow => bool FALSE protected _follow_headers => array(1) ( 0 => string(13) "Authorization" ) protected _strict_redirect => bool TRUE protected _header_callbacks => array(1) ( "Location" => string(34) "Request_Client::on_header_location" ) protected _max_callback_depth => integer 5 protected _callback_depth => integer 1 protected _callback_params => array(0) }}981 throw new Request_Exception('Unable to execute :uri without a Kohana_Request_Client', array( 982 ':uri' => $this->_uri, 983 )); 984 } 985 986 return $this->_client->execute($this); 987 } 988 989 /** 990 * Returns whether this request is the initial request kohana received. 991 * Can be used to test for sub requests. -
DOCROOT/index.php [ 120 ] » Kohana_Request->execute()
115 /** 116 * Execute the main request. A source of the URI can be passed, eg: $_SERVER['PATH_INFO']. 117 * If no source is specified, the URI will be automatically detected. 118 */ 119 echo Request::factory(TRUE, array(), FALSE) 120 ->execute() 121 ->send_headers(TRUE) 122 ->body(); 123 }
Environment
Included files (116)
DOCROOT/index.php |
APPPATH/bootstrap.php |
SYSPATH/classes/kohana/core.php |
SYSPATH/classes/kohana.php |
SYSPATH/classes/i18n.php |
SYSPATH/classes/kohana/i18n.php |
SYSPATH/classes/http.php |
SYSPATH/classes/kohana/http.php |
SYSPATH/classes/kohana/exception.php |
SYSPATH/classes/kohana/kohana/exception.php |
SYSPATH/classes/log.php |
SYSPATH/classes/kohana/log.php |
SYSPATH/classes/config.php |
SYSPATH/classes/kohana/config.php |
SYSPATH/classes/log/file.php |
SYSPATH/classes/kohana/log/file.php |
SYSPATH/classes/log/writer.php |
SYSPATH/classes/kohana/log/writer.php |
SYSPATH/classes/config/file.php |
SYSPATH/classes/kohana/config/file.php |
SYSPATH/classes/kohana/config/file/reader.php |
SYSPATH/classes/kohana/config/reader.php |
SYSPATH/classes/kohana/config/source.php |
MODPATH/product/init.php |
SYSPATH/classes/route.php |
SYSPATH/classes/kohana/route.php |
MODPATH/email/init.php |
MODPATH/imagefly/init.php |
MODPATH/captcha/init.php |
MODPATH/admin/init.php |
MODPATH/frontend/init.php |
SYSPATH/classes/cookie.php |
SYSPATH/classes/kohana/cookie.php |
MODPATH/admin/classes/papertrail/log.php |
SYSPATH/classes/request.php |
SYSPATH/classes/kohana/request.php |
SYSPATH/classes/http/request.php |
SYSPATH/classes/kohana/http/request.php |
SYSPATH/classes/http/message.php |
SYSPATH/classes/kohana/http/message.php |
SYSPATH/classes/http/header.php |
SYSPATH/classes/kohana/http/header.php |
SYSPATH/classes/request/client/internal.php |
SYSPATH/classes/kohana/request/client/internal.php |
SYSPATH/classes/request/client.php |
SYSPATH/classes/kohana/request/client.php |
SYSPATH/classes/arr.php |
SYSPATH/classes/kohana/arr.php |
SYSPATH/classes/response.php |
SYSPATH/classes/kohana/response.php |
SYSPATH/classes/http/response.php |
SYSPATH/classes/kohana/http/response.php |
SYSPATH/classes/profiler.php |
SYSPATH/classes/kohana/profiler.php |
MODPATH/frontend/classes/controller/site.php |
SYSPATH/classes/controller/template.php |
SYSPATH/classes/kohana/controller/template.php |
SYSPATH/classes/controller.php |
SYSPATH/classes/kohana/controller.php |
SYSPATH/classes/view.php |
SYSPATH/classes/kohana/view.php |
SYSPATH/classes/session.php |
SYSPATH/classes/kohana/session.php |
SYSPATH/config/session.php |
MODPATH/database/config/session.php |
SYSPATH/classes/config/group.php |
SYSPATH/classes/kohana/config/group.php |
SYSPATH/classes/session/native.php |
SYSPATH/classes/kohana/session/native.php |
MODPATH/frontend/views/site/layout.php |
SYSPATH/classes/url.php |
SYSPATH/classes/kohana/url.php |
SYSPATH/classes/utf8.php |
SYSPATH/classes/kohana/utf8.php |
MODPATH/frontend/views/site/aruhaz.php |
MODPATH/frontend/views/site/aruhaz/css.php |
MODPATH/frontend/views/site/aruhaz/xynbio.php |
APPPATH/classes/orm.php |
MODPATH/orm/classes/kohana/orm.php |
SYSPATH/classes/model.php |
SYSPATH/classes/kohana/model.php |
MODPATH/product/classes/model/product.php |
SYSPATH/classes/inflector.php |
SYSPATH/classes/kohana/inflector.php |
SYSPATH/config/inflector.php |
MODPATH/database/classes/database.php |
MODPATH/database/classes/kohana/database.php |
MODPATH/database/config/database.php |
APPPATH/config/database.php |
MODPATH/database/classes/database/mysql.php |
MODPATH/database/classes/kohana/database/mysql.php |
MODPATH/database/classes/database/exception.php |
MODPATH/database/classes/kohana/database/exception.php |
SYSPATH/classes/debug.php |
SYSPATH/classes/kohana/debug.php |
SYSPATH/classes/date.php |
SYSPATH/classes/kohana/date.php |
SYSPATH/views/kohana/error.php |
MODPATH/frontend/views/site/aruhaz/mask.php |
MODPATH/frontend/views/site/aruhaz/novosseum.php |
MODPATH/frontend/views/site/aruhaz/neocartil.php |
MODPATH/frontend/views/site/aruhaz/fluxus_prostatae.php |
MODPATH/frontend/views/site/aruhaz/neocartil_pro.php |
MODPATH/frontend/views/site/aruhaz/resistar_pro.php |
MODPATH/frontend/views/site/aruhaz/yxor.php |
MODPATH/frontend/views/site/aruhaz/novosseum_dental.php |
MODPATH/frontend/views/site/aruhaz/optivisc.php |
MODPATH/frontend/views/site/aruhaz/optivisc_60.php |
MODPATH/frontend/views/site/aruhaz/biovisc_ortho_plus.php |
MODPATH/frontend/views/site/aruhaz/optivisc_20.php |
MODPATH/frontend/views/site/aruhaz/syncordia.php |
MODPATH/frontend/views/site/aruhaz/hexacor.php |
MODPATH/frontend/views/site/aruhaz/resistar.php |
MODPATH/frontend/views/site/aruhaz/duocor.php |
MODPATH/frontend/views/site/aruhaz/syncordia_duocor.php |
MODPATH/frontend/views/site/aruhaz/hexacor_duocor.php |
Loaded extensions (53)
Core |
date |
ereg |
libxml |
openssl |
pcre |
zlib |
filter |
hash |
pcntl |
readline |
Reflection |
SPL |
session |
standard |
cgi-fcgi |
bcmath |
calendar |
ctype |
curl |
dom |
fileinfo |
ftp |
gd |
imap |
intl |
json |
mbstring |
mcrypt |
mysqlnd |
mysql |
mysqli |
PDO |
pdo_mysql |
pdo_pgsql |
pdo_sqlite |
pgsql |
Phar |
posix |
SimpleXML |
soap |
sockets |
sqlite3 |
tokenizer |
xml |
wddx |
xmlreader |
xmlrpc |
xmlwriter |
xsl |
zip |
mhash |
ionCube Loader |
$_SERVER
CONTEXT_DOCUMENT_ROOT |
string(39) "/home/synergohub/webshop.synergohub.com" |
CONTEXT_PREFIX |
string(0) "" |
DOCUMENT_ROOT |
string(39) "/home/synergohub/webshop.synergohub.com" |
GATEWAY_INTERFACE |
string(7) "CGI/1.1" |
HTTPS |
string(2) "on" |
HTTP_ACCEPT |
string(3) "*/*" |
HTTP_ACCEPT_ENCODING |
string(23) "gzip, br, zstd, deflate" |
HTTP_HOST |
string(19) "shop.synergohub.com" |
HTTP_USER_AGENT |
string(103) "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" |
PATH |
string(13) "/bin:/usr/bin" |
PHP_INI_SCAN_DIR |
string(67) "/opt/cpanel/ea-php56/root/etc:/opt/cpanel/ea-php56/root/etc/php.d:." |
QUERY_STRING |
string(0) "" |
REDIRECT_HTTPS |
string(2) "on" |
REDIRECT_SSL_TLS_SNI |
string(19) "shop.synergohub.com" |
REDIRECT_STATUS |
string(3) "200" |
REDIRECT_UNIQUE_ID |
string(27) "aVH0bOAH2TfTjairR_s5XQAAAAQ" |
REDIRECT_URL |
string(7) "/aruhaz" |
REMOTE_ADDR |
string(13) "216.73.216.85" |
REMOTE_PORT |
string(5) "14248" |
REQUEST_METHOD |
string(3) "GET" |
REQUEST_SCHEME |
string(5) "https" |
REQUEST_URI |
string(7) "/aruhaz" |
SCRIPT_FILENAME |
string(49) "/home/synergohub/webshop.synergohub.com/index.php" |
SCRIPT_NAME |
string(10) "/index.php" |
SERVER_ADDR |
string(14) "185.51.191.204" |
SERVER_ADMIN |
string(29) "webmaster@shop.synergohub.com" |
SERVER_NAME |
string(19) "shop.synergohub.com" |
SERVER_PORT |
string(3) "443" |
SERVER_PROTOCOL |
string(8) "HTTP/1.1" |
SERVER_SIGNATURE |
string(0) "" |
SERVER_SOFTWARE |
string(6) "Apache" |
SSL_TLS_SNI |
string(19) "shop.synergohub.com" |
TZ |
string(15) "Europe/Budapest" |
UNIQUE_ID |
string(27) "aVH0bOAH2TfTjairR_s5XQAAAAQ" |
ORIG_PATH_INFO |
string(7) "/aruhaz" |
ORIG_PATH_TRANSLATED |
string(49) "/home/synergohub/webshop.synergohub.com/index.php" |
PHP_SELF |
string(10) "/index.php" |
REQUEST_TIME_FLOAT |
float 1766978668,26 |
REQUEST_TIME |
integer 1766978668 |
argv |
array(0) |
argc |
integer 0 |