COVID2019 и это вот все. Друзья, вся эта история начинает плохо пахнет. Мойте руки, не ходите в люди. Отложите все плановые покупки и положите в носок заначку. Заприте ваших родителей, бабушек-дедушек на даче. Лучше перебдеть чем недобдеть. Берегите себя!

Доска почета

Популярные сообщения

Showing content with the highest reputation on 07/11/14 везде

  1. Daniel

    [Решено] Ошибка при установке.

    Ошибка из-за отсутствия определения переменной в файле /install/controller/step_1.php Добавьте в файл step_1.php после public function index() { if ($this->request->server['REQUEST_METHOD'] == 'POST') { $this->redirect($this->url->link('step_2')); } это if (isset($this->error['warning'])) { $this->data['error_warning'] = $this->error['warning']; } else { $this->data['error_warning'] = ''; } Полное содержание файла будет таким: <?php class ControllerStep1 extends Controller { public function index() { if ($this->request->server['REQUEST_METHOD'] == 'POST') { $this->redirect($this->url->link('step_2')); } if (isset($this->error['warning'])) { $this->data['error_warning'] = $this->error['warning']; } else { $this->data['error_warning'] = ''; } $this->data['action'] = $this->url->link('step_1'); $this->template = 'step_1.tpl'; $this->children = array( 'header', 'footer' ); $this->response->setOutput($this->render()); } } ?>
    1 point