Инвестиции
Database_Exception [ 1064 ]:
MODPATH/database/classes/Kohana/Database/MySQLi.php [ 171 ]
166 {
167 // This benchmark is worthless
168 Profiler::delete($benchmark);
169 }
170
171 throw new Database_Exception(':error [ :query ]', array(
172 ':error' => $this->_connection->error,
173 ':query' => $sql
174 ), $this->_connection->errno);
175 }
176
-
MODPATH/database/classes/Kohana/Database/Query.php [ 251 ] » Kohana_Database_MySQLi->query(arguments)
0
integer 1
1
string(444) "SELECT `cher_city`.`id` AS `id`, `cher_city`.`title` AS `title`, `cher_city`.`keywords` AS `keywords`, `cher_city`.`description` …"
2
bool FALSE
3
array(0)
246 return new Database_Result_Cached($result, $sql, $as_object, $object_params); 247 } 248 } 249 250 // Execute the query 251 $result = $db->query($this->_type, $sql, $as_object, $object_params); 252 253 if (isset($cache_key) AND $this->_lifetime > 0) 254 { 255 // Cache the result array 256 Kohana::cache($cache_key, $result->as_array(), $this->_lifetime);
-
MODPATH/orm/classes/Kohana/ORM.php [ 1072 ] » Kohana_Database_Query->execute(arguments)
0
object Database_MySQLi(6)
{ protected _connection_id => string(40) "603ed132a00ea15f3b938247e19261c933f481ae" protected _identifier => string(1) "`" public last_query => string(383) "SELECT `cher_region`.`id` AS `id`, `cher_region`.`title` AS `title`, `cher_region`.`keywords` AS `keywords`, `cher_region`.`desc …" protected _instance => string(7) "default" protected _connection => object mysqli(19)
{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }
protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(29) "reales01.mysql.ukraine.com.ua" "database" => string(11) "reales01_db" "persistent" => bool FALSE ) "table_prefix" => string(5) "cher_" "charset" => string(4) "utf8" "caching" => bool FALSE "profiling" => bool TRUE ) }1067 return $result; 1068 } 1069 else 1070 { 1071 // Load the result as an associative array 1072 $result = $this->_db_builder->as_assoc()->execute($this->_db); 1073 1074 $this->reset(); 1075 1076 if ($result->count() === 1) 1077 {
-
MODPATH/orm/classes/Kohana/ORM.php [ 979 ] » Kohana_ORM->_load_result(arguments)
0
bool FALSE
974 } 975 } 976 977 $this->_build(Database::SELECT); 978 979 return $this->_load_result(FALSE); 980 } 981 982 /** 983 * Finds multiple database rows and returns an iterator of the rows found. 984 *
-
APPPATH/views/index/advertisement/v_products_list.php [ 42 ] » Kohana_ORM->find()
37 Ривьера - <span class="badge">Все</span>, 38 <?php endif; ?> 39 40 <?php 41 if (count($city_id) and $city_id[0]): 42 $title = ORM::factory('City')->where('id', 'in', $city_id)->find()->title; 43 ?> 44 Город - <span class=" badge badge-info"><?php echo $title ?></span>, 45 <?php else: ?> 46 Город - <span class=" badge">Все</span>, 47 <?php endif; ?>
-
SYSPATH/classes/Kohana/View.php [ 62 ] » include(arguments)
0
string(102) "/home/reales01/real-estate-montenegro.ru/www/application/views/index/advertisement/v_products_list.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(arguments)
0
string(102) "/home/reales01/real-estate-montenegro.ru/www/application/views/index/advertisement/v_products_list.php"
1
array(13) ( "search_str" => NULL "products" => object Database_MySQLi_Result(7)
{ protected _internal_row => integer 0 protected _query => string(2194) "SELECT `cher_product`.`id` AS `id`, `cher_product`.`title` AS `title`, `cher_product`.`keywords` AS `keywords`, `cher_product`.` …" protected _result => object mysqli_result(5)
"pagination" => object View(2){ public current_field => NULL public field_count => NULL public lengths => NULL public num_rows => NULL public type => NULL }
protected _total_rows => integer 40 protected _current_row => integer 0 protected _as_object => string(13) "Model_Product" protected _object_params => NULL }{ protected _file => string(80) "/home/reales01/real-estate-montenegro.ru/www/application/views/pagination/my.php" protected _data => array(5) ( "first_page" => bool FALSE "total_pages" => float 2 "last_page" => NULL "hr" => string(10) "/status/5/" "current_page" => integer 1 ) }
"status_id" => string(1) "5" "region_id" => string(4) "none" "type_id" => string(4) "none" "city_id" => string(4) "none" "cost1" => string(1) "0" "cost2" => string(7) "6000000" "top" => bool FALSE "price_sort" => string(3) "asc" "date_sort" => string(4) "desc" "sale" => bool FALSE )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/index/v_base.php [ 261 ] » Kohana_View->__toString()
256 <h2 class="flag fn"><?php echo $page_title ?></h2> 257 <hr /> 258 </div> 259 <?php endif; ?> 260 <?php foreach ($block_center as $cblock): ?> 261 <?php echo $cblock ?> 262 <?php endforeach ?> 263 </td> 264 <?php endif ?> 265 <!-- /Центральный блок--> 266 </div>
-
SYSPATH/classes/Kohana/View.php [ 62 ] » include(arguments)
0
string(79) "/home/reales01/real-estate-montenegro.ru/www/application/views/index/v_base.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(arguments)
0
string(79) "/home/reales01/real-estate-montenegro.ru/www/application/views/index/v_base.php"
1
array(45) ( "access_admin" => bool FALSE "keywords" => string(74) "Инвестициии в недвижимость в Черногории" "description" => string(74) "Инвестициии в недвижимость в Черногории" "site_name" => string(82) "Купить недвижимость на побережье Черногории" "site_description" => string(46) "Интернет-магазин товаров" "site_header" => string(0) "" "valuta" => NULL "page_title" => string(20) "Инвестиции" "title" => string(20) "Инвестиции" "styles" => array(11) ( 0 => string(29) "media/admin/bootstrap.min.css" 1 => string(48) "media/bootstrap/css/bootstrap-responsive.min.css" 2 => string(42) "media/fortawesome/css/font-awesome.min.css" 3 => string(64) "media/js/1.10.3.custom/css/start/jquery-ui-1.10.3.custom.min.css" 4 => string(19) "media/css/style.css" 5 => string(49) "media/js/fancy/source/jquery.fancybox.css?v=2.1.2" 6 => string(65) "media/js/fancy/source/helpers/jquery.fancybox-buttons.css?v=1.0.5" 7 => string(64) "media/js/fancy/source/helpers/jquery.fancybox-thumbs.css?v=1.0.7" 8 => string(36) "media/flexslider/demo/css/shCore.css" 9 => string(44) "media/flexslider/demo/css/shThemeDefault.css" 10 => string(31) "media/flexslider/flexslider.css" ) "scripts" => array(9) ( 0 => string(29) "media/js/jquery-1.10.2.min.js" 1 => string(36) "media/js/jquery-migrate-1.2.1.min.js" 2 => string(56) "media/js/1.10.3.custom/js/jquery-ui-1.10.3.custom.min.js" 3 => string(35) "media/bootstrap/js/bootstrap.min.js" 4 => string(50) "media/js/fancy/lib/jquery.mousewheel-3.0.6.pack.js" 5 => string(48) "media/js/fancy/source/jquery.fancybox.js?v=2.1.3" 6 => string(64) "media/js/fancy/source/helpers/jquery.fancybox-buttons.js?v=1.0.5" 7 => string(63) "media/js/fancy/source/helpers/jquery.fancybox-thumbs.js?v=1.0.7" 8 => string(62) "media/js/fancy/source/helpers/jquery.fancybox-media.js?v=1.0.5" ) "scripts_footer" => array(8) ( 0 => string(41) "media/flexslider/jquery.flexslider-min.js" 1 => string(34) "media/flexslider/demo/js/shCore.js" 2 => string(38) "media/flexslider/demo/js/shBrushXml.js" 3 => string(42) "media/flexslider/demo/js/shBrushJScript.js" 4 => string(41) "media/flexslider/demo/js/jquery.easing.js" 5 => string(45) "media/flexslider/demo/js/jquery.mousewheel.js" 6 => string(32) "media/flexslider/demo/js/demo.js" 7 => string(20) "media/js/myscript.js" ) "block_top" => NULL "block_top2" => NULL "block_search" => NULL "search" => NULL "block_footer" => NULL "block_left" => array(4) ( 0 => object Response(5)
{ protected _status => integer 200 protected _header => object HTTP_Header(0)
1 => object Response(5){ }
protected _body => string(3389) "<div class="well well-small"> <h3 class="flag2"> <a href="/exclusiveproperty" style="color: #fff !important" …" protected _cookies => array(0) protected _protocol => string(8) "HTTP/1.0" }{ protected _status => integer 200 protected _header => object HTTP_Header(0)
2 => object Response(5){ }
protected _body => string(812) " <div class="well well-small"> <article> <h3 class="flag2">как купить недвижимость в Черногории</h3> …" protected _cookies => array(0) protected _protocol => string(8) "HTTP/1.0" }{ protected _status => integer 200 protected _header => object HTTP_Header(0)
3 => object Response(5){ }
protected _body => string(3381) "<div class="well well-small"> <h3 class="flag2"> <a href="/realestateinvestment" style="color: #fff !importa …" protected _cookies => array(0) protected _protocol => string(8) "HTTP/1.0" }{ protected _status => integer 200 protected _header => object HTTP_Header(0)
) "block_center" => array(1) ( 0 => object View(2){ }
protected _body => string(3316) "<div class="well well-small"> <h3 class="flag2"> <a href="/newlyerectedbuilding" style="color: #fff !importa …" protected _cookies => array(0) protected _protocol => string(8) "HTTP/1.0" }{ protected _file => string(102) "/home/reales01/real-estate-montenegro.ru/www/application/views/index/advertisement/v_products_list.php" protected _data => array(13) ( "search_str" => NULL "products" => object Database_MySQLi_Result(7)
) "block_right" => NULL "block_bottom" => NULL "right_top" => array(1) ( 0 => object Response(5){ protected _internal_row => integer 0 protected _query => string(2194) "SELECT `cher_product`.`id` AS `id`, `cher_product`.`title` AS `title`, `cher_product`.`keywords` AS `keywords`, `cher_product`.` …" protected _result => object mysqli_result(5)
"pagination" => object View(2){ public current_field => NULL public field_count => NULL public lengths => NULL public num_rows => NULL public type => NULL }
protected _total_rows => integer 40 protected _current_row => integer 0 protected _as_object => string(13) "Model_Product" protected _object_params => NULL }{ protected _file => string(80) "/home/reales01/real-estate-montenegro.ru/www/application/views/pagination/my.php" protected _data => array(5) ( "first_page" => bool FALSE "total_pages" => float 2 "last_page" => NULL "hr" => string(10) "/status/5/" "current_page" => integer 1 ) }
"status_id" => string(1) "5" "region_id" => string(4) "none" "type_id" => string(4) "none" "city_id" => string(4) "none" "cost1" => string(1) "0" "cost2" => string(7) "6000000" "top" => bool FALSE "price_sort" => string(3) "asc" "date_sort" => string(4) "desc" "sale" => bool FALSE ) }{ protected _status => integer 200 protected _header => object HTTP_Header(0)
) "scrollamount" => NULL "min" => integer 0 "max" => integer 6000000 "spalen_value" => array(0) "vid_na_sea" => bool FALSE "do_sea" => bool FALSE "status_id" => integer 1 "region_id" => bool FALSE "city_id" => array(0) "top" => bool FALSE "sale" => bool FALSE "fixedpanel" => object Response(5){ }
protected _body => string(7279) "<div id="myCarousel" class="carousel slide" style="width: 100%; height: 250px; overflow: hidden; margin-bottom: 0px;"> <ol c …" protected _cookies => array(0) protected _protocol => string(8) "HTTP/1.0" }{ protected _status => integer 200 protected _header => object HTTP_Header(0)
"site_slogan" => string(251) "Продажа недвижимости в Черногории у моря, квартиры, студии, дома и виллы, отели и мини отели, коммерческая недвижимость по досту …" "pages_nav" => object Response(5){ }
protected _body => string(2476) "<style type="text/css"> #fixed-panel { right: 0px; top: 131px; width: 40px; position: fixed; …" protected _cookies => array(0) protected _protocol => string(8) "HTTP/1.0" }{ protected _status => integer 200 protected _header => object HTTP_Header(0)
"top_filters" => object Response(5){ }
protected _body => string(3301) "<nav class="navbar-inverse"> <div class="container"> <div class="navbar nav-pages"> <div class="navbar-i …" protected _cookies => array(0) protected _protocol => string(8) "HTTP/1.0" }{ protected _status => integer 200 protected _header => object HTTP_Header(0)
"center_top" => array(1) ( 0 => string(359) "<div class="pull-left"> <p style="text-align: justify;"> </p> <p style="text-align: justify;"> <a href="skype:reales …" ) "block_top_panel" => array(1) ( 0 => object Response(5){ }
protected _body => string(22924) "<div class="filter-nedv"> <form class="form-inline" method="post" action="/advertisement"> <div class="row-fluid"> …" protected _cookies => array(0) protected _protocol => string(8) "HTTP/1.0" }{ protected _status => integer 200 protected _header => object HTTP_Header(0)
) "block_footer1" => array(1) ( 0 => object Response(5){ }
protected _body => string(1156) "<ul> <li> <a href="http://real-estate-montenegro.ru/Main">Главная</a> …" protected _cookies => array(0) protected _protocol => string(8) "HTTP/1.0" }{ protected _status => integer 200 protected _header => object HTTP_Header(0)
) "block_footer2" => array(1) ( 0 => object Response(5){ }
protected _body => string(203) "<p> © Все права защищены</p> <p> <strong>e-mail: </strong>sales@real-estate-montenegro.ru</p> <p> <span style="font …" protected _cookies => array(0) protected _protocol => string(8) "HTTP/1.0" }{ protected _status => integer 200 protected _header => object HTTP_Header(0)
) "block_footer3" => array(1) ( 0 => object Response(5){ }
protected _body => string(53) "<p> Недвижимость за рубежом</p>" protected _cookies => array(0) protected _protocol => string(8) "HTTP/1.0" }{ protected _status => integer 200 protected _header => object HTTP_Header(0)
) "block_footer4" => array(1) ( 0 => object Response(5){ }
protected _body => string(265) "<p class="sales-agent"> Недвижимость в Черногории. Купить недвижимость в Черногории. Дома и виллы. Апартаменты с видом на море. …" protected _cookies => array(0) protected _protocol => string(8) "HTTP/1.0" }{ protected _status => integer 200 protected _header => object HTTP_Header(0)
) "block_footer5" => array(1) ( 0 => object Response(5){ }
protected _body => string(541) "<p> <span style="font-size:14px;">tel.: </span><span style="color: rgb(0, 0, 0); font-family: Arial, sans-serif; font-size …" protected _cookies => array(0) protected _protocol => string(8) "HTTP/1.0" }{ protected _status => integer 200 protected _header => object HTTP_Header(0)
) "content" => object View(2){ }
protected _body => string(0) "" protected _cookies => array(0) protected _protocol => string(8) "HTTP/1.0" }{ protected _file => string(102) "/home/reales01/real-estate-montenegro.ru/www/application/views/index/advertisement/v_products_list.php" protected _data => array(13) ( "search_str" => NULL "products" => object Database_MySQLi_Result(7)
){ protected _internal_row => integer 0 protected _query => string(2194) "SELECT `cher_product`.`id` AS `id`, `cher_product`.`title` AS `title`, `cher_product`.`keywords` AS `keywords`, `cher_product`.` …" protected _result => object mysqli_result(5)
"pagination" => object View(2){ public current_field => NULL public field_count => NULL public lengths => NULL public num_rows => NULL public type => NULL }
protected _total_rows => integer 40 protected _current_row => integer 0 protected _as_object => string(13) "Model_Product" protected _object_params => NULL }{ protected _file => string(80) "/home/reales01/real-estate-montenegro.ru/www/application/views/pagination/my.php" protected _data => array(5) ( "first_page" => bool FALSE "total_pages" => float 2 "last_page" => NULL "hr" => string(10) "/status/5/" "current_page" => integer 1 ) }
"status_id" => string(1) "5" "region_id" => string(4) "none" "type_id" => string(4) "none" "city_id" => string(4) "none" "cost1" => string(1) "0" "cost2" => string(7) "6000000" "top" => bool FALSE "price_sort" => string(3) "asc" "date_sort" => string(4) "desc" "sale" => bool FALSE ) }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
-
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)
0
object Controller_Index_Status(37)
{ public template => object View(2)
{ protected _file => string(79) "/home/reales01/real-estate-montenegro.ru/www/application/views/index/v_base.php" protected _data => array(45) ( "access_admin" => bool FALSE "keywords" => string(74) "Инвестициии в недвижимость в Черногории" "description" => string(74) "Инвестициии в недвижимость в Черногории" "site_name" => string(82) "Купить недвижимость на побережье Черногории" "site_description" => string(46) "Интернет-магазин товаров" "site_header" => string(0) "" "valuta" => NULL "page_title" => string(20) "Инвестиции" "title" => string(20) "Инвестиции" "styles" => array(11) ( 0 => string(29) "media/admin/bootstrap.min.css" 1 => string(48) "media/bootstrap/css/bootstrap-responsive.min.css" 2 => string(42) "media/fortawesome/css/font-awesome.min.css" 3 => string(64) "media/js/1.10.3.custom/css/start/jquery-ui-1.10.3.custom.min.css" 4 => string(19) "media/css/style.css" 5 => string(49) "media/js/fancy/source/jquery.fancybox.css?v=2.1.2" 6 => string(65) "media/js/fancy/source/helpers/jquery.fancybox-buttons.css?v=1.0.5" 7 => string(64) "media/js/fancy/source/helpers/jquery.fancybox-thumbs.css?v=1.0.7" 8 => string(36) "media/flexslider/demo/css/shCore.css" 9 => string(44) "media/flexslider/demo/css/shThemeDefault.css" 10 => string(31) "media/flexslider/flexslider.css" ) "scripts" => array(9) ( 0 => string(29) "media/js/jquery-1.10.2.min.js" 1 => string(36) "media/js/jquery-migrate-1.2.1.min.js" 2 => string(56) "media/js/1.10.3.custom/js/jquery-ui-1.10.3.custom.min.js" 3 => string(35) "media/bootstrap/js/bootstrap.min.js" 4 => string(50) "media/js/fancy/lib/jquery.mousewheel-3.0.6.pack.js" 5 => string(48) "media/js/fancy/source/jquery.fancybox.js?v=2.1.3" 6 => string(64) "media/js/fancy/source/helpers/jquery.fancybox-buttons.js?v=1.0.5" 7 => string(63) "media/js/fancy/source/helpers/jquery.fancybox-thumbs.js?v=1.0.7" 8 => string(62) "media/js/fancy/source/helpers/jquery.fancybox-media.js?v=1.0.5" ) "scripts_footer" => array(8) ( 0 => string(41) "media/flexslider/jquery.flexslider-min.js" 1 => string(34) "media/flexslider/demo/js/shCore.js" 2 => string(38) "media/flexslider/demo/js/shBrushXml.js" 3 => string(42) "media/flexslider/demo/js/shBrushJScript.js" 4 => string(41) "media/flexslider/demo/js/jquery.easing.js" 5 => string(45) "media/flexslider/demo/js/jquery.mousewheel.js" 6 => string(32) "media/flexslider/demo/js/demo.js" 7 => string(20) "media/js/myscript.js" ) "block_top" => NULL "block_top2" => NULL "block_search" => NULL "search" => NULL "block_footer" => NULL "block_left" => array(4) ( 0 => object Response(5)
protected user => NULL protected auth => object Auth_ORM(2){ protected _status => integer 200 protected _header => object HTTP_Header(0)
1 => object Response(5){ }
protected _body => string(3389) "<div class="well well-small"> <h3 class="flag2"> <a href="/exclusiveproperty" style="color: #fff !important" …" protected _cookies => array(0) protected _protocol => string(8) "HTTP/1.0" }{ protected _status => integer 200 protected _header => object HTTP_Header(0)
2 => object Response(5){ }
protected _body => string(812) " <div class="well well-small"> <article> <h3 class="flag2">как купить недвижимость в Черногории</h3> …" protected _cookies => array(0) protected _protocol => string(8) "HTTP/1.0" }{ protected _status => integer 200 protected _header => object HTTP_Header(0)
3 => object Response(5){ }
protected _body => string(3381) "<div class="well well-small"> <h3 class="flag2"> <a href="/realestateinvestment" style="color: #fff !importa …" protected _cookies => array(0) protected _protocol => string(8) "HTTP/1.0" }{ protected _status => integer 200 protected _header => object HTTP_Header(0)
) "block_center" => array(1) ( 0 => object View(2){ }
protected _body => string(3316) "<div class="well well-small"> <h3 class="flag2"> <a href="/newlyerectedbuilding" style="color: #fff !importa …" protected _cookies => array(0) protected _protocol => string(8) "HTTP/1.0" }{ protected _file => string(102) "/home/reales01/real-estate-montenegro.ru/www/application/views/index/advertisement/v_products_list.php" protected _data => array(13) ( "search_str" => NULL "products" => object Database_MySQLi_Result(7)
) "block_right" => NULL "block_bottom" => NULL "right_top" => array(1) ( 0 => object Response(5){ protected _internal_row => integer 0 protected _query => string(2194) "SELECT `cher_product`.`id` AS `id`, `cher_product`.`title` AS `title`, `cher_product`.`keywords` AS `keywords`, `cher_product`.` …" protected _result => object mysqli_result(5)
"pagination" => object View(2){ public current_field => NULL public field_count => NULL public lengths => NULL public num_rows => NULL public type => NULL }
protected _total_rows => integer 40 protected _current_row => integer 0 protected _as_object => string(13) "Model_Product" protected _object_params => NULL }{ protected _file => string(80) "/home/reales01/real-estate-montenegro.ru/www/application/views/pagination/my.php" protected _data => array(5) ( "first_page" => bool FALSE "total_pages" => float 2 "last_page" => NULL "hr" => string(10) "/status/5/" "current_page" => integer 1 ) }
"status_id" => string(1) "5" "region_id" => string(4) "none" "type_id" => string(4) "none" "city_id" => string(4) "none" "cost1" => string(1) "0" "cost2" => string(7) "6000000" "top" => bool FALSE "price_sort" => string(3) "asc" "date_sort" => string(4) "desc" "sale" => bool FALSE ) }{ protected _status => integer 200 protected _header => object HTTP_Header(0)
) "scrollamount" => NULL "min" => integer 0 "max" => integer 6000000 "spalen_value" => array(0) "vid_na_sea" => bool FALSE "do_sea" => bool FALSE "status_id" => integer 1 "region_id" => bool FALSE "city_id" => array(0) "top" => bool FALSE "sale" => bool FALSE "fixedpanel" => object Response(5){ }
protected _body => string(7279) "<div id="myCarousel" class="carousel slide" style="width: 100%; height: 250px; overflow: hidden; margin-bottom: 0px;"> <ol c …" protected _cookies => array(0) protected _protocol => string(8) "HTTP/1.0" }{ protected _status => integer 200 protected _header => object HTTP_Header(0)
"site_slogan" => string(251) "Продажа недвижимости в Черногории у моря, квартиры, студии, дома и виллы, отели и мини отели, коммерческая недвижимость по досту …" "pages_nav" => object Response(5){ }
protected _body => string(2476) "<style type="text/css"> #fixed-panel { right: 0px; top: 131px; width: 40px; position: fixed; …" protected _cookies => array(0) protected _protocol => string(8) "HTTP/1.0" }{ protected _status => integer 200 protected _header => object HTTP_Header(0)
"top_filters" => object Response(5){ }
protected _body => string(3301) "<nav class="navbar-inverse"> <div class="container"> <div class="navbar nav-pages"> <div class="navbar-i …" protected _cookies => array(0) protected _protocol => string(8) "HTTP/1.0" }{ protected _status => integer 200 protected _header => object HTTP_Header(0)
"center_top" => array(1) ( 0 => string(359) "<div class="pull-left"> <p style="text-align: justify;"> </p> <p style="text-align: justify;"> <a href="skype:reales …" ) "block_top_panel" => array(1) ( 0 => object Response(5){ }
protected _body => string(22924) "<div class="filter-nedv"> <form class="form-inline" method="post" action="/advertisement"> <div class="row-fluid"> …" protected _cookies => array(0) protected _protocol => string(8) "HTTP/1.0" }{ protected _status => integer 200 protected _header => object HTTP_Header(0)
) "block_footer1" => array(1) ( 0 => object Response(5){ }
protected _body => string(1156) "<ul> <li> <a href="http://real-estate-montenegro.ru/Main">Главная</a> …" protected _cookies => array(0) protected _protocol => string(8) "HTTP/1.0" }{ protected _status => integer 200 protected _header => object HTTP_Header(0)
) "block_footer2" => array(1) ( 0 => object Response(5){ }
protected _body => string(203) "<p> © Все права защищены</p> <p> <strong>e-mail: </strong>sales@real-estate-montenegro.ru</p> <p> <span style="font …" protected _cookies => array(0) protected _protocol => string(8) "HTTP/1.0" }{ protected _status => integer 200 protected _header => object HTTP_Header(0)
) "block_footer3" => array(1) ( 0 => object Response(5){ }
protected _body => string(53) "<p> Недвижимость за рубежом</p>" protected _cookies => array(0) protected _protocol => string(8) "HTTP/1.0" }{ protected _status => integer 200 protected _header => object HTTP_Header(0)
) "block_footer4" => array(1) ( 0 => object Response(5){ }
protected _body => string(265) "<p class="sales-agent"> Недвижимость в Черногории. Купить недвижимость в Черногории. Дома и виллы. Апартаменты с видом на море. …" protected _cookies => array(0) protected _protocol => string(8) "HTTP/1.0" }{ protected _status => integer 200 protected _header => object HTTP_Header(0)
) "block_footer5" => array(1) ( 0 => object Response(5){ }
protected _body => string(541) "<p> <span style="font-size:14px;">tel.: </span><span style="color: rgb(0, 0, 0); font-family: Arial, sans-serif; font-size …" protected _cookies => array(0) protected _protocol => string(8) "HTTP/1.0" }{ protected _status => integer 200 protected _header => object HTTP_Header(0)
) "content" => object View(2){ }
protected _body => string(0) "" protected _cookies => array(0) protected _protocol => string(8) "HTTP/1.0" }{ protected _file => string(102) "/home/reales01/real-estate-montenegro.ru/www/application/views/index/advertisement/v_products_list.php" protected _data => array(13) ( "search_str" => NULL "products" => object Database_MySQLi_Result(7)
) }{ protected _internal_row => integer 0 protected _query => string(2194) "SELECT `cher_product`.`id` AS `id`, `cher_product`.`title` AS `title`, `cher_product`.`keywords` AS `keywords`, `cher_product`.` …" protected _result => object mysqli_result(5)
"pagination" => object View(2){ public current_field => NULL public field_count => NULL public lengths => NULL public num_rows => NULL public type => NULL }
protected _total_rows => integer 40 protected _current_row => integer 0 protected _as_object => string(13) "Model_Product" protected _object_params => NULL }{ protected _file => string(80) "/home/reales01/real-estate-montenegro.ru/www/application/views/pagination/my.php" protected _data => array(5) ( "first_page" => bool FALSE "total_pages" => float 2 "last_page" => NULL "hr" => string(10) "/status/5/" "current_page" => integer 1 ) }
"status_id" => string(1) "5" "region_id" => string(4) "none" "type_id" => string(4) "none" "city_id" => string(4) "none" "cost1" => string(1) "0" "cost2" => string(7) "6000000" "top" => bool FALSE "price_sort" => string(3) "asc" "date_sort" => string(4) "desc" "sale" => bool FALSE ) }{ protected _session => object Session_Native(5)
protected cache => object Cache_File(2){ protected _name => string(7) "session" protected _lifetime => integer 43200 protected _encrypted => bool FALSE protected _data => array(10) ( "status_id" => string(1) "5" "type_id" => string(4) "none" "region_id" => string(4) "none" "city_id" => string(4) "none" "top" => bool FALSE "sale" => bool FALSE "cost1" => string(1) "0" "cost2" => string(7) "6000000" "search_pr" => array(0) "search_str" => NULL ) protected _destroyed => bool FALSE }
protected _config => object Config_Group(7){ public driver => string(3) "ORM" public hash_method => string(6) "sha256" public hash_key => string(16) "asjdhas6f2e12kas" public lifetime => integer 1209600 public session_type => string(6) "native" public session_key => string(9) "auth_user" public users => array(0) }
}{ protected _cache_dir => object SplFileInfo(0)
protected session => object Session_Native(5){ }
protected _config => array(4) ( "driver" => string(4) "file" "cache_dir" => string(62) "/home/reales01/real-estate-montenegro.ru/www/application/cache" "default_expire" => integer 3600 "ignore_on_delete" => array(3) ( 0 => string(10) ".gitignore" 1 => string(4) ".git" 2 => string(4) ".svn" ) ) }{ protected _name => string(7) "session" protected _lifetime => integer 43200 protected _encrypted => bool FALSE protected _data => array(10) ( "status_id" => string(1) "5" "type_id" => string(4) "none" "region_id" => string(4) "none" "city_id" => string(4) "none" "top" => bool FALSE "sale" => bool FALSE "cost1" => string(1) "0" "cost2" => string(7) "6000000" "search_pr" => array(0) "search_str" => NULL ) protected _destroyed => bool FALSE }
public status_id => string(1) "5" public type_id => string(4) "none" public region_id => string(4) "none" public city_id => string(4) "none" public top => bool FALSE public vid_na_sea => bool FALSE public do_sea => bool FALSE public spalen_value => array(0) public sale => bool FALSE public max => integer 6000000 public min => integer 0 public excluziv => bool FALSE public invest => bool FALSE public new => bool FALSE public sea => bool FALSE public cost1 => string(1) "0" public cost2 => string(7) "6000000" public value1 => string(1) "0" public value2 => string(7) "6000000" public price_sort => string(3) "asc" public date_sort => string(4) "desc" public limit => integer 40 public limit_kol_widget => string(1) "7" public filters_data => array(8) ( "spalen_value" => array(0) "vid_na_sea" => bool FALSE "do_sea" => bool FALSE "status_id" => integer 1 "region_id" => bool FALSE "city_id" => array(0) "top" => bool FALSE "sale" => bool FALSE ) public action => string(5) "index" public model => NULL public controller => string(6) "status" public search_pr => array(0) public search_str => NULL public auto_render => bool TRUE public request => object Request(19){ protected _requested_with => NULL protected _method => string(3) "GET" protected _protocol => string(8) "HTTP/1.0" protected _secure => bool FALSE protected _referrer => NULL protected _route => object Route(5)
public response => object Response(5){ protected _filters => array(0) protected _uri => string(22) "status(/<id>(/<page>))" protected _regex => array(0) protected _defaults => array(3) ( "directory" => string(5) "index" "action" => string(5) "index" "controller" => string(6) "status" ) protected _route_regex => string(66) "#^status(?:/(?P<id>[^/.,;?\n]++)(?:/(?P<page>[^/.,;?\n]++))?)?$#uD" }
protected _routes => array(0) protected _header => object HTTP_Header(0){ }
protected _body => NULL protected _directory => string(5) "Index" protected _controller => string(6) "Status" protected _action => string(5) "index" protected _uri => string(8) "status/5" protected _external => bool FALSE protected _params => array(1) ( "id" => string(1) "5" ) protected _get => array(1) ( "status/5" => string(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.0" }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)
0
object Request(19)
{ protected _requested_with => NULL protected _method => string(3) "GET" protected _protocol => string(8) "HTTP/1.0" protected _secure => bool FALSE protected _referrer => NULL protected _route => object Route(5)
{ protected _filters => array(0) protected _uri => string(22) "status(/<id>(/<page>))" protected _regex => array(0) protected _defaults => array(3) ( "directory" => string(5) "index" "action" => string(5) "index" "controller" => string(6) "status" ) protected _route_regex => string(66) "#^status(?:/(?P<id>[^/.,;?\n]++)(?:/(?P<page>[^/.,;?\n]++))?)?$#uD" }
protected _routes => array(0) protected _header => object HTTP_Header(0){ }
protected _body => NULL protected _directory => string(5) "Index" protected _controller => string(6) "Status" protected _action => string(5) "index" protected _uri => string(8) "status/5" protected _external => bool FALSE protected _params => array(1) ( "id" => string(1) "5" ) protected _get => array(1) ( "status/5" => string(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) }
}1
object 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.0" }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 [ 993 ] » Kohana_Request_Client->execute(arguments)
0
object Request(19)
{ protected _requested_with => NULL protected _method => string(3) "GET" protected _protocol => string(8) "HTTP/1.0" protected _secure => bool FALSE protected _referrer => NULL protected _route => object Route(5)
{ protected _filters => array(0) protected _uri => string(22) "status(/<id>(/<page>))" protected _regex => array(0) protected _defaults => array(3) ( "directory" => string(5) "index" "action" => string(5) "index" "controller" => string(6) "status" ) protected _route_regex => string(66) "#^status(?:/(?P<id>[^/.,;?\n]++)(?:/(?P<page>[^/.,;?\n]++))?)?$#uD" }
protected _routes => array(0) protected _header => object HTTP_Header(0){ }
protected _body => NULL protected _directory => string(5) "Index" protected _controller => string(6) "Status" protected _action => string(5) "index" protected _uri => string(8) "status/5" protected _external => bool FALSE protected _params => array(1) ( "id" => string(1) "5" ) protected _get => array(1) ( "status/5" => string(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) }
}988 throw new Request_Exception('Unable to execute :uri without a Kohana_Request_Client', array( 989 ':uri' => $this->_uri, 990 )); 991 } 992 993 return $this->_client->execute($this); 994 } 995 996 /** 997 * Returns whether this request is the initial request Kohana received. 998 * 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 (167)
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/Session.php |
SYSPATH/classes/Kohana/Session.php |
SYSPATH/classes/Cookie.php |
SYSPATH/classes/Kohana/Cookie.php |
SYSPATH/classes/Date.php |
SYSPATH/classes/Kohana/Date.php |
SYSPATH/classes/Route.php |
SYSPATH/classes/Kohana/Route.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 |
APPPATH/classes/Controller/Index/Status.php |
APPPATH/classes/Controller/Index.php |
APPPATH/classes/Controller/Base.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/config/session.php |
MODPATH/database/config/session.php |
APPPATH/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 |
APPPATH/config/settings.php |
MODPATH/cache/classes/Cache.php |
MODPATH/cache/classes/Kohana/Cache.php |
MODPATH/cache/config/cache.php |
APPPATH/config/cache.php |
MODPATH/cache/classes/Cache/File.php |
MODPATH/cache/classes/Kohana/Cache/File.php |
MODPATH/cache/classes/Cache/GarbageCollect.php |
MODPATH/cache/classes/Kohana/Cache/GarbageCollect.php |
MODPATH/auth/classes/Auth.php |
MODPATH/auth/classes/Kohana/Auth.php |
MODPATH/auth/config/auth.php |
APPPATH/config/auth.php |
MODPATH/orm/classes/Auth/ORM.php |
MODPATH/orm/classes/Kohana/Auth/ORM.php |
SYSPATH/classes/UTF8.php |
SYSPATH/classes/Kohana/UTF8.php |
MODPATH/orm/classes/ORM.php |
MODPATH/orm/classes/Kohana/ORM.php |
SYSPATH/classes/Model.php |
SYSPATH/classes/Kohana/Model.php |
APPPATH/classes/Model/Option.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/MySQLi.php |
MODPATH/database/classes/Kohana/Database/MySQLi.php |
MODPATH/database/classes/Database/MySQLi/Result.php |
MODPATH/database/classes/Kohana/Database/MySQLi/Result.php |
MODPATH/database/classes/Database/Result.php |
MODPATH/database/classes/Kohana/Database/Result.php |
MODPATH/database/classes/DB.php |
MODPATH/database/classes/Kohana/DB.php |
MODPATH/database/classes/Database/Query/Builder/Select.php |
MODPATH/database/classes/Kohana/Database/Query/Builder/Select.php |
MODPATH/database/classes/Database/Query/Builder/Where.php |
MODPATH/database/classes/Kohana/Database/Query/Builder/Where.php |
MODPATH/database/classes/Database/Query/Builder.php |
MODPATH/database/classes/Kohana/Database/Query/Builder.php |
MODPATH/database/classes/Database/Query.php |
MODPATH/database/classes/Kohana/Database/Query.php |
APPPATH/i18n/ru.php |
APPPATH/classes/Model/Status.php |
APPPATH/classes/Controller/Widgets/Reklamaright.php |
APPPATH/classes/Model/Razdel.php |
MODPATH/orm-mptt/classes/Orm/Mptt.php |
MODPATH/orm-mptt/classes/Kohana/Orm/Mptt.php |
APPPATH/classes/Model/Page.php |
MODPATH/database/classes/Database/Query/Builder/Join.php |
MODPATH/database/classes/Kohana/Database/Query/Builder/Join.php |
APPPATH/views/widgets/w_reklamaright.php |
SYSPATH/classes/Text.php |
SYSPATH/classes/Kohana/Text.php |
APPPATH/classes/Controller/Widgets/Reklamaleft.php |
APPPATH/classes/Controller/Widgets/Klientionas.php |
APPPATH/views/widgets/w_klientionas.php |
APPPATH/classes/Controller/Widgets/Ochernogorii.php |
APPPATH/classes/Controller/Widgets/Filters.php |
APPPATH/classes/Model/Product.php |
APPPATH/classes/Model/Type.php |
APPPATH/classes/Model/Region.php |
APPPATH/classes/Model/City.php |
APPPATH/views/widgets/w_filters.php |
SYSPATH/classes/Form.php |
SYSPATH/classes/Kohana/Form.php |
SYSPATH/classes/HTML.php |
SYSPATH/classes/Kohana/HTML.php |
APPPATH/classes/Controller/Widgets/Invest.php |
APPPATH/views/widgets/w_invest.php |
APPPATH/classes/Model/Image.php |
APPPATH/classes/Controller/Widgets/Novostr.php |
APPPATH/classes/Controller/Widgets/New.php |
APPPATH/classes/Controller/Widgets/Exkluziv.php |
APPPATH/classes/Controller/Widgets/Topexkluziv.php |
APPPATH/views/widgets/w_topexkluziv.php |
SYSPATH/classes/URL.php |
SYSPATH/classes/Kohana/URL.php |
APPPATH/classes/Controller/Widgets/Logintop.php |
APPPATH/views/widgets/w_logintop.php |
APPPATH/classes/Controller/Widgets/Topmenu.php |
APPPATH/views/widgets/w_topmenu.php |
APPPATH/classes/Controller/Widgets/Viewtext.php |
APPPATH/views/widgets/w_viewtext.php |
APPPATH/classes/Controller/Widgets/Menutop.php |
APPPATH/views/widgets/w_menutop.php |
APPPATH/classes/Controller/Widgets/Fixedpanel.php |
APPPATH/views/widgets/w_fixedpanel.php |
MODPATH/database/classes/Database/Expression.php |
MODPATH/database/classes/Kohana/Database/Expression.php |
APPPATH/views/index/v_base.php |
APPPATH/views/index/advertisement/v_products_list.php |
MODPATH/database/classes/Database/Exception.php |
MODPATH/database/classes/Kohana/Database/Exception.php |
SYSPATH/classes/Debug.php |
SYSPATH/classes/Kohana/Debug.php |
SYSPATH/views/kohana/error.php |
Loaded extensions (64)
Core |
date |
libxml |
openssl |
pcre |
sqlite3 |
zlib |
bcmath |
bz2 |
calendar |
ctype |
curl |
dom |
hash |
fileinfo |
filter |
ftp |
gd |
gettext |
gmp |
SPL |
iconv |
session |
interbase |
intl |
json |
mbstring |
mcrypt |
standard |
mysqlnd |
pcntl |
mysqli |
PDO |
PDO_Firebird |
pdo_mysql |
pdo_pgsql |
pdo_sqlite |
pgsql |
Phar |
posix |
readline |
Reflection |
imap |
shmop |
SimpleXML |
soap |
sockets |
exif |
sysvmsg |
sysvsem |
sysvshm |
tidy |
tokenizer |
wddx |
xml |
xmlreader |
xmlrpc |
xmlwriter |
xsl |
zip |
litespeed |
timezonedb |
igbinary |
imagick |
$_SESSION
status_id |
string(1) "5" |
type_id |
string(4) "none" |
region_id |
string(4) "none" |
city_id |
string(4) "none" |
top |
bool FALSE |
sale |
bool FALSE |
cost1 |
string(1) "0" |
cost2 |
string(7) "6000000" |
search_pr |
array(0) |
search_str |
NULL |
$_GET
status/5 |
string(0) "" |
$_SERVER
TMPDIR |
string(26) "/home/reales01/.system/tmp" |
PHPRC |
string(60) "/home/reales01/.system/php/www.real-estate-montenegro.ru.ini" |
TEMP |
string(26) "/home/reales01/.system/tmp" |
PATH |
string(28) "/usr/local/bin:/usr/bin:/bin" |
PWD |
string(45) "/home/reales01/real-estate-montenegro.ru/www/" |
SHLVL |
string(1) "0" |
TMP |
string(26) "/home/reales01/.system/tmp" |
HTTP_ACCEPT |
string(63) "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8" |
HTTP_ACCEPT_ENCODING |
string(7) "br,gzip" |
HTTP_ACCEPT_LANGUAGE |
string(14) "en-US,en;q=0.5" |
HTTP_CONNECTION |
string(5) "close" |
CONTENT_LENGTH |
string(1) "0" |
HTTP_HOST |
string(25) "real-estate-montenegro.ru" |
HTTP_USER_AGENT |
string(40) "CCBot/2.0 (https://commoncrawl.org/faq/)" |
HTTP_IF_MODIFIED_SINCE |
string(29) "Tue, 19 Jan 2021 05:11:34 GMT" |
HTTP_GEOIP_COUNTRY_CODE |
string(2) "US" |
HTTP_X_FORWARDED_PROTO |
string(4) "http" |
REDIRECT_UNIQUE_ID |
string(27) "YIIugi-3MgnAqtXJr2YKFAAAAP8" |
REDIRECT_DETECTED_CMS |
string(9) "undefined" |
REDIRECT_SCRIPT_URL |
string(9) "/status/5" |
REDIRECT_SCRIPT_URI |
string(41) "http://real-estate-montenegro.ru/status/5" |
REDIRECT_vhost_id |
string(6) "313639" |
REDIRECT_account_id |
string(6) "107077" |
REDIRECT_PWD |
string(45) "/home/reales01/real-estate-montenegro.ru/www/" |
REDIRECT_TMP |
string(26) "/home/reales01/.system/tmp" |
REDIRECT_TEMP |
string(26) "/home/reales01/.system/tmp" |
REDIRECT_STATUS |
string(3) "200" |
UNIQUE_ID |
string(27) "YIIugi-3MgnAqtXJr2YKFAAAAP8" |
SCRIPT_URL |
string(9) "/status/5" |
SCRIPT_URI |
string(41) "http://real-estate-montenegro.ru/status/5" |
vhost_id |
string(6) "313639" |
account_id |
string(6) "107077" |
SERVER_SIGNATURE |
string(0) "" |
SERVER_SOFTWARE |
string(6) "Apache" |
SERVER_NAME |
string(25) "real-estate-montenegro.ru" |
SERVER_ADDR |
string(9) "127.0.0.1" |
SERVER_PORT |
string(2) "80" |
REMOTE_ADDR |
string(13) "18.232.53.118" |
DOCUMENT_ROOT |
string(45) "/home/reales01/real-estate-montenegro.ru/www/" |
REQUEST_SCHEME |
string(4) "http" |
CONTEXT_PREFIX |
string(0) "" |
CONTEXT_DOCUMENT_ROOT |
string(45) "/home/reales01/real-estate-montenegro.ru/www/" |
SERVER_ADMIN |
string(28) "real-estate-montenegro@ya.ru" |
SCRIPT_FILENAME |
string(54) "/home/reales01/real-estate-montenegro.ru/www/index.php" |
REMOTE_PORT |
string(5) "41496" |
REDIRECT_URL |
string(9) "/status/5" |
REDIRECT_QUERY_STRING |
string(8) "status/5" |
SERVER_PROTOCOL |
string(8) "HTTP/1.0" |
REQUEST_METHOD |
string(3) "GET" |
QUERY_STRING |
string(8) "status/5" |
REQUEST_URI |
string(9) "/status/5" |
SCRIPT_NAME |
string(10) "/index.php" |
PHP_SELF |
string(10) "/index.php" |
REQUEST_TIME_FLOAT |
float 1619144322.2903 |
REQUEST_TIME |
integer 1619144322 |