Наш салон уже больше 10 лет занимается продажей и установкой каминов
У нас обязательно есть то, что вам нужно, по выгодной цене!
MODPATH/database/classes/Kohana/Database/MySQL.php [ 194 ]
189 {
190 // This benchmark is worthless
191 Profiler::delete($benchmark);
192 }
193
194 throw new Database_Exception(':error [ :query ]',
195 array(':error' => mysql_error($this->_connection), ':query' => $sql),
196 mysql_errno($this->_connection));
197 }
198
199 if (isset($benchmark))
MODPATH/database/classes/Kohana/Database/Query.php [ 251 ] » Kohana_Database_MySQL->query(arguments)
0 |
integer 1 |
1 |
string(40) "SELECT * FROM catalogtree WHERE id_tree=" |
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);
APPPATH/classes/Controller/Catalog/Wcatalog.php [ 359 ] » Kohana_Database_Query->execute()
354 $recommendations[] = $d2->as_array();
355 }
356 }
357 //var_dump($good['catalogtree_id']);
358 //exit;
359 $array_cat = DB::query(Database::SELECT, "SELECT * FROM catalogtree WHERE id_tree=".$good['catalogtree_id']."")->execute()->as_array();
360
361 $page_cat = $array_cat[0];
362 // var_dump($page_cat);
363 // exit;
364 $prefix = "Купить ";
APPPATH/classes/Controller/Catalog/Wcatalog.php [ 41 ] » Controller_Catalog_Wcatalog->action_good()
36
37 public function action_rubric() {
38 // var_dump($this->path);
39 $get = $_GET;
40 if (isset($get['good'])) {
41 $this->action_good();
42 }
43 else {
44 $link = end($this->path);
45
46 $page = ORM::factory('catalogtree')->where('link', '=', $link)->find()->as_array();
SYSPATH/classes/Kohana/Controller.php [ 84 ] » Controller_Catalog_Wcatalog->action_rubric()
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_Wcatalog(6) |
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) |
1 |
object Response(5) |
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 [ 986 ] » Kohana_Request_Client->execute(arguments)
0 |
object Request(19) |
981 throw new Request_Exception('Unable to execute :uri without a Kohana_Request_Client', array(
982 ':uri' => $this->_uri,
983 ));
984 }
985
986 return $this->_client->execute($this);
987 }
988
989 /**
990 * Returns whether this request is the initial request Kohana received.
991 * Can be used to test for sub requests.
APPPATH/classes/Controller/TBase.php [ 315 ] » Kohana_Request->execute()
310 foreach ($blocks as $block) {
311 if (is_a($block, 'View')) {
312 $this->template->{$bKey} .= $block;
313 }
314 else {
315 $this->template->{$bKey} .= Request::factory($block)->execute();
316 }
317 }
318 }
319 }
320 parent::after();
SYSPATH/classes/Kohana/Controller.php [ 87 ] » Controller_TBase->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_Page_Page(13) |
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) |
1 |
object Response(5) |
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 [ 986 ] » Kohana_Request_Client->execute(arguments)
0 |
object Request(19) |
981 throw new Request_Exception('Unable to execute :uri without a Kohana_Request_Client', array(
982 ':uri' => $this->_uri,
983 ));
984 }
985
986 return $this->_client->execute($this);
987 }
988
989 /**
990 * Returns whether this request is the initial request Kohana received.
991 * Can be used to test for sub requests.
DOCROOT/index.php [ 124 ] » Kohana_Request->execute()
119 /**
120 * Выполнение основного запроса. Источник URI может быть переданы, например: $ _SERVER ['PATH_INFO'].
121 * Если источник не указан, то URI будут автоматически обнаружены.
122 */
123 echo Request::factory(TRUE, array(), FALSE)
124 ->execute()
125 ->send_headers(TRUE)
126 ->body();
127 }
DOCROOT/index.php |
APPPATH/bootstrap.php |
SYSPATH/classes/Kohana/Core.php |
SYSPATH/classes/Kohana.php |
SYSPATH/classes/I18n.php |
SYSPATH/classes/Kohana/I18n.php |
SYSPATH/classes/HTTP.php |
SYSPATH/classes/Kohana/HTTP.php |
SYSPATH/classes/Kohana/Exception.php |
SYSPATH/classes/Kohana/Kohana/Exception.php |
SYSPATH/classes/Log.php |
SYSPATH/classes/Kohana/Log.php |
SYSPATH/classes/Config.php |
SYSPATH/classes/Kohana/Config.php |
SYSPATH/classes/Log/File.php |
SYSPATH/classes/Kohana/Log/File.php |
SYSPATH/classes/Log/Writer.php |
SYSPATH/classes/Kohana/Log/Writer.php |
SYSPATH/classes/Config/File.php |
SYSPATH/classes/Kohana/Config/File.php |
SYSPATH/classes/Kohana/Config/File/Reader.php |
SYSPATH/classes/Kohana/Config/Reader.php |
SYSPATH/classes/Kohana/Config/Source.php |
SYSPATH/classes/Cookie.php |
SYSPATH/classes/Kohana/Cookie.php |
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/Page/Page.php |
APPPATH/classes/Controller/TBase.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/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 |
SYSPATH/classes/Config/Group.php |
SYSPATH/classes/Kohana/Config/Group.php |
MODPATH/auth/classes/Auth/Base.php |
MODPATH/auth/classes/Kohana/Auth/Base.php |
SYSPATH/config/session.php |
MODPATH/database/config/session.php |
APPPATH/config/session.php |
SYSPATH/classes/Session/Native.php |
SYSPATH/classes/Kohana/Session/Native.php |
APPPATH/classes/Controller/Page/Wtopmenu.php |
APPPATH/classes/Controller/WBase.php |
MODPATH/orm/classes/ORM.php |
MODPATH/orm/classes/Kohana/ORM.php |
SYSPATH/classes/Model.php |
SYSPATH/classes/Kohana/Model.php |
APPPATH/classes/Model/tree.php |
MODPATH/orm-mptt/classes/Orm/Mptt.php |
MODPATH/orm-mptt/classes/Kohana/Orm/Mptt.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/MySQL.php |
MODPATH/database/classes/Kohana/Database/MySQL.php |
MODPATH/database/classes/Database/MySQL/Result.php |
MODPATH/database/classes/Kohana/Database/MySQL/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/views/page/wtopmenu.php |
APPPATH/classes/Controller/Page/WSlideMenu.php |
APPPATH/classes/Model/catalogtree.php |
APPPATH/views/page/wSlideMenu.php |
APPPATH/classes/Controller/Page/Wbreadcrumbs.php |
APPPATH/views/page/wbreadcrumbs.php |
APPPATH/classes/Controller/Page/Wbotmenu.php |
MODPATH/database/classes/Database/Query/Builder/Join.php |
MODPATH/database/classes/Kohana/Database/Query/Builder/Join.php |
APPPATH/views/page/wbotmenu.php |
DOCROOT/sypexGeoAPI/SxGeo.php |
APPPATH/classes/Controller/Page/Wmenu.php |
APPPATH/classes/Menu.php |
APPPATH/views/v_category_template_catalog.php |
APPPATH/views/page/wmenu.php |
APPPATH/classes/Controller/Catalog/Wcatalog.php |
APPPATH/classes/Model/goods.php |
APPPATH/classes/Model/goodsimg.php |
MODPATH/database/classes/Database/Exception.php |
MODPATH/database/classes/Kohana/Database/Exception.php |
APPPATH/i18n/ru.php |
SYSPATH/classes/Debug.php |
SYSPATH/classes/Kohana/Debug.php |
SYSPATH/classes/Date.php |
SYSPATH/classes/Kohana/Date.php |
SYSPATH/views/kohana/error.php |
SYSPATH/classes/UTF8.php |
SYSPATH/classes/Kohana/UTF8.php |
Core |
date |
ereg |
libxml |
openssl |
pcre |
zlib |
bz2 |
calendar |
ctype |
hash |
filter |
ftp |
gettext |
gmp |
SPL |
iconv |
pcntl |
readline |
Reflection |
session |
standard |
shmop |
SimpleXML |
sockets |
mbstring |
tokenizer |
xml |
cgi-fcgi |
bcmath |
curl |
dom |
fileinfo |
gd |
intl |
json |
ldap |
exif |
mysql |
mysqli |
PDO |
pdo_mysql |
pdo_sqlite |
Phar |
posix |
pspell |
sqlite3 |
sysvmsg |
sysvsem |
sysvshm |
tidy |
wddx |
xmlreader |
xmlwriter |
xsl |
zip |
mhash |
geoData |
array(3) ( "city" => array(5) ( "id" => integer 4839822 "lat" => float 41.1176 "lon" => float -73.4079 "name_ru" => string(14) "Норуолк" "name_en" => string(7) "Norwalk" ) "region" => array(4) ( "id" => integer 4831725 "name_ru" => string(22) "Коннектикут" "name_en" => string(11) "Connecticut" "iso" => string(5) "US-CT" ) "country" => array(6) ( "id" => integer 225 "iso" => string(2) "US" "lat" => float 39.76 "lon" => float -98.5 "name_ru" => string(6) "США" "name_en" => string(13) "United States" ) ) |
kohana_uri |
string(27) "katalog/pechi-kamini/cat265" |
good |
string(4) "2611" |
PATH |
string(49) "/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin" |
HTTP_CONNECTION |
string(5) "close" |
SCRIPT_NAME |
string(10) "/index.php" |
REQUEST_URI |
string(38) "/katalog/pechi-kamini/cat265?good=2611" |
QUERY_STRING |
string(48) "kohana_uri=katalog/pechi-kamini/cat265&good=2611" |
REQUEST_METHOD |
string(3) "GET" |
SERVER_PROTOCOL |
string(8) "HTTP/1.1" |
GATEWAY_INTERFACE |
string(7) "CGI/1.1" |
REDIRECT_URL |
string(28) "/katalog/pechi-kamini/cat265" |
REDIRECT_QUERY_STRING |
string(48) "kohana_uri=katalog/pechi-kamini/cat265&good=2611" |
REMOTE_PORT |
string(5) "65491" |
SCRIPT_FILENAME |
string(50) "/var/www/kamini/data/www/kamini-arton.ru/index.php" |
SERVER_ADMIN |
string(25) "webmaster@kamini-arton.ru" |
CONTEXT_DOCUMENT_ROOT |
string(40) "/var/www/kamini/data/www/kamini-arton.ru" |
CONTEXT_PREFIX |
string(0) "" |
REQUEST_SCHEME |
string(4) "http" |
DOCUMENT_ROOT |
string(40) "/var/www/kamini/data/www/kamini-arton.ru" |
REMOTE_ADDR |
string(12) "13.58.38.184" |
SERVER_PORT |
string(2) "80" |
SERVER_ADDR |
string(12) "176.99.4.220" |
SERVER_NAME |
string(15) "kamini-arton.ru" |
SERVER_SOFTWARE |
string(68) "Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips mod_fcgid/2.3.9 PHP/5.4.16" |
SERVER_SIGNATURE |
string(0) "" |
HTTP_HOST |
string(15) "kamini-arton.ru" |
HTTP_ACCEPT_ENCODING |
string(23) "gzip, br, zstd, deflate" |
HTTP_USER_AGENT |
string(103) "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" |
HTTP_ACCEPT |
string(3) "*/*" |
KOHANA_ENV |
string(11) "development" |
PERL5LIB |
string(49) "/usr/share/awstats/lib:/usr/share/awstats/plugins" |
UNIQUE_ID |
string(27) "Zz9dI1Cq7cPSrmTdQpKAOAAAADE" |
REDIRECT_STATUS |
string(3) "200" |
REDIRECT_KOHANA_ENV |
string(11) "development" |
REDIRECT_PERL5LIB |
string(49) "/usr/share/awstats/lib:/usr/share/awstats/plugins" |
REDIRECT_UNIQUE_ID |
string(27) "Zz9dI1Cq7cPSrmTdQpKAOAAAADE" |
FCGI_ROLE |
string(9) "RESPONDER" |
PHP_SELF |
string(10) "/index.php" |
REQUEST_TIME_FLOAT |
float 1732205859.6699 |
REQUEST_TIME |
integer 1732205859 |