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

Ошибка авторизации


Recommended Posts

добрый день. На данный момент существует несколько проблем сыязанных с попыткой авторизоваться

2021-12-27 10:57:51 - PHP Notice:  Undefined index: email in /home/***/***/catalog/controller/account/login.php on line 133
2021-12-27 10:57:51 - PHP Notice:  Undefined index: email in /home/***/***/catalog/controller/account/login.php on line 140
 

С чем может быть связана данная проблема?

 

Сама функция:

public function login()
    {
        $json = array();
 
        $this->load->language('account/login');
 
        $this->load->model('account/customer');
 
        // Check how many login attempts have been made.
        $login_info = $this->model_account_customer->getLoginAttempts($this->request->post['email']);
 
        if ($login_info && ($login_info['total'] >= $this->config->get('config_login_attempts')) && strtotime('-1 hour') < strtotime($login_info['date_modified'])) {
            $json['error'] = $this->language->get('error_attempts');
        }
 
        // Check if customer has been approved.
        $customer_info = $this->model_account_customer->getCustomerByEmail($this->request->post['email']);
 
        if ($customer_info && !$customer_info['status']) {
            $json['error'] = $this->language->get('error_approved');
        }
 
        if (!$json) {
            if (!$this->customer->login($this->request->post['email'], $this->request->post['password'])) {
                $json['error'] = $this->language->get('error_login');
 
                $this->model_account_customer->addLoginAttempt($this->request->post['email']);
            } else {
                $this->model_account_customer->deleteLoginAttempts($this->request->post['email']);
            }
        }
 
        if (!$json) {
            // Unset guest
            unset($this->session->data['guest']);
 
            // Default Shipping Address
            $this->load->model('account/address');
 
            if ($this->config->get('config_tax_customer') == 'payment') {
                $this->session->data['payment_address'] = $this->model_account_address->getAddress($this->customer->getAddressId());
            }
 
            if ($this->config->get('config_tax_customer') == 'shipping') {
                $this->session->data['shipping_address'] = $this->model_account_address->getAddress($this->customer->getAddressId());
            }
 
            // Wishlist
            if (isset($this->session->data['wishlist']) && is_array($this->session->data['wishlist'])) {
                $this->load->model('account/wishlist');
 
                foreach ($this->session->data['wishlist'] as $key => $product_id) {
                    $this->model_account_wishlist->addWishlist($product_id);
 
                    unset($this->session->data['wishlist'][$key]);
                }
            }
 
            $json['redirect'] = $this->url->link('common/home', '', true);
        }
 
        $this->response->addHeader('Content-Type: application/json');
        $this->response->setOutput(json_encode($json));
    }

 

Строки 133 и 140

$login_info = $this->model_account_customer->getLoginAttempts($this->request->post['email']);
 
140
$customer_info = $this->model_account_customer->getCustomerByEmail($this->request->post['email']);
Змінено користувачем mixail_88
Надіслати
Поділитися на інших сайтах


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

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

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

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

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

Вхід

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

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

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

Important Information

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