Цитата
- Fatal error: Call to a member function http() on a non-object
- Fatal error: Call to a member function https() on a non-object
- Error: Could not load helper image!
- Fatal error: Call to a member function https() on a non-object
- Error: Could not load helper image!
Исправлять так:
1. во всех .php и .tpl файлах
Найдите:
($this->url->https('
Замените на:
((HTTPS_SERVER . 'index.php?route=
2. во всех .php и .tpl файлах
Найдите:
$this->url->https('
Замените на:
(HTTPS_SERVER . 'index.php?route=
3. во всех .php и .tpl файлах
Найдите:
($this->url->http('
Замените на:
((HTTP_SERVER . 'index.php?route=
4. во всех .php и .tpl файлах
Найдите:
$this->url->http('
Замените на:
(HTTP_SERVER . 'index.php?route=
5. во всех .php и .tpl файлах
Найдите:
($url->https('
Замените на:
((HTTPS_SERVER . 'index.php?route=
6. во всех .php и .tpl файлах
Найдите:
$url->https('
Замените на:
(HTTPS_SERVER . 'index.php?route=
7. во всех .php и .tpl файлах
Найдите:
($url->http('
Замените на:
((HTTP_SERVER . 'index.php?route=
8. во всех .php и .tpl файлах
Найдите:
$url->http('
Замените на:
(HTTP_SERVER . 'index.php?route=
9. во всех .php и .tpl файлах
Найдите:
$this->load->helper('image');
Замените на:
$this->load->model('tool/image');
10. во всех .php и .tpl файлах
Найдите:
image_resize(
Замените на:
$this->model_tool_image->resize(
11. в папке admin в .tpl файлах
Найдите:
class="tabs"
Замените на:
class="tabs htabs"

















