From 38b0c528974ee5fc1b51ef7d3baef07bf39b4172 Mon Sep 17 00:00:00 2001 From: alexandervnuchkov Date: Fri, 11 Oct 2019 18:39:26 +0300 Subject: [PATCH] Fix: minor fix to the troubleshooting article --- .../Linux/Community/Troubleshooting/Troubleshooting.ascx | 5 +++-- .../Linux/Community/Troubleshooting/Troubleshooting.ru.ascx | 5 +++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/Web/Controls/Help/Server/Linux/Community/Troubleshooting/Troubleshooting.ascx b/Web/Controls/Help/Server/Linux/Community/Troubleshooting/Troubleshooting.ascx index e2e3aedc6..a9429fa27 100644 --- a/Web/Controls/Help/Server/Linux/Community/Troubleshooting/Troubleshooting.ascx +++ b/Web/Controls/Help/Server/Linux/Community/Troubleshooting/Troubleshooting.ascx @@ -79,8 +79,9 @@ sudo reboot
  • update the language database so that it displayed correctly:
    mysql -u root -p
    -select textValue from res_data where cultureTitle='ru' limit 1;
    -delete from res_data;
    +USE onlyoffice;
    +SELECT textValue FROM res_data WHERE cultureTitle='ru' LIMIT 1;
    +DELETE FROM res_data;
     source /var/www/onlyoffice/Sql/onlyoffice.resources.sql
     exit
     service monoserve restart
    diff --git a/Web/Controls/Help/Server/Linux/Community/Troubleshooting/Troubleshooting.ru.ascx b/Web/Controls/Help/Server/Linux/Community/Troubleshooting/Troubleshooting.ru.ascx index 28a0e8dd7..0805a2aeb 100644 --- a/Web/Controls/Help/Server/Linux/Community/Troubleshooting/Troubleshooting.ru.ascx +++ b/Web/Controls/Help/Server/Linux/Community/Troubleshooting/Troubleshooting.ru.ascx @@ -79,8 +79,9 @@ sudo reboot
  • обновите языковую базу данных для корректного отображения:
    mysql -u root -p
    -select textValue from res_data where cultureTitle='ru' limit 1;
    -delete from res_data;
    +USE onlyoffice;
    +SELECT textValue FROM res_data WHERE cultureTitle='ru' LIMIT 1;
    +DELETE FROM res_data;
     source /var/www/onlyoffice/Sql/onlyoffice.resources.sql
     exit
     service monoserve restart