Fix: minor fix to the troubleshooting article

This commit is contained in:
alexandervnuchkov 2019-10-11 18:39:26 +03:00
parent a360d19111
commit 38b0c52897
2 changed files with 6 additions and 4 deletions

View File

@ -79,8 +79,9 @@ sudo reboot</code></pre>
</li>
<li>update the language database so that it displayed correctly:
<pre><code>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</code></pre>

View File

@ -79,8 +79,9 @@ sudo reboot</code></pre>
</li>
<li>обновите языковую базу данных для корректного отображения:
<pre><code>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</code></pre>