Cache_Exception [ 0 ]:
MODPATH/cache/classes/Kohana/Cache/File.php [ 151 ]
146 $lifetime = $data->fgets();
147
148 // If we're at the EOF at this point, corrupted!
149 if ($data->eof())
150 {
151 throw new Cache_Exception(__METHOD__.' corrupted cache file!');
152 }
153
154 $cache = '';
155
156 while ($data->eof() === FALSE)
-
APPPATH/classes/Helper.php [ 16 ] » Kohana_Cache_File->get(arguments)
0
string(4) "main"
11 * output array @config 12 */ 13 public function config($type = 'main') 14 { 15 //Достаем конфиг. Если возможно, то из кэша 16 if( !$config = Cache::instance()->get($type)) 17 { 18 $config = (array)Kohana::$config->load($type); 19 if($type == 'catalog_rows') 20 { 21 while (list($key, $val) = each($config))
-
APPPATH/classes/Helper.php [ 51 ] » Helper->config()
46 if( !$main_template = Cache::instance()->get($cache_token)) 47 { 48 $main_template = 'neo'; 49 /* Смена шаблона из админки */ 50 $Helper = new Helper(); 51 $global_config = $Helper->config(); 52 /* Загрузка основного шаблона */ 53 if(isset($global_config['global_template'])){$main_template = $global_config['global_template'];} 54 Cache::instance()->set($cache_token, $main_template, Date::YEAR); 55 } 56
-
APPPATH/classes/Controller/Module/Priceform.php [ 8 ] » Helper->get_template(arguments)
0
bool TRUE
3 class Controller_Module_Priceform extends Controller_Template{ 4 5 public function before() 6 { 7 $Helper = new Helper(); 8 $this->template = $Helper->get_template(true).'/module/contact/price'; 9 parent::before(); 10 } 11 12 public function action_index() 13 {
-
SYSPATH/classes/Kohana/Controller.php [ 69 ] » Controller_Module_Priceform->before()
64 * @return Response 65 */ 66 public function execute() 67 { 68 // Execute the "before action" method 69 $this->before(); 70 71 // Determine the action to use 72 $action = 'action_'.$this->request->action(); 73 74 // If the action doesn't exist, it's a 404
-
{PHP internal call} » Kohana_Controller->execute()
-
SYSPATH/classes/Kohana/Request/Client/Internal.php [ 97 ] » ReflectionMethod->invoke(arguments)
0
object Controller_Module_Priceform(4)
{ public template => string(8) "template" public auto_render => bool TRUE public request => object Request(19)
{ protected _requested_with => NULL protected _method => string(3) "GET" protected _protocol => NULL protected _secure => bool FALSE protected _referrer => NULL protected _route => object Route(5)
public response => object Response(5){ protected _filters => array(0) protected _uri => string(60) "module(/<controller>(/<action>(/<id>(/<param>(/<param2>)))))" protected _regex => array(0) protected _defaults => array(3) ( "directory" => string(6) "module" "controller" => string(5) "Index" "action" => string(5) "index" ) protected _route_regex => string(161) "#^module(?:/(?P<controller>[^/.,;?\n]++)(?:/(?P<action>[^/.,;?\n]++)(?:/(?P<id>[^/.,;?\n]++)(?:/(?P<param>[^/.,;?\n]++)(?:/(?P<p …" }
protected _routes => array(0) protected _header => object HTTP_Header(0){ }
protected _body => NULL protected _directory => string(6) "Module" protected _controller => string(9) "Priceform" protected _action => string(5) "index" protected _uri => string(22) "module/priceform/index" 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 => NULL }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 => NULL protected _secure => bool FALSE protected _referrer => NULL protected _route => object Route(5)
{ protected _filters => array(0) protected _uri => string(60) "module(/<controller>(/<action>(/<id>(/<param>(/<param2>)))))" protected _regex => array(0) protected _defaults => array(3) ( "directory" => string(6) "module" "controller" => string(5) "Index" "action" => string(5) "index" ) protected _route_regex => string(161) "#^module(?:/(?P<controller>[^/.,;?\n]++)(?:/(?P<action>[^/.,;?\n]++)(?:/(?P<id>[^/.,;?\n]++)(?:/(?P<param>[^/.,;?\n]++)(?:/(?P<p …" }
protected _routes => array(0) protected _header => object HTTP_Header(0){ }
protected _body => NULL protected _directory => string(6) "Module" protected _controller => string(9) "Priceform" protected _action => string(5) "index" protected _uri => string(22) "module/priceform/index" 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) }
}1
object Response(5)
{ protected _status => integer 200 protected _header => object HTTP_Header(0)
{ }
protected _body => string(0) "" protected _cookies => array(0) protected _protocol => NULL }109 $orig_response = $response = Response::factory(); 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 [ 990 ] » Kohana_Request_Client->execute(arguments)
0
object Request(19)
{ protected _requested_with => NULL protected _method => string(3) "GET" protected _protocol => NULL protected _secure => bool FALSE protected _referrer => NULL protected _route => object Route(5)
{ protected _filters => array(0) protected _uri => string(60) "module(/<controller>(/<action>(/<id>(/<param>(/<param2>)))))" protected _regex => array(0) protected _defaults => array(3) ( "directory" => string(6) "module" "controller" => string(5) "Index" "action" => string(5) "index" ) protected _route_regex => string(161) "#^module(?:/(?P<controller>[^/.,;?\n]++)(?:/(?P<action>[^/.,;?\n]++)(?:/(?P<id>[^/.,;?\n]++)(?:/(?P<param>[^/.,;?\n]++)(?:/(?P<p …" }
protected _routes => array(0) protected _header => object HTTP_Header(0){ }
protected _body => NULL protected _directory => string(6) "Module" protected _controller => string(9) "Priceform" protected _action => string(5) "index" protected _uri => string(22) "module/priceform/index" 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) }
}985 throw new Request_Exception('Unable to execute :uri without a Kohana_Request_Client', array( 986 ':uri' => $this->_uri, 987 )); 988 } 989 990 return $this->_client->execute($this); 991 } 992 993 /** 994 * Returns whether this request is the initial request Kohana received. 995 * Can be used to test for sub requests.
-
APPPATH/classes/Maincontroller.php [ 145 ] » Kohana_Request->execute()
140 foreach($get_modules as $get_modules_item) 141 { 142 $get_modules_item['config'] = unserialize($get_modules_item['config']); 143 if($this->show_module_new($get_modules_item)) 144 { 145 $module_data_item = Request::factory($get_modules_item['action'].'/'.$get_modules_item['config']['id_connect'])->execute()->send_headers()->body(); 146 $module_data_item = '<div class="module_'.$count_module++.' module_'.$get_modules_item['name'].' '.Arr::get($get_modules_item['config'], 'class', '').'">'.$module_data_item.'</div>'; 147 //array_push($module_data, $module_data_item); 148 $module_data .= $module_data_item; 149 } 150 }
-
APPPATH/classes/Maincontroller.php [ 56 ] » Maincontroller->load_modules()
51 $this->template->action = strtolower($this->request->action()); 52 $this->template->param = strtolower($this->request->param('id')); 53 54 $directory = $this->request->directory(); 55 /* Подгрузка общих модулей */ 56 if($directory != 'Module'){$this->load_modules();} 57 } 58 } 59 60 /** 61 * Получение шаблонов страницы
-
SYSPATH/classes/Kohana/Controller.php [ 69 ] » Maincontroller->before()
64 * @return Response 65 */ 66 public function execute() 67 { 68 // Execute the "before action" method 69 $this->before(); 70 71 // Determine the action to use 72 $action = 'action_'.$this->request->action(); 73 74 // If the action doesn't exist, it's a 404
-
{PHP internal call} » Kohana_Controller->execute()
-
SYSPATH/classes/Kohana/Request/Client/Internal.php [ 97 ] » ReflectionMethod->invoke(arguments)
0
object Controller_News(4)
{ public template => object View(2)
{ protected _file => string(76) "/home/d/detsadikru/furnituradv.ru/public_html/application/views/neo/html.php" protected _data => array(12) ( "controller" => string(4) "news" "action" => string(4) "show" "param" => string(42) "novinka-polkoderzhateli-skrytye-dlya-polok" "config" => array(23) ( "title" => string(17) "ООО «Эра»" "title_en" => string(7) "ERA LTD" "email" => string(34) "robot@martds.ru, erakhab@yandex.ru" "phone" => string(34) "8 (4212) 336-338, 8 (4212) 412-413" "adress" => string(78) "680031, г. Хабаровск, ул. Карла Маркса, 166, оф. 36а" "apps" => array(18) ( 0 => string(5) "magic" 1 => string(7) "catalog" 2 => string(6) "filter" 3 => string(6) "updown" 4 => string(4) "cart" 5 => string(8) "log_cart" 6 => string(6) "search" 7 => string(10) "log_search" 8 => string(12) "descriptions" 9 => string(6) "import" 10 => string(6) "wizard" 11 => string(4) "news" 12 => string(4) "page" 13 => string(15) "gallery_in_page" 14 => string(7) "sitemap" 15 => string(5) "users" 16 => string(12) "log_feedback" 17 => string(10) "breadcrumb" ) "catalog_display_cost" => string(4) "true" "catalog_tovar_on_page" => string(2) "24" "template" => string(8) "template" "search_rows_catalog" => array(2) ( 0 => string(7) "articul" 1 => string(5) "title" ) "sitemap" => array(4) ( 0 => string(5) "magic" 1 => string(7) "catalog" 2 => string(4) "news" 3 => string(5) "pages" ) "disqus_shortname" => string(8) "amurteam" "metrika" => string(0) "" "catalog_merge" => string(5) "false" "analitics" => string(0) "" "catalog_level" => string(1) "1" "catalog_main_photo" => string(5) "first" "main_level_catalog" => string(9) "furnitura" "catalog_main_template" => string(16) "itemscatalog-4-3" "global" => array(1) ( 0 => string(5) "magic" ) "smartbanners" => string(40) "a8bc0ab3fea49c27e1dea838f47448fa3294f5d1" "global_template" => string(3) "neo" "index_page" => string(7) "catalog" ) "config_apps" => array(18) ( 0 => string(5) "magic" 1 => string(7) "catalog" 2 => string(6) "filter" 3 => string(6) "updown" 4 => string(4) "cart" 5 => string(8) "log_cart" 6 => string(6) "search" 7 => string(10) "log_search" 8 => string(12) "descriptions" 9 => string(6) "import" 10 => string(6) "wizard" 11 => string(4) "news" 12 => string(4) "page" 13 => string(15) "gallery_in_page" 14 => string(7) "sitemap" 15 => string(5) "users" 16 => string(12) "log_feedback" 17 => string(10) "breadcrumb" ) "module_topmenu" => string(1547) "<div id="top_menu" class="row-fluid span12"> <ul class="offset2 row"> <li class="menu_top_items menu …" "module_after_page" => string(1003) "<div class="module_block_after_page"><div class="module_0 module_metrika "><!-- Yandex.Metrika counter --><script type="text/jav …" "module_content_bottom" => string(451) "<div class="module_block_content_bottom"><div class="module_0 module_share "><div class="clearfix"></div> <script type="text/jav …" "module_footer_address" => string(696) "<div class="module_block_footer_address"><div class="module_0 module_block_footer "><div class="block_footer-address"> ООО « …" "module_header_center" => string(243) "<div class="module_block_header_center"><div class="module_0 module_block_header span4"><div class="block_header-block"> 8 ( …" "module_header_left" => string(625) "<div class="module_block_header_left"><div class="module_0 module_searchform span3 margin-left-null"><div class="block_search ro …" "module_header_right" => string(432) "<div class="module_block_header_right"><div class="module_0 module_cart span3 margin-left-null"><div id="block_cart"> <div i …" ) }
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.1" protected _secure => bool FALSE protected _referrer => NULL protected _route => object Route(5)
public response => object Response(5){ protected _filters => array(0) protected _uri => string(53) "(<controller>(/<action>(/<id>(/<param>(/<param2>)))))" protected _regex => array(0) protected _defaults => array(2) ( "controller" => string(7) "Catalog" "action" => string(5) "index" ) protected _route_regex => string(154) "#^(?:(?P<controller>[^/.,;?\n]++)(?:/(?P<action>[^/.,;?\n]++)(?:/(?P<id>[^/.,;?\n]++)(?:/(?P<param>[^/.,;?\n]++)(?:/(?P<param2>[ …" }
protected _routes => array(0) protected _header => object HTTP_Header(0){ }
protected _body => NULL protected _directory => string(0) "" protected _controller => string(4) "News" protected _action => string(4) "show" protected _uri => string(52) "news/show/novinka-polkoderzhateli-skrytye-dlya-polok" protected _external => bool FALSE protected _params => array(1) ( "id" => string(42) "novinka-polkoderzhateli-skrytye-dlya-polok" ) 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 => NULL }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.1" protected _secure => bool FALSE protected _referrer => NULL protected _route => object Route(5)
{ protected _filters => array(0) protected _uri => string(53) "(<controller>(/<action>(/<id>(/<param>(/<param2>)))))" protected _regex => array(0) protected _defaults => array(2) ( "controller" => string(7) "Catalog" "action" => string(5) "index" ) protected _route_regex => string(154) "#^(?:(?P<controller>[^/.,;?\n]++)(?:/(?P<action>[^/.,;?\n]++)(?:/(?P<id>[^/.,;?\n]++)(?:/(?P<param>[^/.,;?\n]++)(?:/(?P<param2>[ …" }
protected _routes => array(0) protected _header => object HTTP_Header(0){ }
protected _body => NULL protected _directory => string(0) "" protected _controller => string(4) "News" protected _action => string(4) "show" protected _uri => string(52) "news/show/novinka-polkoderzhateli-skrytye-dlya-polok" protected _external => bool FALSE protected _params => array(1) ( "id" => string(42) "novinka-polkoderzhateli-skrytye-dlya-polok" ) 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) }
}1
object Response(5)
{ protected _status => integer 200 protected _header => object HTTP_Header(0)
{ }
protected _body => string(0) "" protected _cookies => array(0) protected _protocol => NULL }109 $orig_response = $response = Response::factory(); 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 [ 990 ] » Kohana_Request_Client->execute(arguments)
0
object Request(19)
{ protected _requested_with => NULL protected _method => string(3) "GET" protected _protocol => string(8) "HTTP/1.1" protected _secure => bool FALSE protected _referrer => NULL protected _route => object Route(5)
{ protected _filters => array(0) protected _uri => string(53) "(<controller>(/<action>(/<id>(/<param>(/<param2>)))))" protected _regex => array(0) protected _defaults => array(2) ( "controller" => string(7) "Catalog" "action" => string(5) "index" ) protected _route_regex => string(154) "#^(?:(?P<controller>[^/.,;?\n]++)(?:/(?P<action>[^/.,;?\n]++)(?:/(?P<id>[^/.,;?\n]++)(?:/(?P<param>[^/.,;?\n]++)(?:/(?P<param2>[ …" }
protected _routes => array(0) protected _header => object HTTP_Header(0){ }
protected _body => NULL protected _directory => string(0) "" protected _controller => string(4) "News" protected _action => string(4) "show" protected _uri => string(52) "news/show/novinka-polkoderzhateli-skrytye-dlya-polok" protected _external => bool FALSE protected _params => array(1) ( "id" => string(42) "novinka-polkoderzhateli-skrytye-dlya-polok" ) 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) }
}985 throw new Request_Exception('Unable to execute :uri without a Kohana_Request_Client', array( 986 ':uri' => $this->_uri, 987 )); 988 } 989 990 return $this->_client->execute($this); 991 } 992 993 /** 994 * Returns whether this request is the initial request Kohana received. 995 * 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 (138)
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/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/captcha/init.php |
SYSPATH/classes/Route.php |
SYSPATH/classes/Kohana/Route.php |
MODPATH/smartbannersclient/init.php |
MODPATH/cache/classes/Cache.php |
MODPATH/cache/classes/Kohana/Cache.php |
MODPATH/database/classes/Kohana/Config/Database.php |
MODPATH/database/classes/Config/Database/Writer.php |
MODPATH/database/classes/Kohana/Config/Database/Writer.php |
MODPATH/database/classes/Config/Database/Reader.php |
MODPATH/database/classes/Kohana/Config/Database/Reader.php |
SYSPATH/classes/Kohana/Config/Writer.php |
MODPATH/database/classes/Database.php |
MODPATH/database/classes/Kohana/Database.php |
SYSPATH/classes/Cookie.php |
SYSPATH/classes/Kohana/Cookie.php |
APPPATH/classes/Date.php |
SYSPATH/classes/Kohana/Date.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 |
APPPATH/classes/Controller/News.php |
APPPATH/classes/Maincontroller.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 |
MODPATH/cache/config/cache.php |
APPPATH/config/cache.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 |
MODPATH/database/config/database.php |
APPPATH/config/database.php |
SYSPATH/classes/Config/Group.php |
SYSPATH/classes/Kohana/Config/Group.php |
MODPATH/database/classes/Database/MySQLi.php |
MODPATH/database/classes/Database/MySQLi/Result.php |
MODPATH/database/classes/Database/Result.php |
MODPATH/database/classes/Kohana/Database/Result.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 |
APPPATH/classes/Helper.php |
MODPATH/auth/classes/Auth.php |
MODPATH/auth/classes/Kohana/Auth.php |
MODPATH/auth/config/auth.php |
SYSPATH/classes/Session.php |
SYSPATH/classes/Kohana/Session.php |
APPPATH/config/auth.php |
MODPATH/orm/classes/Auth/ORM.php |
MODPATH/orm/classes/Kohana/Auth/ORM.php |
SYSPATH/config/session.php |
MODPATH/database/config/session.php |
SYSPATH/classes/Session/Native.php |
SYSPATH/classes/Kohana/Session/Native.php |
APPPATH/classes/Controller/Module/Menu.php |
APPPATH/classes/Model/Menu.php |
MODPATH/database/classes/Model/Database.php |
MODPATH/database/classes/Kohana/Model/Database.php |
SYSPATH/classes/Model.php |
SYSPATH/classes/Kohana/Model.php |
APPPATH/classes/Model/Category.php |
APPPATH/views/neo/module/menu/top.php |
SYSPATH/classes/HTTP.php |
SYSPATH/classes/Kohana/HTTP.php |
APPPATH/classes/Model/Module.php |
APPPATH/classes/Controller/Module/Counters.php |
APPPATH/views/neo/module/counters/yandex.php |
APPPATH/classes/Controller/Module/Share.php |
APPPATH/views/neo/module/share/block.php |
APPPATH/classes/Controller/Module/Getany.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/neo/module/getany/block.php |
APPPATH/classes/Controller/Module/Searchform.php |
APPPATH/views/neo/module/search/form.php |
APPPATH/classes/Controller/Module/Cart.php |
APPPATH/views/neo/module/cart/block.php |
APPPATH/classes/Controller/Module/Newsblock.php |
APPPATH/views/neo/module/newsblock/block.php |
APPPATH/classes/Controller/Module/Priceform.php |
MODPATH/cache/classes/Cache/Exception.php |
MODPATH/cache/classes/Kohana/Cache/Exception.php |
SYSPATH/classes/Kohana/Exception.php |
SYSPATH/classes/Kohana/Kohana/Exception.php |
SYSPATH/classes/Debug.php |
SYSPATH/classes/Kohana/Debug.php |
SYSPATH/views/kohana/error.php |
SYSPATH/classes/HTML.php |
SYSPATH/classes/Kohana/HTML.php |
SYSPATH/classes/UTF8.php |
SYSPATH/classes/Kohana/UTF8.php |
Loaded extensions (87)
Core |
date |
ereg |
libxml |
openssl |
pcre |
sqlite3 |
zlib |
bcmath |
bz2 |
calendar |
ctype |
curl |
dba |
dom |
hash |
fileinfo |
filter |
ftp |
gd |
gettext |
gmp |
SPL |
iconv |
session |
interbase |
intl |
json |
ldap |
mbstring |
mcrypt |
mssql |
mysql |
mysqli |
standard |
PDO |
pdo_dblib |
PDO_Firebird |
pdo_mysql |
pdo_pgsql |
pdo_sqlite |
pgsql |
Phar |
posix |
pspell |
Reflection |
imap |
shmop |
SimpleXML |
soap |
sockets |
exif |
sysvmsg |
sysvsem |
sysvshm |
tidy |
tokenizer |
wddx |
xml |
xmlreader |
xmlrpc |
xmlwriter |
xsl |
zip |
apache2handler |
dbx |
dio |
ffmpeg |
geoip |
raphf |
imagick |
magickwand |
mailparse |
memcache |
mongo |
ncurses |
OAuth |
PDFlib |
propro |
http |
ssh2 |
timezonedb |
uploadprogress |
uuid |
mhash |
ionCube Loader |
Zend OPcache |
$_SERVER
REDIRECT_MEF_PROXY_ADDR |
string(9) "127.0.0.1" |
REDIRECT_UNIQUE_ID |
string(24) "YBJPaX8AAAEAAgw0X-UAAAAR" |
REDIRECT_SCRIPT_URL |
string(53) "/news/show/novinka-polkoderzhateli-skrytye-dlya-polok" |
REDIRECT_SCRIPT_URI |
string(74) "http://furnituradv.ru/news/show/novinka-polkoderzhateli-skrytye-dlya-polok" |
REDIRECT_HTTP_CGI_AUTHORIZATION |
string(0) "" |
REDIRECT_STATUS |
string(3) "200" |
MEF_PROXY_ADDR |
string(9) "127.0.0.1" |
UNIQUE_ID |
string(24) "YBJPaX8AAAEAAgw0X-UAAAAR" |
SCRIPT_URL |
string(53) "/news/show/novinka-polkoderzhateli-skrytye-dlya-polok" |
SCRIPT_URI |
string(74) "http://furnituradv.ru/news/show/novinka-polkoderzhateli-skrytye-dlya-polok" |
HTTP_CGI_AUTHORIZATION |
string(0) "" |
HTTP_HOST |
string(14) "furnituradv.ru" |
HTTP_X_FORWARDED_FOR |
string(14) "18.207.108.182" |
HTTP_X_FORWARDED_PORT |
string(2) "80" |
HTTP_X_FORWARDED_PROTO |
string(4) "http" |
HTTP_X_SECURITY |
string(2) "on" |
HTTP_USER_AGENT |
string(40) "CCBot/2.0 (https://commoncrawl.org/faq/)" |
HTTP_ACCEPT |
string(63) "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8" |
HTTP_ACCEPT_LANGUAGE |
string(14) "en-US,en;q=0.5" |
HTTP_IF_MODIFIED_SINCE |
string(29) "Mon, 21 Sep 2020 16:24:15 GMT" |
PATH |
string(90) "/bin:/sbin:/bin:/sbin:/usr/bin:/usr/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin" |
SERVER_SIGNATURE |
string(0) "" |
SERVER_SOFTWARE |
string(47) "Apache/2.2.29 (Gentoo) mod_dp/0.99.7 PHP/5.6.40" |
SERVER_NAME |
string(14) "furnituradv.ru" |
SERVER_ADDR |
string(9) "127.0.0.1" |
SERVER_PORT |
string(2) "80" |
REMOTE_ADDR |
string(14) "18.207.108.182" |
DOCUMENT_ROOT |
string(45) "/home/d/detsadikru/furnituradv.ru/public_html" |
SERVER_ADMIN |
string(15) "support@sweb.ru" |
SCRIPT_FILENAME |
string(55) "/home/d/detsadikru/furnituradv.ru/public_html/index.php" |
REMOTE_PORT |
string(5) "55540" |
REDIRECT_URL |
string(53) "/news/show/novinka-polkoderzhateli-skrytye-dlya-polok" |
GATEWAY_INTERFACE |
string(7) "CGI/1.1" |
SERVER_PROTOCOL |
string(8) "HTTP/1.1" |
REQUEST_METHOD |
string(3) "GET" |
QUERY_STRING |
string(0) "" |
REQUEST_URI |
string(53) "/news/show/novinka-polkoderzhateli-skrytye-dlya-polok" |
SCRIPT_NAME |
string(10) "/index.php" |
PATH_INFO |
string(53) "/news/show/novinka-polkoderzhateli-skrytye-dlya-polok" |
PATH_TRANSLATED |
string(120) "redirect:/index.php/news/show/novinka-polkoderzhateli-skrytye-dlya-polok/show/novinka-polkoderzhateli-skrytye-dlya-polok" |
PHP_SELF |
string(63) "/index.php/news/show/novinka-polkoderzhateli-skrytye-dlya-polok" |
REQUEST_TIME_FLOAT |
float 1611812713,546 |
REQUEST_TIME |
integer 1611812713 |
Цены на продукцию и другие детали уточняйте у менеджеров.