Добрый день!
Пожскажите пожалуйста, весь лог ошибок засыпан двумя строками:
2013-05-11 14:23:59 - PHP Notice: Undefined index: HTTP_HOST in /var/www/******/data/www/*******/index.php on line 179 2013-05-11 14:23:59 - PHP Notice: Undefined index: HTTP_HOST in /var/www/******/data/www/*******/system/library/currency.php on line 45
Вот эти строки:
index.php
178 if (!isset($request->cookie['language']) || $request->cookie['language'] != $code) {
179 setcookie('language', $code, time() + 60 * 60 * 24 * 30, '/', $request->server['HTTP_HOST']);
180 }
currency.php
44 if ((!isset($this->request->cookie['currency'])) || ($this->request->cookie['currency'] != $currency)) {
45 setcookie('currency', $currency, time() + 60 * 60 * 24 * 30, '/', $this->request->server['HTTP_HOST']);
46 }
В чем может быть проблема?
Заранее спасибо за помощь!