ErrorException [ Notice ]:
APPPATH/classes/Helper/Markup.php [ 159 ]
154 }
155
156 public static function media_item($item, $size, $other = false, $others = array()) {
157 $caption = '';
158 $play = '';
159 switch ($item['kind']) {
160 case 'G':
161 $caption = (int) $item['photos'] . ' ' . __('photo');
162 $play = '';
163 break;
164 case 'V':
-
APPPATH/classes/Helper/Markup.php [ 159 ] » Kohana_Core::error_handler()
154 } 155 156 public static function media_item($item, $size, $other = false, $others = array()) { 157 $caption = ''; 158 $play = ''; 159 switch ($item['kind']) { 160 case 'G': 161 $caption = (int) $item['photos'] . ' ' . __('photo'); 162 $play = ''; 163 break; 164 case 'V':
-
APPPATH/views/Pages/media.php [ 38 ] » Helper_Markup::media_item()
33 <!-- end of class="media-left-col" --> 34 </section> 35 <section class="media-two-cols right"> 36 <div class="media-col-582 left"> 37 <?php // $articles=array_unique($articles,SORT_REGULAR); ?> 38 <?php if (!empty($articles[0])) echo Helper_Markup::media_item($articles[0], 582); ?> 39 <div class="media-col-382 left"> 40 <?php if (!empty($articles[1])) echo Helper_Markup::media_item($articles[1], 382); ?> 41 <div class="media-col-182 left"> 42 <?php if (!empty($articles[2])) echo Helper_Markup::media_item($articles[2], 182); ?> 43 </div>
-
SYSPATH/classes/Kohana/View.php [ 62 ] » include(arguments)
0
string(61) "/media/hdd/forua/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 [ 217 ] » Kohana_View->__toString()
212 </ul> 213 </div> 214 <a class="buttons next" href="#">right</a> 215 </div> 216 <div id="content" class="<?php echo $content_class; ?>"> 217 <?php echo $content ?> 218 <?php /* <a href="/article/1098367" style="color:silver;font-size:x-small"><strong>PR kak orujie</strong></a> */ ?> 219 </div> 220 <!-- end of class="wrapper" --> 221 <div id="top-link"><a href="#top"></a></div> 222 </div>
-
SYSPATH/classes/Kohana/View.php [ 62 ] » include(arguments)
0
string(66) "/media/hdd/forua/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 [ 138 ] » Kohana_Request->execute()
133 /** 134 * Execute the main request. A source of the URI can be passed, eg: $_SERVER['PATH_INFO']. 135 * If no source is specified, the URI will be automatically detected. 136 */ 137 echo Request::factory(TRUE, array(), FALSE) 138 ->execute() 139 ->send_headers(TRUE) 140 ->body(); 141 }
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 |
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/views/Frontpage_layout.php |
SYSPATH/classes/URL.php |
SYSPATH/classes/Kohana/URL.php |
DOCROOT/mm/bigmir_news.inc.php |
APPPATH/views/ads/adsense_top.inc.php |
APPPATH/views/Pages/media.php |
APPPATH/views/Blocks/mm_popular.php |
APPPATH/classes/Helper/Markup.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 (50)
Core |
date |
libxml |
openssl |
pcre |
zlib |
filter |
hash |
Reflection |
SPL |
session |
standard |
sodium |
cgi-fcgi |
mysqlnd |
PDO |
xml |
calendar |
ctype |
curl |
dom |
mbstring |
FFI |
fileinfo |
ftp |
gd |
gettext |
iconv |
imagick |
json |
exif |
memcache |
mysqli |
pdo_mysql |
pdo_pgsql |
pgsql |
Phar |
posix |
readline |
shmop |
SimpleXML |
sockets |
sysvmsg |
sysvsem |
sysvshm |
tokenizer |
xmlreader |
xmlwriter |
xsl |
Zend OPcache |
$_COOKIE
$_SERVER
USER |
string(8) "www-data" |
HOME |
string(8) "/var/www" |
HTTP_CF_CONNECTING_IP |
string(12) "18.117.77.73" |
HTTP_CONNECTION |
string(10) "Keep-Alive" |
HTTP_CDN_LOOP |
string(19) "cloudflare; loops=1" |
HTTP_CF_VISITOR |
string(18) "{"scheme":"https"}" |
HTTP_ACCEPT |
string(3) "*/*" |
HTTP_USER_AGENT |
string(103) "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])" |
HTTP_X_FORWARDED_PROTO |
string(5) "https" |
HTTP_X_FORWARDED_FOR |
string(12) "18.117.77.73" |
HTTP_ACCEPT_ENCODING |
string(8) "gzip, br" |
HTTP_CF_IPCOUNTRY |
string(2) "US" |
HTTP_HOST |
string(10) "for-ua.com" |
HTTP_COOKIE |
string(80) "PHPSESSID=9aq4nk3065pqlt90vsd7nv38r4; _vsid=61e72ca9-2db8-4fb8-86f1-b3cb340a32aa" |
HTTP_CF_RAY |
string(20) "8db86c0b9cc6115d-ORD" |
SCRIPT_FILENAME |
string(37) "/media/hdd/forua/for-ua.com/index.php" |
REDIRECT_STATUS |
string(3) "200" |
SERVER_NAME |
string(10) "for-ua.com" |
SERVER_PORT |
string(2) "80" |
SERVER_ADDR |
string(13) "91.195.52.164" |
REMOTE_PORT |
string(0) "" |
REMOTE_ADDR |
string(12) "18.117.77.73" |
SERVER_SOFTWARE |
string(12) "nginx/1.18.0" |
GATEWAY_INTERFACE |
string(7) "CGI/1.1" |
REQUEST_SCHEME |
string(4) "http" |
SERVER_PROTOCOL |
string(8) "HTTP/1.1" |
DOCUMENT_ROOT |
string(27) "/media/hdd/forua/for-ua.com" |
DOCUMENT_URI |
string(10) "/index.php" |
REQUEST_URI |
string(40) "/ru/multimedia/videos/all/2017-11-28/412" |
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 1730427798.5547 |
REQUEST_TIME |
integer 1730427798 |