Перейти до вмісту
Пошук в
  • Детальніше...
Шукати результати, які ...
Шукати результати в ...

Fatal error: Uncaught Error:


motovelo

Recommended Posts

Fatal error: Uncaught Error: Call to a member function getInformations() on null in /home/qcsbngrd/domains/motovelo.te.ua/public_html/storage/modification/catalog/controller/common/menu.php:32 Stack trace: #0 /home/qcsbngrd/domains/motovelo.te.ua/public_html/storage/modification/system/engine/action.php(79): ControllerCommonMenu->index(Array) #1 /home/qcsbngrd/domains/motovelo.te.ua/public_html/storage/modification/system/engine/loader.php(48): Action->execute(Object(Registry), Array) #2 /home/qcsbngrd/domains/motovelo.te.ua/public_html/storage/modification/catalog/controller/common/header.php(111): Loader->controller('common/menu') #3 /home/qcsbngrd/domains/motovelo.te.ua/public_html/storage/modification/system/engine/action.php(79): ControllerCommonHeader->index(Array) #4 /home/qcsbngrd/domains/motovelo.te.ua/public_html/storage/modification/system/engine/loader.php(48): Action->execute(Object(Registry), Array) #5 /home/qcsbngrd/domains/motovelo.te.ua/public_html/catalog/controller/common/maintenance.php(25): Loader->co in /home/qcsbngrd/domains/motovelo.te.ua/public_html/storage/modification/catalog/controller/common/menu.php on line 32

Шаблон Fanes

Змінено користувачем motovelo
Надіслати
Поділитися на інших сайтах


Видно автор темы (или модуля или модификатора) забыл объявить модель в menu
$this->load->model('catalog/information');

Надіслати
Поділитися на інших сайтах

<?php
class ControllerCommonMenu extends Controller {
    public function index() {
        $this->load->language('common/menu');

        // Menu
        $this->load->model('catalog/category');

        $this->load->model('catalog/product');

        $data['categories'] = array();

        $categories = $this->model_catalog_category->getCategories(0);

        foreach ($categories as $category) {
            if ($category['top']) {
                // Level 2
                $children_data = array();

                $children = $this->model_catalog_category->getCategories($category['category_id']);

                foreach ($children as $child) {
                    $filter_data = array(
                        'filter_category_id'  => $child['category_id'],
                        'filter_sub_category' => true
                    );

                    $children_data[] = array(
                        'name'  => $child['name'] . ($this->config->get('config_product_count') ? ' (' . $this->model_catalog_product->getTotalProducts($filter_data) . ')' : ''),
                        'href'  => $this->url->link('product/category', 'path=' . $category['category_id'] . '_' . $child['category_id'])
                    );
                }

                // Level 1
                $data['categories'][] = array(
                    'name'     => $category['name'],
                    'children' => $children_data,
                    'column'   => $category['column'] ? $category['column'] : 1,
                    'href'     => $this->url->link('product/category', 'path=' . $category['category_id'])
                );
            }
        }

        return $this->load->view('common/menu', $data);

Надіслати
Поділитися на інших сайтах


@motovelo приведенный код находится в файле с каким адресом?

Ошибка в storage/modification/catalog/controller/common/menu.php

А Вы, кажется, смотрите в catalog/controller/common/menu.php

Надіслати
Поділитися на інших сайтах

11 минут назад, motovelo сказал:

class ControllerCommonMenu extends Controller

Код не из того файла дали. Недавно уже поднималась такая тема, я там ответил что нужно подключить модель статей до обращения к ней, но кривой модификатор так и не нашли)) Так что поищите какой модификатор у вас добавляет эту фигню в меню и исправьте его.

 

Надіслати
Поділитися на інших сайтах

Таки да.....

