9 шаров-сердец (микс)
Cache_Exception [ 0 ]:
MODPATH/cache/classes/Kohana/Cache/File.php [ 151 ]
146 $lifetime = (int) $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 [ 62 ] » Kohana_Cache_File->get(arguments)
0
string(32) "9438be5f925d904f8445ede1c1ef4ce8"
57 * @return Kohana_Config_Group|mixed 58 */ 59 public static function get_file_config($config_name) 60 { 61 $cache_token = md5(PROJECT. SUBDOMAIN . $config_name); 62 if( !$config = Cache::instance()->get($cache_token)){ 63 $config = Kohana::$config->load($config_name); 64 if(Kohana::$caching){ 65 Cache::instance()->set($cache_token, $config, Date::YEAR); 66 } 67 }
-
APPPATH/classes/Model/Image.php [ 16 ] » Helper::get_file_config(arguments)
0
string(16) "subdomain.tables"
11 * @return string Алиас таблицы, если есть 12 */ 13 protected function sub_table($table, $type) 14 { 15 //Вставляем алиасы только для типов картинок с алиасами по контенту 16 $sub_tables = Helper::get_file_config('subdomain.tables'); 17 if(array_search($type, $sub_tables)){ 18 if(array_search($table, $sub_tables)){ 19 return $table . Helper::get_subdomain('db'); 20 }else{ 21 return $table;
-
APPPATH/classes/Model/Image.php [ 45 ] » Model_Image->sub_table(arguments)
0
string(6) "images"
1
string(7) "catalog"
40 } 41 42 public function get_imagesByIdconnect($id_connect, $type_connect, $limit = 999, $database_config = NULL) 43 { 44 return DB::select()->cached() 45 ->from($this->sub_table('images', $type_connect)) 46 ->where('id_connect', '=', $id_connect) 47 ->where('type_connect', '=', $type_connect) 48 ->limit($limit) 49 ->order_by('position', 'DESC') 50 ->order_by('param', 'DESC')
-
APPPATH/classes/Controller/Plugins/PhotoGallery.php [ 145 ] » Model_Image->get_imagesByIdconnect(arguments)
0
string(5) "10634"
1
string(7) "catalog"
2
string(5) "99999"
140 public function action_catalogItem() 141 { 142 $Model_Image = new Model_Image(); 143 $id_connect = $this->request->param('id'); 144 $count_images = $this->request->param('param', 999); 145 $data = $Model_Image->get_imagesByIdconnect($id_connect, 'catalog', $count_images); 146 147 foreach($data as $data_key => $data_value){ 148 if($data_key == 0){ 149 $data[$data_key]['size'] = 'big'; 150 }else{
-
SYSPATH/classes/Kohana/Controller.php [ 84 ] » Controller_Plugins_PhotoGallery->action_catalogItem()
79 array(':uri' => $this->request->uri()) 80 )->request($this->request); 81 } 82 83 // Execute the action itself 84 $this->{$action}(); 85 86 // Execute the "after action" method 87 $this->after(); 88 89 // Return the response
-
{PHP internal call} » Kohana_Controller->execute()
-
SYSPATH/classes/Kohana/Request/Client/Internal.php [ 97 ] » ReflectionMethod->invoke(arguments)
0
object Controller_Plugins_PhotoGallery(4)
{ public template => object View(2)
{ protected _file => string(87) "/var/www/af27.ru/application/views/default_rocket/plugins/photo-gallery/catalogItem.php" protected _data => array(0) }
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(72) "plugins(/<controller>(/<action>(/<id>(/<param>(/<param2>(/<param3>))))))" protected _regex => array(0) protected _defaults => array(3) ( "directory" => string(7) "plugins" "controller" => string(5) "Index" "action" => string(5) "index" ) protected _route_regex => string(192) "#^plugins(?:/(?P<controller>[^/.,;?\n]++)(?:/(?P<action>[^/.,;?\n]++)(?:/(?P<id>[^/.,;?\n]++)(?:/(?P<param>[^/.,;?\n]++)(?:/(?P< …" }
protected _routes => array(0) protected _header => object HTTP_Header(0){ }
protected _body => NULL protected _directory => string(7) "Plugins" protected _controller => string(12) "PhotoGallery" protected _action => string(11) "catalogItem" protected _uri => string(44) "plugins/PhotoGallery/catalogItem/10634/99999" protected _external => bool FALSE protected _params => array(2) ( "id" => string(5) "10634" "param" => string(5) "99999" ) protected _get => array(0) protected _post => array(0) protected _cookies => array(0) protected _client => object Request_Client_Internal(9){ protected _previous_environment => NULL protected _cache => NULL protected _follow => bool FALSE protected _follow_headers => array(1) ( 0 => string(13) "authorization" ) protected _strict_redirect => bool TRUE protected _header_callbacks => array(1) ( "Location" => string(34) "Request_Client::on_header_location" ) protected _max_callback_depth => integer 5 protected _callback_depth => integer 1 protected _callback_params => array(0) }
}{ protected _status => integer 200 protected _header => object HTTP_Header(0)
}{ }
protected _body => string(0) "" protected _cookies => array(0) protected _protocol => string(8) "HTTP/1.1" }92 93 // Create a new instance of the controller 94 $controller = $class->newInstance($request, $response); 95 96 // Run the controller's execute() method 97 $response = $class->getMethod('execute')->invoke($controller); 98 99 if ( ! $response instanceof Response) 100 { 101 // Controller failed to return a Response. 102 throw new Kohana_Exception('Controller failed to return a Response');
-
SYSPATH/classes/Kohana/Request/Client.php [ 114 ] » Kohana_Request_Client_Internal->execute_request(arguments)
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(72) "plugins(/<controller>(/<action>(/<id>(/<param>(/<param2>(/<param3>))))))" protected _regex => array(0) protected _defaults => array(3) ( "directory" => string(7) "plugins" "controller" => string(5) "Index" "action" => string(5) "index" ) protected _route_regex => string(192) "#^plugins(?:/(?P<controller>[^/.,;?\n]++)(?:/(?P<action>[^/.,;?\n]++)(?:/(?P<id>[^/.,;?\n]++)(?:/(?P<param>[^/.,;?\n]++)(?:/(?P< …" }
protected _routes => array(0) protected _header => object HTTP_Header(0){ }
protected _body => NULL protected _directory => string(7) "Plugins" protected _controller => string(12) "PhotoGallery" protected _action => string(11) "catalogItem" protected _uri => string(44) "plugins/PhotoGallery/catalogItem/10634/99999" protected _external => bool FALSE protected _params => array(2) ( "id" => string(5) "10634" "param" => string(5) "99999" ) 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 => string(8) "HTTP/1.1" }109 $orig_response = $response = Response::factory(array('_protocol' => $request->protocol())); 110 111 if (($cache = $this->cache()) instanceof HTTP_Cache) 112 return $cache->execute($this, $request, $response); 113 114 $response = $this->execute_request($request, $response); 115 116 // Execute response callbacks 117 foreach ($this->header_callbacks() as $header => $callback) 118 { 119 if ($response->headers($header))
-
SYSPATH/classes/Kohana/Request.php [ 997 ] » 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(72) "plugins(/<controller>(/<action>(/<id>(/<param>(/<param2>(/<param3>))))))" protected _regex => array(0) protected _defaults => array(3) ( "directory" => string(7) "plugins" "controller" => string(5) "Index" "action" => string(5) "index" ) protected _route_regex => string(192) "#^plugins(?:/(?P<controller>[^/.,;?\n]++)(?:/(?P<action>[^/.,;?\n]++)(?:/(?P<id>[^/.,;?\n]++)(?:/(?P<param>[^/.,;?\n]++)(?:/(?P< …" }
protected _routes => array(0) protected _header => object HTTP_Header(0){ }
protected _body => NULL protected _directory => string(7) "Plugins" protected _controller => string(12) "PhotoGallery" protected _action => string(11) "catalogItem" protected _uri => string(44) "plugins/PhotoGallery/catalogItem/10634/99999" protected _external => bool FALSE protected _params => array(2) ( "id" => string(5) "10634" "param" => string(5) "99999" ) 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) }
}992 throw new Request_Exception('Unable to execute :uri without a Kohana_Request_Client', array( 993 ':uri' => $this->_uri, 994 )); 995 } 996 997 return $this->_client->execute($this); 998 } 999 1000 /** 1001 * Returns whether this request is the initial request Kohana received. 1002 * Can be used to test for sub requests.
-
APPPATH/classes/Catalog.php [ 455 ] » Kohana_Request->execute()
450 return FALSE; 451 } 452 } 453 454 if($size){ 455 $data['data']['0']['images'] = Request::factory('plugins/PhotoGallery/catalogItem/'. $data['data']['0']['group'] .'/'. $count_images)->execute()->body(); 456 } 457 458 if( !isset($data['data']['0']['images']['0'])){ 459 $data = Catalog::add_images($data, 'catalog', $size, $size_replace, $count_images); 460 }
-
APPPATH/classes/Controller/Catalog.php [ 162 ] » Catalog::get_tovar(arguments)
0
string(20) "9-sharov-serdec-miks"
1
NULL
2
string(3) "big"
3
string(3) "big"
157 */ 158 public function get_item_page($tovar_url) 159 { 160 /* CATALOG ITEM PAGE */ 161 //$data = Catalog::get_tovar($tovar_url, NULL); 162 $data = Catalog::get_tovar($tovar_url, NULL, 'big', 'big'); 163 return $data; 164 } 165 166 /** 167 * Страница сравнения товаров
-
APPPATH/classes/Controller/Catalog.php [ 82 ] » Controller_Catalog->get_item_page(arguments)
0
string(20) "9-sharov-serdec-miks"
77 // Выбираем шаблон разделов или товаров 78 if(Arr::get($data, 'template', 'category') === 'category'){ 79 $data['template'] = $this->get_template(true, 'tovars', $data['data']['0']['id'], '/catalog/category'); 80 } 81 }else{ 82 $data = $this->get_item_page($tovar_url); 83 $data['type_page'] = 'catalog_tovar'; 84 $data['template'] = $this->get_template(true, 'tovars', $tovar_url, '/catalog/item'); 85 } 86 87 $data['catalogrows'] = Catalog::config_catalogrows();
-
SYSPATH/classes/Kohana/Controller.php [ 84 ] » Controller_Catalog->action_index()
79 array(':uri' => $this->request->uri()) 80 )->request($this->request); 81 } 82 83 // Execute the action itself 84 $this->{$action}(); 85 86 // Execute the "after action" method 87 $this->after(); 88 89 // Return the response
-
{PHP internal call} » Kohana_Controller->execute()
-
SYSPATH/classes/Kohana/Request/Client/Internal.php [ 97 ] » ReflectionMethod->invoke(arguments)
0
object Controller_Catalog(4)
{ public template => object View(2)
{ protected _file => string(58) "/var/www/af27.ru/application/views/default_rocket/html.php" protected _data => array(22) ( "role" => string(5) "login" "mainpage" => string(0) "" "subdomains" => array(0) "current_subdomain" => bool FALSE "controller" => string(7) "catalog" "action" => string(5) "index" "param_id" => string(0) "" "param" => string(7) "default" "param_category" => string(16) "vozdushnye-shary" "config" => array(24) ( "cache" => string(4) "file" "admin-links" => string(2) "on" "title" => string(61) "Магазин цветов и подарков Art-Floristic" "debug-panel" => string(2) "on" "offline" => string(5) "false" "index_admin" => string(7) "catalog" "catalog_blank_photo" => string(5) "blank" "index_url" => string(11) "label/index" "index_action" => string(5) "index" "index_page" => string(7) "catalog" "global_template" => string(14) "default_rocket" "smartbanners" => string(40) "a8bc0ab3fea49c27e1dea838f47448fa3294f5d1" "catalog_main_template" => string(16) "itemscatalog-4-3" "main_level_catalog" => string(7) "katalog" "catalog_main_photo" => string(5) "first" "catalog_level" => string(1) "2" "analitics" => string(0) "" "catalog_tovar_on_page" => string(2) "24" "catalog_display_cost" => string(5) "false" "apps" => array(11) ( 0 => string(5) "magic" 1 => string(4) "feed" 2 => string(4) "news" 3 => string(4) "page" 4 => string(15) "gallery_in_page" 5 => string(7) "sitemap" 6 => string(5) "users" 7 => string(12) "log_feedback" 8 => string(10) "breadcrumb" "position" => string(1) "0" "id" => string(1) "6" ) "adress" => string(54) "г. Хабаровск, ул. Гамарника, 43А" "phone" => string(16) "8 (4212) 940-680" "email" => string(19) "art-floristic@ya.ru" "title_en" => string(61) "Магазин цветов и подарков Art-Floristic" ) "config_apps" => array(11) ( 0 => string(5) "magic" 1 => string(4) "feed" 2 => string(4) "news" 3 => string(4) "page" 4 => string(15) "gallery_in_page" 5 => string(7) "sitemap" 6 => string(5) "users" 7 => string(12) "log_feedback" 8 => string(10) "breadcrumb" "position" => string(1) "0" "id" => string(1) "6" ) "module_breadcrumb" => string(118) "<div class="module_block_breadcrumb row-fluid"><div class="row-fluid module_0 module_breadcrumb_catalog "></div></div>" "module_footer_address" => string(650) "<div class="module_block_footer_address row-fluid"><div class="row-fluid module_0 module_footer-block "><div class="block_"> <p> …" "module_footer_bottom" => string(255) "<div class="module_block_footer_bottom row-fluid"><div class="row-fluid module_0 module_footer-block-email "><div class="block_" …" "module_header_center" => string(221) "<div class="module_block_header_center row-fluid"><div class="row-fluid module_0 module_header-slogan "><div class="block_"> <p> …" "module_header_left" => string(1807) "<div class="module_block_header_left row-fluid"><div class="row-fluid module_0 module_loginform "><button id="login_form" type=" …" "module_header_right" => string(829) "<div class="module_block_header_right row-fluid"><div class="row-fluid module_0 module_header-block-phone "><div class="block_"> …" "module_right" => string(1537) "<div class="module_block_right row-fluid"><div class="row-fluid module_0 module_newsblock "></div><div class="row-fluid module_1 …" "module_right_bottom" => string(5047) "<div class="module_block_right_bottom row-fluid"><div class="row-fluid module_0 module_contactform2 "> <div class="block_Forms_d …" "module_right_top" => string(6363) "<div class="module_block_right_top row-fluid"><div class="row-fluid module_0 module_searchform "><div class="block_search row"> …" "module_topmenu" => string(1462) "<div class="module_block_topmenu row-fluid"><div class="row-fluid module_0 module_menu "><nav class="col-sm-24"> <ul cla …" "module_viewport" => string(2226) "<div class="module_block_viewport row-fluid"><div class="row-fluid module_0 module_fuckie "><!--[if lt IE 9]> <div style="border …" ) }
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(30) "catalog(/<category>(/<tovar>))" protected _regex => array(0) protected _defaults => array(4) ( "controller" => string(7) "catalog" "action" => string(5) "index" "category" => string(11) "label/index" "tovar" => string(0) "" ) protected _route_regex => string(74) "#^catalog(?:/(?P<category>[^/.,;?\n]++)(?:/(?P<tovar>[^/.,;?\n]++))?)?$#uD" }
protected _routes => array(0) protected _header => object HTTP_Header(0){ }
protected _body => NULL protected _directory => string(0) "" protected _controller => string(7) "Catalog" protected _action => string(5) "index" protected _uri => string(45) "catalog/vozdushnye-shary/9-sharov-serdec-miks" protected _external => bool FALSE protected _params => array(2) ( "category" => string(16) "vozdushnye-shary" "tovar" => string(20) "9-sharov-serdec-miks" ) protected _get => array(0) protected _post => array(0) protected _cookies => array(0) protected _client => object Request_Client_Internal(9){ protected _previous_environment => NULL protected _cache => NULL protected _follow => bool FALSE protected _follow_headers => array(1) ( 0 => string(13) "authorization" ) protected _strict_redirect => bool TRUE protected _header_callbacks => array(1) ( "Location" => string(34) "Request_Client::on_header_location" ) protected _max_callback_depth => integer 5 protected _callback_depth => integer 1 protected _callback_params => array(0) }
}{ protected _status => integer 200 protected _header => object HTTP_Header(0)
}{ }
protected _body => string(0) "" protected _cookies => array(0) protected _protocol => string(8) "HTTP/1.1" }92 93 // Create a new instance of the controller 94 $controller = $class->newInstance($request, $response); 95 96 // Run the controller's execute() method 97 $response = $class->getMethod('execute')->invoke($controller); 98 99 if ( ! $response instanceof Response) 100 { 101 // Controller failed to return a Response. 102 throw new Kohana_Exception('Controller failed to return a Response');
-
SYSPATH/classes/Kohana/Request/Client.php [ 114 ] » Kohana_Request_Client_Internal->execute_request(arguments)
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(30) "catalog(/<category>(/<tovar>))" protected _regex => array(0) protected _defaults => array(4) ( "controller" => string(7) "catalog" "action" => string(5) "index" "category" => string(11) "label/index" "tovar" => string(0) "" ) protected _route_regex => string(74) "#^catalog(?:/(?P<category>[^/.,;?\n]++)(?:/(?P<tovar>[^/.,;?\n]++))?)?$#uD" }
protected _routes => array(0) protected _header => object HTTP_Header(0){ }
protected _body => NULL protected _directory => string(0) "" protected _controller => string(7) "Catalog" protected _action => string(5) "index" protected _uri => string(45) "catalog/vozdushnye-shary/9-sharov-serdec-miks" protected _external => bool FALSE protected _params => array(2) ( "category" => string(16) "vozdushnye-shary" "tovar" => string(20) "9-sharov-serdec-miks" ) 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 => string(8) "HTTP/1.1" }109 $orig_response = $response = Response::factory(array('_protocol' => $request->protocol())); 110 111 if (($cache = $this->cache()) instanceof HTTP_Cache) 112 return $cache->execute($this, $request, $response); 113 114 $response = $this->execute_request($request, $response); 115 116 // Execute response callbacks 117 foreach ($this->header_callbacks() as $header => $callback) 118 { 119 if ($response->headers($header))
-
SYSPATH/classes/Kohana/Request.php [ 997 ] » 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(30) "catalog(/<category>(/<tovar>))" protected _regex => array(0) protected _defaults => array(4) ( "controller" => string(7) "catalog" "action" => string(5) "index" "category" => string(11) "label/index" "tovar" => string(0) "" ) protected _route_regex => string(74) "#^catalog(?:/(?P<category>[^/.,;?\n]++)(?:/(?P<tovar>[^/.,;?\n]++))?)?$#uD" }
protected _routes => array(0) protected _header => object HTTP_Header(0){ }
protected _body => NULL protected _directory => string(0) "" protected _controller => string(7) "Catalog" protected _action => string(5) "index" protected _uri => string(45) "catalog/vozdushnye-shary/9-sharov-serdec-miks" protected _external => bool FALSE protected _params => array(2) ( "category" => string(16) "vozdushnye-shary" "tovar" => string(20) "9-sharov-serdec-miks" ) 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) }
}992 throw new Request_Exception('Unable to execute :uri without a Kohana_Request_Client', array( 993 ':uri' => $this->_uri, 994 )); 995 } 996 997 return $this->_client->execute($this); 998 } 999 1000 /** 1001 * Returns whether this request is the initial request Kohana received. 1002 * 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 (147)
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 |
APPPATH/classes/Helper.php |
SYSPATH/classes/Arr.php |
SYSPATH/classes/Kohana/Arr.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/debug-toolbar-3.3/init.php |
MODPATH/debug-toolbar-3.3/config/debug_toolbar.php |
APPPATH/config/debug_toolbar.php |
SYSPATH/classes/Config/Group.php |
SYSPATH/classes/Kohana/Config/Group.php |
MODPATH/captcha/init.php |
SYSPATH/classes/Route.php |
SYSPATH/classes/Kohana/Route.php |
MODPATH/mdash/init.php |
MODPATH/cache/classes/Cache.php |
MODPATH/cache/classes/Kohana/Cache.php |
SYSPATH/classes/Cookie.php |
SYSPATH/classes/Kohana/Cookie.php |
SYSPATH/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/Response.php |
SYSPATH/classes/Kohana/Response.php |
SYSPATH/classes/HTTP/Response.php |
SYSPATH/classes/Kohana/HTTP/Response.php |
APPPATH/classes/Controller/Catalog.php |
APPPATH/classes/Rocket.php |
SYSPATH/classes/Controller/Template.php |
SYSPATH/classes/Kohana/Controller/Template.php |
SYSPATH/classes/Controller.php |
SYSPATH/classes/Kohana/Controller.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 |
SYSPATH/classes/View.php |
SYSPATH/classes/Kohana/View.php |
APPPATH/classes/RocketACL.php |
APPPATH/config/subdomain.php |
APPPATH/classes/Model/Module.php |
MODPATH/database/classes/Model/Database.php |
MODPATH/database/classes/Kohana/Model/Database.php |
SYSPATH/classes/Model.php |
SYSPATH/classes/Kohana/Model.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/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/classes/Database/Result/Cached.php |
MODPATH/database/classes/Kohana/Database/Result/Cached.php |
MODPATH/database/classes/Database/Result.php |
MODPATH/database/classes/Kohana/Database/Result.php |
APPPATH/classes/Controller/Module/Breadcrumb.php |
APPPATH/classes/Module.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 |
SYSPATH/classes/URL.php |
SYSPATH/classes/Kohana/URL.php |
APPPATH/classes/Model/Category.php |
APPPATH/classes/Model/Apps.php |
MODPATH/database/classes/Database/MySQLi/Result.php |
APPPATH/classes/Controller/Module/List.php |
APPPATH/views/default_rocket/module/list/static.php |
MODPATH/database/classes/Database/Query/Builder/Join.php |
MODPATH/database/classes/Kohana/Database/Query/Builder/Join.php |
APPPATH/classes/App.php |
APPPATH/classes/Catalog.php |
APPPATH/views/default_rocket/module/list/label.php |
APPPATH/views/default_rocket/module/list/opinions.php |
APPPATH/views/default_rocket/module/list/tree.php |
APPPATH/classes/Controller/Module/Fuckie.php |
APPPATH/views/default_rocket/module/fuckie/warning.php |
APPPATH/classes/Controller/Module/Auth.php |
APPPATH/views/default_rocket/module/auth/login.php |
APPPATH/classes/Controller/Module/Cart.php |
APPPATH/classes/Cart.php |
APPPATH/views/default_rocket/module/cart/index.php |
APPPATH/classes/Controller/Module/Forms.php |
APPPATH/views/default_rocket/module/forms/form_double.php |
APPPATH/classes/Controller/Module/Searchform.php |
APPPATH/views/default_rocket/module/search/form.php |
APPPATH/classes/Controller/Module/Menu.php |
APPPATH/views/default_rocket/module/menu/default.php |
APPPATH/classes/Controller/Plugins/PhotoGallery.php |
APPPATH/classes/Model/Image.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/UTF8.php |
SYSPATH/classes/Kohana/UTF8.php |
Loaded extensions (45)
Core |
date |
libxml |
openssl |
pcre |
zlib |
filter |
hash |
Reflection |
SPL |
session |
standard |
cgi-fcgi |
mysqlnd |
PDO |
xml |
calendar |
ctype |
curl |
dom |
mbstring |
fileinfo |
ftp |
gd |
gettext |
iconv |
json |
exif |
mysqli |
pdo_mysql |
Phar |
posix |
readline |
shmop |
SimpleXML |
sockets |
sysvmsg |
sysvsem |
sysvshm |
tokenizer |
wddx |
xmlreader |
xmlwriter |
xsl |
Zend OPcache |
$_SERVER
USER |
string(8) "www-data" |
HOME |
string(8) "/var/www" |
HTTP_ACCEPT_ENCODING |
string(4) "gzip" |
HTTP_CONNECTION |
string(10) "Keep-Alive" |
HTTP_HOST |
string(7) "af27.ru" |
HTTP_IF_MODIFIED_SINCE |
string(29) "Mon, 19 Nov 2018 06:55:17 GMT" |
HTTP_ACCEPT |
string(63) "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8" |
HTTP_USER_AGENT |
string(40) "CCBot/2.0 (https://commoncrawl.org/faq/)" |
SCRIPT_FILENAME |
string(26) "/var/www/af27.ru/index.php" |
REDIRECT_STATUS |
string(3) "200" |
SERVER_NAME |
string(7) "af27.ru" |
SERVER_PORT |
string(2) "80" |
SERVER_ADDR |
string(14) "82.202.236.175" |
REMOTE_PORT |
string(5) "44486" |
REMOTE_ADDR |
string(13) "34.207.152.62" |
SERVER_SOFTWARE |
string(12) "nginx/1.10.3" |
GATEWAY_INTERFACE |
string(7) "CGI/1.1" |
REQUEST_SCHEME |
string(4) "http" |
SERVER_PROTOCOL |
string(8) "HTTP/1.1" |
DOCUMENT_ROOT |
string(16) "/var/www/af27.ru" |
DOCUMENT_URI |
string(10) "/index.php" |
REQUEST_URI |
string(46) "/catalog/vozdushnye-shary/9-sharov-serdec-miks" |
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 1550286094,8139 |
REQUEST_TIME |
integer 1550286094 |
Латексные шары в форме сердца, 9 шт.
Состав: 3 белых, 3 красных, 3 розовых.
Сопутствующие товары
- 14 ФЕВРАЛЯ 105
- ЦВЕТЫ В КОРОБКАХ 71
- Букеты-комплименты 30
- Монобукеты 25
- Подарочные корзины 6
- Шоколад, конфеты, торты 29
- Мягкие игрушки 57
- Открытки 94
- Вазы, кашпо 5
- Всё для праздника 12
Отзывы:
Добрый день! Заказывала букет маме на юбилей Букет получился класс, все в восторге, особенно мама. Большое вам спасибо за вашу работу, внимательность и чуткость.
Здравствуйте! Спасибо за обратную связь! Очень рады, что Вашей маме понравился наш букет)))
Уже несколько лет пользуюсь услугами Арт-Флористик. Одаряемые неизменно довольны, а дарителя радует большой выбор и сменяемость ассортимента. Спасибо вам!
Здравствуйте, Полина! Спасибо вам за отзыв! Будем и дальше продолжать радовать вас.