Новости Joomla

0 Пользователей и 1 Гость просматривают эту тему.
  • 0 Ответов
  • 2137 Просмотров
*

voland

  • Легенда
  • 11031
  • 588 / 112
  • Эта строка съедает место на вашем мониторе
Не сохраняет логи в actionlogs
« : 14.08.2020, 01:49:56 »
Название:
Не пишет логи, в настройках логгирования действий пользователя нет выбора компонентов

3.9.20 (после обновлений, многих видимо и возможно некорректных)


Решение:
https://github.com/joomla/joomla-cms/issues/30364

На всякий случай продублирую тут (писал не английском, переводить лень, сорри)

Steps to reproduce the issue
Old site after many updates, i couldnt repeat this bug on other sites

Expected result
Must be extensions to choose where to log actions

Actual result
Nothing shows ( administrator/index.php?option=com_config&view=component&component=com_actionlogs )

System information (as much as possible)
doesnt matter (all ok - php 7.2 + all extensions)

Additional comments
I decide problem
There is no data in #__action_logs_extensions

To fix bug you need to SQL it

INSERT INTO `#__action_logs_extensions` (`id`, `extension`) VALUES
(1, 'com_banners'),
(2, 'com_cache'),
(3, 'com_categories'),
(4, 'com_config'),
(5, 'com_contact'),
(6, 'com_content'),
(7, 'com_installer'),
(8, 'com_media'),
(9, 'com_menus'),
(10, 'com_messages'),
(11, 'com_modules'),
(12, 'com_newsfeeds'),
(13, 'com_plugins'),
(14, 'com_redirect'),
(15, 'com_tags'),
(16, 'com_templates'),
(17, 'com_users'),
(18, 'com_checkin');

ALTER TABLE `#__action_logs_extensions`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=19;
PS. I checked DB actuality at administrator/index.php?option=com_installer&view=database and it said everything ok
This needs to be fixed




Статус:
- отправлено разработчикам
Чтобы оставить сообщение,
Вам необходимо Войти или Зарегистрироваться