<?php
class ControllerCommonMenu extends Controller {
    public function index() {
        $this->load->language('common/menu');

        $data['manufacturer'] = $this->url->link('product/manufacturer');
        $data['contact'] = $this->url->link('information/contact');
        $data['special'] = $this->url->link('product/special');
        $data['search'] = $this->load->controller('common/search');
        $data['logged'] = $this->customer->isLogged();
        $data['account'] = $this->url->link('account/account', '', true);
        $data['register'] = $this->url->link('account/register', '', true);
        $data['login'] = $this->url->link('account/login', '', true);
        $data['order'] = $this->url->link('account/order', '', true);
        $data['transaction'] = $this->url->link('account/transaction', '', true);
        $data['download'] = $this->url->link('account/download', '', true);
        $data['logout'] = $this->url->link('account/logout', '', true);
        $data['language'] = $this->load->controller('common/language');
        $data['currency'] = $this->load->controller('common/currency');
        $data['wishlist'] = $this->url->link('account/wishlist', '', true);
        $data['compare'] = $this->url->link('product/compare');
        $data['text_compare'] = sprintf($this->language->get('text_compare'), (isset($this->session->data['compare']) ? count($this->session->data['compare']) : 0));
                if ($this->customer->isLogged()) {
            $this->load->model('account/wishlist');

            $data['text_wishlist'] = sprintf($this->language->get('text_wishlist'), $this->model_account_wishlist->getTotalWishlist());
        } else {
            $data['text_wishlist'] = sprintf($this->language->get('text_wishlist'), (isset($this->session->data['wishlist']) ? count($this->session->data['wishlist']) : 0));
        }        
        $data['informations'] = array();

        foreach ($this->model_catalog_information->getInformations() as $result) {
            if ($result['bottom']) {
                $data['informations'][] = array(
                    'title' => $result['title'],
                    'href'  => $this->url->link('information/information', 'information_id=' . $result['information_id'])
                );
            }
        }
        
        if ($this->config->get('configblog_blog_menu')) {
            $data['blog_menu'] = $this->load->controller('blog/menu');
        } else {
            $data['blog_menu'] = '';
        }

        // Menu
        $this->load->model('catalog/category');

        $this->load->model('catalog/product');

        $data['categories'] = array();

        $categories = $this->model_catalog_category->getCategories(0);

        foreach ($categories as $category) {
            if ($category['top']) {
                // Level 2
                $children_data = array();

                $children = $this->model_catalog_category->getCategories($category['category_id']);

                foreach ($children as $child) {
                    $filter_data = array(
                        'filter_category_id'  => $child['category_id'],
                        'filter_sub_category' => true
                    );

                    $children_data[] = array(
                        'name'  => $child['name'] . ($this->config->get('config_product_count') ? ' (' . $this->model_catalog_product->getTotalProducts($filter_data) . ')' : ''),
                        'href'  => $this->url->link('product/category', 'path=' . $category['category_id'] . '_' . $child['category_id'])
                    );
                }

                // Level 1
                $data['categories'][] = array(
                    'name'     => $category['name'],
                    'children' => $children_data,
                    'column'   => $category['column'] ? $category['column'] : 1,
                    'href'     => $this->url->link('product/category', 'path=' . $category['category_id'])
                );
            }
        }

        return $this->load->view('common/menu', $data);
    }
}
 

Надіслати
Поділитися на інших сайтах


2 минуты назад, motovelo сказал:

foreach ($this->model_catalog_information->getInformations() as $result) {

ну вот где то до этой строчки нужно добавить $this->load->model('catalog/information'); о чём вам уже выше тоже ответили. Но чтобы это сделать - нужно найти модификатор который вносит эти изменения и исправлять его, а не сам модифицированный файл storage/modification/catalog/controller/common/menu.php

Надіслати
Поділитися на інших сайтах

@markimax уже ответил на вопрос. Но, чтобы сделать все как положено, лучше отправьте эту тему в поддержку шаблона! )

Ведь, если Вы внесете изменение прямо в контроллер, то потом потеряете его, если вдруг обновите тему. Да и у других покупаетелей будет та же проблема.

Надіслати
Поділитися на інших сайтах

23 минуты назад, iglin сказал:

Код не из того файла дали. Недавно уже поднималась такая тема, я там ответил что нужно подключить модель статей до обращения к ней, но кривой модификатор так и не нашли)) Так что поищите какой модификатор у вас добавляет эту фигню в меню и исправьте его.

Хм...

В той теме фигурирует модуль SEO DATAFIX Menu...

 

Надіслати
Поділитися на інших сайтах

Створіть аккаунт або увійдіть для коментування

Ви повинні бути користувачем, щоб залишити коментар

Створити обліковий запис

Зареєструйтеся для отримання облікового запису. Це просто!

Зареєструвати аккаунт

Вхід

Уже зареєстровані? Увійдіть тут.

Вхід зараз
  • Зараз на сторінці   0 користувачів

    • Ні користувачів, які переглядиють цю сторінку
×
×
  • Створити...

Important Information

На нашому сайті використовуються файли cookie і відбувається обробка деяких персональних даних користувачів, щоб поліпшити користувальницький інтерфейс. Щоб дізнатися для чого і які персональні дані ми обробляємо перейдіть за посиланням . Якщо Ви натиснете «Я даю згоду», це означає, що Ви розумієте і приймаєте всі умови, зазначені в цьому Повідомленні про конфіденційність.