Наш салон уже больше 10 лет занимается продажей и установкой каминов
У нас обязательно есть то, что вам нужно, по выгодной цене!
APPPATH/classes/Controller/Catalog/Wcatalog.php [ 567 ]
562
563 $url .= $currency[$currencyCode];
564 $url .= date('/Y/m/d', $date);
565 $url .= $file;
566
567 $page = file_get_contents($url);
568 $curs = explode("\t", $page);
569
570 return (float) $curs[1];
571 }
572
{PHP internal call} » Kohana_Core::error_handler(arguments)
0 |
integer 2 |
1 |
string(133) "file_get_contents(http://cbrates.rbc.ru/tsv/978/2021/03/09.tsv): failed to open stream: HTTP request failed! HTTP/1.1 404 NOT FO …" |
2 |
string(101) "/var/www/kamini/data/www/kamini.artline-studio.ru/application/classes/Controller/Catalog/Wcatalog.php" |
3 |
integer 567 |
4 |
array(6) ( "currencyCode" => string(3) "EUR" "date" => integer 1615228599 "currency" => array(2) ( "USD" => integer 840 "EUR" => integer 978 ) "url" => string(44) "http://cbrates.rbc.ru/tsv/978/2021/03/09.tsv" "file" => string(4) ".tsv" "http_response_header" => array(6) ( 0 => string(22) "HTTP/1.1 404 NOT FOUND" 1 => string(13) "Server: nginx" 2 => string(35) "Date: Mon, 08 Mar 2021 18:36:39 GMT" 3 => string(38) "Content-Type: text/html; charset=utf-8" 4 => string(17) "Content-Length: 3" 5 => string(17) "Connection: close" ) ) |
APPPATH/classes/Controller/Catalog/Wcatalog.php [ 567 ] » file_get_contents(arguments)
filename |
string(44) "http://cbrates.rbc.ru/tsv/978/2021/03/09.tsv" |
562
563 $url .= $currency[$currencyCode];
564 $url .= date('/Y/m/d', $date);
565 $url .= $file;
566
567 $page = file_get_contents($url);
568 $curs = explode("\t", $page);
569
570 return (float) $curs[1];
571 }
572
APPPATH/classes/Controller/Catalog/Wcatalog.php [ 324 ] » Controller_Catalog_Wcatalog->action_get_actual_currency(arguments)
0 |
string(3) "EUR" |
319 $id = $_GET['good'];
320 $good = ORM::factory('goods', $id)->as_array();
321
322 // $currency = $this->action_get_cb();// курс цб (запасной)
323 // $currency = $this->action_get_currency('EUR');// курс РБК (приоритетный)
324 $currency = $this->action_get_actual_currency('EUR');// актуальный курс валют
325
326 $priceZone = $this->get_priceZone();// ценовая зона
327 $goodMarkup = $good['ignore_price_zone'] == '1' ? 1 : 1 + ((int) $priceZone['markup'] / 100);
328
329 if ($good['calc'] == 0) {
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 [ 291 ] » Kohana_Request->execute()
286 foreach ($blocks as $block) {
287 if (is_a($block, 'View')) {
288 $this->template->{$bKey} .= $block;
289 }
290 else {
291 $this->template->{$bKey} .= Request::factory($block)->execute();
292 }
293 }
294 }
295 }
296 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/Wbreadcrumbs.php |
APPPATH/classes/Model/catalogtree.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 |
SYSPATH/classes/Debug.php |
SYSPATH/classes/Kohana/Debug.php |
SYSPATH/classes/Date.php |
SYSPATH/classes/Kohana/Date.php |
SYSPATH/views/kohana/error.php |
APPPATH/i18n/ru.php |
SYSPATH/classes/UTF8.php |
SYSPATH/classes/Kohana/UTF8.php |
Core |
date |
ereg |
libxml |
openssl |
pcre |
sqlite3 |
zlib |
bcmath |
bz2 |
calendar |
ctype |
curl |
dba |
dom |
hash |
ftp |
gd |
gettext |
gmp |
SPL |
iconv |
session |
json |
mbstring |
mcrypt |
standard |
mysqlnd |
mysqli |
pcntl |
mysql |
PDO |
pdo_mysql |
pdo_sqlite |
posix |
pspell |
Reflection |
imap |
shmop |
SimpleXML |
soap |
sockets |
exif |
sysvmsg |
sysvsem |
sysvshm |
tokenizer |
wddx |
xml |
xmlreader |
xmlrpc |
xmlwriter |
xsl |
zip |
cgi-fcgi |
eAccelerator |
fileinfo |
filter |
htscanner |
imagick |
Phar |
mhash |
ionCube Loader |
Zend Guard Loader |
geoData |
array(3) ( "city" => array(5) ( "id" => integer 4834157 "lat" => float 41.14121 "lon" => float -73.26373 "name_ru" => string(16) "Феърфилд" "name_en" => string(9) "Fairfield" ) "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" ) ) |
good |
string(4) "3903" |
PATH |
string(28) "/usr/local/bin:/usr/bin:/bin" |
REDIRECT_HANDLER |
string(7) "php-cgi" |
REDIRECT_STATUS |
string(3) "200" |
HTTP_HOST |
string(15) "kamini-arton.ru" |
HTTP_X_FORWARDED_FOR |
string(12) "3.231.166.56" |
HTTP_X_FORWARDED_PROTO |
string(4) "http" |
HTTP_X_REAL_IP |
string(12) "3.231.166.56" |
HTTP_CONNECTION |
string(5) "close" |
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) "Thu, 26 Nov 2020 23:45:08 GMT" |
HTTP_ACCEPT_ENCODING |
string(7) "br,gzip" |
SERVER_SIGNATURE |
string(76) "<address>Apache/2.2.15 (CentOS) Server at kamini-arton.ru Port 80</address> " |
SERVER_SOFTWARE |
string(22) "Apache/2.2.15 (CentOS)" |
SERVER_NAME |
string(15) "kamini-arton.ru" |
SERVER_ADDR |
string(13) "185.20.226.52" |
SERVER_PORT |
string(2) "80" |
REMOTE_ADDR |
string(12) "3.231.166.56" |
DOCUMENT_ROOT |
string(49) "/var/www/kamini/data/www/kamini.artline-studio.ru" |
SERVER_ADMIN |
string(34) "webmaster@kamini.artline-studio.ru" |
SCRIPT_FILENAME |
string(59) "/var/www/kamini/data/www/kamini.artline-studio.ru/index.php" |
REMOTE_PORT |
string(5) "60412" |
REDIRECT_QUERY_STRING |
string(9) "good=3903" |
REDIRECT_URL |
string(60) "/index.php/katalog/pechi-kamini/kimry-rossija/serija-provans" |
GATEWAY_INTERFACE |
string(7) "CGI/1.1" |
SERVER_PROTOCOL |
string(8) "HTTP/1.0" |
REQUEST_METHOD |
string(3) "GET" |
QUERY_STRING |
string(9) "good=3903" |
REQUEST_URI |
string(60) "/katalog/pechi-kamini/kimry-rossija/serija-provans?good=3903" |
SCRIPT_NAME |
string(10) "/index.php" |
PATH_INFO |
string(50) "/katalog/pechi-kamini/kimry-rossija/serija-provans" |
PATH_TRANSLATED |
string(99) "/var/www/kamini/data/www/kamini.artline-studio.ru/katalog/pechi-kamini/kimry-rossija/serija-provans" |
ORIG_PATH_INFO |
string(60) "/index.php/katalog/pechi-kamini/kimry-rossija/serija-provans" |
ORIG_SCRIPT_NAME |
string(12) "/php-bin/php" |
ORIG_SCRIPT_FILENAME |
string(27) "/var/www/php-bin/kamini/php" |
ORIG_PATH_TRANSLATED |
string(109) "/var/www/kamini/data/www/kamini.artline-studio.ru/index.php/katalog/pechi-kamini/kimry-rossija/serija-provans" |
PHP_SELF |
string(60) "/index.php/katalog/pechi-kamini/kimry-rossija/serija-provans" |
REQUEST_TIME_FLOAT |
float 1615228599.6676 |
REQUEST_TIME |
integer 1615228599 |
argv |
array(1) ( 0 => string(9) "good=3903" ) |
argc |
integer 1 |