ErrorException [ Notice ]:
APPPATH/views/Pages/media.php [ 26 ]
21 				<? } else { ?>
22 				<div class="col-xs-12 col-sm-12 col-md-12">
23 				<? } ?>
24 					<div class="inner">
25 						<span>
26 							<span class="date right"><?= $n['date'] ?></span>
27 						</span>
28 						<div class="post-item-title">
29 							<a href="<?= $n['link'] ?>"><?= $n['title'] ?></a>
30 						</div>
31 					</div>
		- 
				
APPPATH/views/Pages/media.php [ 26 ] » Kohana_Core::error_handler()
21 <? } else { ?> 22 <div class="col-xs-12 col-sm-12 col-md-12"> 23 <? } ?> 24 <div class="inner"> 25 <span> 26 <span class="date right"><?= $n['date'] ?></span> 27 </span> 28 <div class="post-item-title"> 29 <a href="<?= $n['link'] ?>"><?= $n['title'] ?></a> 30 </div> 31 </div> - 
				
SYSPATH/classes/Kohana/View.php [ 62 ] » include(arguments)
0string(53) "/var/www/for-ua.com/application/views/Pages/media.php"57 ob_start(); 58 59 try 60 { 61 // Load the view within the current scope 62 include $kohana_view_filename; 63 } 64 catch (Exception $e) 65 { 66 // Delete the output buffer 67 ob_end_clean(); - 
				
SYSPATH/classes/Kohana/View.php [ 359 ] » Kohana_View::capture()
354 { 355 throw new View_Exception('You must set the file to use within your view before rendering'); 356 } 357 358 // Combine local and global data and capture the output 359 return View::capture($this->_file, $this->_data); 360 } 361 362 } - 
				
SYSPATH/classes/Kohana/View.php [ 236 ] » Kohana_View->render()
231 */ 232 public function __toString() 233 { 234 try 235 { 236 return $this->render(); 237 } 238 catch (Exception $e) 239 { 240 /** 241 * Display the exception message. - 
				
APPPATH/views/Frontpage_layout.php [ 265 ] » Kohana_View->__toString()
260 }); 261 </script>*/?> 262 263 <div id="content"> 264 <div class="container"> 265 <?php echo $content ?> 266 </div> 267 </div> 268 269 <footer> 270 <div class="container"> - 
				
SYSPATH/classes/Kohana/View.php [ 62 ] » include(arguments)
0string(58) "/var/www/for-ua.com/application/views/Frontpage_layout.php"57 ob_start(); 58 59 try 60 { 61 // Load the view within the current scope 62 include $kohana_view_filename; 63 } 64 catch (Exception $e) 65 { 66 // Delete the output buffer 67 ob_end_clean(); - 
				
SYSPATH/classes/Kohana/View.php [ 359 ] » Kohana_View::capture()
354 { 355 throw new View_Exception('You must set the file to use within your view before rendering'); 356 } 357 358 // Combine local and global data and capture the output 359 return View::capture($this->_file, $this->_data); 360 } 361 362 } - 
				
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 - 
				
APPPATH/classes/Controller/Generic/Frontpage.php [ 86 ] » Kohana_Controller_Template->after()
81 $this->template->scripts = $this->scripts; 82 $this->template->run_scripts = $this->run_scripts; 83 $this->template->styles = $this->styles; 84 $this->template->title = $this->title; 85 //echo Debug::vars($this->request->route()); 86 parent::after(); 87 } 88 89 } - 
				
SYSPATH/classes/Kohana/Controller.php [ 87 ] » Controller_Generic_Frontpage->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 [ 94 ] » ReflectionMethod->invoke()
89 90 // Create a new instance of the controller 91 $controller = $class->newInstance($request, $response); 92 93 // Run the controller's execute() method 94 $response = $class->getMethod('execute')->invoke($controller); 95 96 if ( ! $response instanceof Response) 97 { 98 // Controller failed to return a Response. 99 throw new Kohana_Exception('Controller failed to return a Response'); - 
				
SYSPATH/classes/Kohana/Request/Client.php [ 114 ] » Kohana_Request_Client_Internal->execute_request()
109 $orig_response = $response = Response::factory(['_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 [ 1000 ] » Kohana_Request_Client->execute()
995 throw new Request_Exception('Unable to execute :uri without a Kohana_Request_Client', [ 996 ':uri' => $this->_uri, 997 ]); 998 } 999 1000 return $this->_client->execute($this); 1001 } 1002 1003 /** 1004 * Returns whether this request is the initial request Kohana received. 1005 * Can be used to test for sub requests. - 
				
DOCROOT/index.php [ 118 ] » Kohana_Request->execute()
113 /** 114 * Execute the main request. A source of the URI can be passed, eg: $_SERVER['PATH_INFO']. 115 * If no source is specified, the URI will be automatically detected. 116 */ 117 echo Request::factory(TRUE, array(), FALSE) 118 ->execute() 119 ->send_headers(TRUE) 120 ->body(); 121 } 
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 | 
				
SYSPATH/classes/Cookie.php | 
				
SYSPATH/classes/Kohana/Cookie.php | 
				
MODPATH/cache/classes/Cache.php | 
				
MODPATH/cache/classes/Kohana/Cache.php | 
				
SYSPATH/classes/Route.php | 
				
SYSPATH/classes/Kohana/Route.php | 
				
SYSPATH/classes/Arr.php | 
				
SYSPATH/classes/Kohana/Arr.php | 
				
MODPATH/cache/config/cache.php | 
				
APPPATH/config/cache.php | 
				
SYSPATH/classes/Config/Group.php | 
				
SYSPATH/classes/Kohana/Config/Group.php | 
				
MODPATH/cache/classes/Cache/Memcache.php | 
				
MODPATH/cache/classes/Kohana/Cache/Memcache.php | 
				
MODPATH/cache/classes/Cache/Arithmetic.php | 
				
MODPATH/cache/classes/Kohana/Cache/Arithmetic.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/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 | 
				
APPPATH/classes/Controller/Multimedia.php | 
				
APPPATH/classes/Controller/Generic/Frontpage.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 | 
				
APPPATH/classes/Helper/Common.php | 
				
SYSPATH/classes/Model.php | 
				
SYSPATH/classes/Kohana/Model.php | 
				
APPPATH/classes/Model/Static.php | 
				
APPPATH/classes/Model/Common.php | 
				
APPPATH/classes/Helper/Postgres.php | 
				
APPPATH/i18n/ua.php | 
				
APPPATH/classes/Model/Multimedia.php | 
				
MODPATH/database/classes/DB.php | 
				
MODPATH/database/classes/Kohana/DB.php | 
				
MODPATH/database/classes/Database.php | 
				
MODPATH/database/classes/Kohana/Database.php | 
				
MODPATH/database/classes/Database/Query.php | 
				
MODPATH/database/classes/Kohana/Database/Query.php | 
				
MODPATH/database/config/database.php | 
				
APPPATH/config/database.php | 
				
MODPATH/database/classes/Database/PostgreSQL.php | 
				
MODPATH/database/classes/Kohana/Database/PostgreSQL.php | 
				
MODPATH/database/classes/Database/PostgreSQL/Result.php | 
				
MODPATH/database/classes/Kohana/Database/PostgreSQL/Result.php | 
				
MODPATH/database/classes/Database/Result.php | 
				
MODPATH/database/classes/Kohana/Database/Result.php | 
				
SYSPATH/classes/Date.php | 
				
SYSPATH/classes/Kohana/Date.php | 
				
MODPATH/pagination/classes/Pagination.php | 
				
MODPATH/pagination/classes/Kohana/Pagination.php | 
				
MODPATH/pagination/config/pagination.php | 
				
APPPATH/config/pagination.php | 
				
APPPATH/classes/Model/Layout.php | 
				
APPPATH/classes/Model/Tag.php | 
				
APPPATH/classes/Model/Articles.php | 
				
APPPATH/views/Frontpage_layout.php | 
				
SYSPATH/classes/URL.php | 
				
SYSPATH/classes/Kohana/URL.php | 
				
APPPATH/views/Pages/media.php | 
				
SYSPATH/classes/Debug.php | 
				
SYSPATH/classes/Kohana/Debug.php | 
				
SYSPATH/views/kohana/error.php | 
				
SYSPATH/classes/UTF8.php | 
				
SYSPATH/classes/Kohana/UTF8.php | 
				
Loaded extensions (49)
Core | 
				
date | 
				
libxml | 
				
openssl | 
				
pcre | 
				
zlib | 
				
filter | 
				
hash | 
				
Reflection | 
				
SPL | 
				
session | 
				
standard | 
				
sodium | 
				
cgi-fcgi | 
				
PDO | 
				
xml | 
				
calendar | 
				
ctype | 
				
curl | 
				
dom | 
				
mbstring | 
				
FFI | 
				
fileinfo | 
				
ftp | 
				
gd | 
				
gettext | 
				
iconv | 
				
intl | 
				
json | 
				
exif | 
				
mcrypt | 
				
memcache | 
				
pdo_pgsql | 
				
pgsql | 
				
Phar | 
				
posix | 
				
readline | 
				
shmop | 
				
SimpleXML | 
				
sockets | 
				
sysvmsg | 
				
sysvsem | 
				
sysvshm | 
				
tokenizer | 
				
xmlreader | 
				
xmlwriter | 
				
xsl | 
				
zip | 
				
Zend OPcache | 
				
$_SERVER
USER | 
					string(8) "www-data" | 
				
HOME | 
					string(8) "/var/www" | 
				
HTTP_HOST | 
					string(10) "for-ua.com" | 
				
HTTP_ACCEPT_ENCODING | 
					string(23) "gzip, br, zstd, deflate" | 
				
HTTP_USER_AGENT | 
					string(103) "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" | 
				
HTTP_ACCEPT | 
					string(3) "*/*" | 
				
SCRIPT_FILENAME | 
					string(29) "/var/www/for-ua.com/index.php" | 
				
REDIRECT_STATUS | 
					string(3) "200" | 
				
SERVER_NAME | 
					string(10) "for-ua.com" | 
				
SERVER_PORT | 
					string(3) "443" | 
				
SERVER_ADDR | 
					string(13) "65.109.62.103" | 
				
REMOTE_USER | 
					string(0) "" | 
				
REMOTE_PORT | 
					string(5) "57230" | 
				
REMOTE_ADDR | 
					string(13) "216.73.216.97" | 
				
SERVER_SOFTWARE | 
					string(12) "nginx/1.27.1" | 
				
GATEWAY_INTERFACE | 
					string(7) "CGI/1.1" | 
				
HTTPS | 
					string(2) "on" | 
				
REQUEST_SCHEME | 
					string(5) "https" | 
				
SERVER_PROTOCOL | 
					string(8) "HTTP/1.1" | 
				
DOCUMENT_ROOT | 
					string(19) "/var/www/for-ua.com" | 
				
DOCUMENT_URI | 
					string(10) "/index.php" | 
				
REQUEST_URI | 
					string(43) "/ua/multimedia/galleries/all/2025-06-16/364" | 
				
SCRIPT_NAME | 
					string(10) "/index.php" | 
				
CONTENT_LENGTH | 
					string(0) "" | 
				
CONTENT_TYPE | 
					string(0) "" | 
				
REQUEST_METHOD | 
					string(3) "GET" | 
				
QUERY_STRING | 
					string(0) "" | 
				
FCGI_ROLE | 
					string(9) "RESPONDER" | 
				
PHP_SELF | 
					string(10) "/index.php" | 
				
REQUEST_TIME_FLOAT | 
					float 1762242567.3393  | 
				
REQUEST_TIME | 
					integer 1762242567  |