Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

When I create a component HTML "Exception Value: value too long for type character varying(50)" #7011

Closed
2 tasks done
ta0ma0 opened this issue Dec 25, 2021 · 5 comments
Closed
2 tasks done

Comments

@ta0ma0
Copy link

ta0ma0 commented Dec 25, 2021

Describe the issue

When I create component from HTML file, i'm get error.

I already tried

  • I've read and searched the documentation.
  • I've searched for similar issues in this repository.

Steps to reproduce the behavior

  1. Create component HTML
  2. Save page settings

Expected behavior

Create component from html file

Screenshots

No response

Exception traceback

Environment:


Request Method: POST
Request URL: http://weblate.mysqldocs.ru/create/component/vcs/

Django Version: 3.2.9
Python Version: 3.9.2
Installed Applications:
['customize',
 'weblate.addons',
 'weblate.auth',
 'weblate.checks',
 'weblate.formats',
 'weblate.glossary',
 'weblate.machinery',
 'weblate.trans',
 'weblate.lang',
 'weblate_language_data',
 'weblate.memory',
 'weblate.screenshots',
 'weblate.fonts',
 'weblate.accounts',
 'weblate.configuration',
 'weblate.utils',
 'weblate.vcs',
 'weblate.wladmin',
 'weblate.metrics',
 'weblate',
 'weblate.gitexport',
 'django.contrib.auth',
 'django.contrib.contenttypes',
 'django.contrib.sessions',
 'django.contrib.messages',
 'django.contrib.staticfiles',
 'django.contrib.admin.apps.SimpleAdminConfig',
 'django.contrib.admindocs',
 'django.contrib.sitemaps',
 'django.contrib.humanize',
 'social_django',
 'crispy_forms',
 'compressor',
 'rest_framework',
 'rest_framework.authtoken',
 'django_filters']
Installed Middleware:
['weblate.middleware.RedirectMiddleware',
 'weblate.middleware.ProxyMiddleware',
 'django.middleware.security.SecurityMiddleware',
 'django.contrib.sessions.middleware.SessionMiddleware',
 'django.middleware.csrf.CsrfViewMiddleware',
 'weblate.accounts.middleware.AuthenticationMiddleware',
 'django.contrib.messages.middleware.MessageMiddleware',
 'django.middleware.clickjacking.XFrameOptionsMiddleware',
 'social_django.middleware.SocialAuthExceptionMiddleware',
 'weblate.accounts.middleware.RequireLoginMiddleware',
 'weblate.api.middleware.ThrottlingMiddleware',
 'weblate.middleware.SecurityMiddleware']



Traceback (most recent call last):
  File "/usr/local/lib/python3.9/dist-packages/django/db/models/query.py", line 581, in get_or_create
    return self.get(**kwargs), False
  File "/usr/local/lib/python3.9/dist-packages/weblate/lang/models.py", line 345, in get
    return super().get(*args, **kwargs)
  File "/usr/local/lib/python3.9/dist-packages/django/db/models/query.py", line 435, in get
    raise self.model.DoesNotExist(

During handling of the above exception (Language matching query does not exist.), another exception occurred:
  File "/usr/local/lib/python3.9/dist-packages/django/db/backends/utils.py", line 84, in _execute
    return self.cursor.execute(sql, params)

The above exception (value too long for type character varying(50)
) was the direct cause of the following exception:
  File "/usr/local/lib/python3.9/dist-packages/django/core/handlers/exception.py", line 47, in inner
    response = get_response(request)
  File "/usr/local/lib/python3.9/dist-packages/django/core/handlers/base.py", line 181, in _get_response
    response = wrapped_callback(request, *callback_args, **callback_kwargs)
  File "/usr/local/lib/python3.9/dist-packages/django/views/generic/base.py", line 70, in view
    return self.dispatch(request, *args, **kwargs)
  File "/usr/local/lib/python3.9/dist-packages/django/utils/decorators.py", line 43, in _wrapper
    return bound_method(*args, **kwargs)
  File "/usr/local/lib/python3.9/dist-packages/django/contrib/auth/decorators.py", line 21, in _wrapped_view
    return view_func(request, *args, **kwargs)
  File "/usr/local/lib/python3.9/dist-packages/weblate/trans/views/create.py", line 301, in dispatch
    return super().dispatch(request, *args, **kwargs)
  File "/usr/local/lib/python3.9/dist-packages/django/views/generic/base.py", line 98, in dispatch
    return handler(request, *args, **kwargs)
  File "/usr/local/lib/python3.9/dist-packages/django/views/generic/edit.py", line 172, in post
    return super().post(request, *args, **kwargs)
  File "/usr/local/lib/python3.9/dist-packages/django/views/generic/edit.py", line 141, in post
    if form.is_valid():
  File "/usr/local/lib/python3.9/dist-packages/django/forms/forms.py", line 175, in is_valid
    return self.is_bound and not self.errors
  File "/usr/local/lib/python3.9/dist-packages/django/forms/forms.py", line 170, in errors
    self.full_clean()
  File "/usr/local/lib/python3.9/dist-packages/django/forms/forms.py", line 374, in full_clean
    self._post_clean()
  File "/usr/local/lib/python3.9/dist-packages/django/forms/models.py", line 413, in _post_clean
    self.instance.full_clean(exclude=exclude, validate_unique=False)
  File "/usr/local/lib/python3.9/dist-packages/django/db/models/base.py", line 1223, in full_clean
    self.clean()
  File "/usr/local/lib/python3.9/dist-packages/weblate/trans/models/component.py", line 2493, in clean
    self.clean_template()
  File "/usr/local/lib/python3.9/dist-packages/weblate/trans/models/component.py", line 2386, in clean_template
    lang = Language.objects.auto_get_or_create(
  File "/usr/local/lib/python3.9/dist-packages/django/db/models/manager.py", line 85, in manager_method
    return getattr(self.get_queryset(), name)(*args, **kwargs)
  File "/usr/local/lib/python3.9/dist-packages/weblate/lang/models.py", line 256, in auto_get_or_create
    return self.auto_create(ret, create)
  File "/usr/local/lib/python3.9/dist-packages/weblate/lang/models.py", line 266, in auto_create
    lang = self.get_or_create(code=code, defaults={"name": name})[0]
  File "/usr/local/lib/python3.9/dist-packages/django/db/models/query.py", line 588, in get_or_create
    return self.create(**params), True
  File "/usr/local/lib/python3.9/dist-packages/django/db/models/query.py", line 453, in create
    obj.save(force_insert=True, using=self.db)
  File "/usr/local/lib/python3.9/dist-packages/weblate/lang/models.py", line 488, in save
    return super().save(*args, **kwargs)
  File "/usr/local/lib/python3.9/dist-packages/django/db/models/base.py", line 726, in save
    self.save_base(using=using, force_insert=force_insert,
  File "/usr/local/lib/python3.9/dist-packages/django/db/models/base.py", line 763, in save_base
    updated = self._save_table(
  File "/usr/local/lib/python3.9/dist-packages/django/db/models/base.py", line 868, in _save_table
    results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw)
  File "/usr/local/lib/python3.9/dist-packages/django/db/models/base.py", line 906, in _do_insert
    return manager._insert(
  File "/usr/local/lib/python3.9/dist-packages/django/db/models/manager.py", line 85, in manager_method
    return getattr(self.get_queryset(), name)(*args, **kwargs)
  File "/usr/local/lib/python3.9/dist-packages/django/db/models/query.py", line 1270, in _insert
    return query.get_compiler(using=using).execute_sql(returning_fields)
  File "/usr/local/lib/python3.9/dist-packages/django/db/models/sql/compiler.py", line 1416, in execute_sql
    cursor.execute(sql, params)
  File "/usr/local/lib/python3.9/dist-packages/django/db/backends/utils.py", line 98, in execute
    return super().execute(sql, params)
  File "/usr/local/lib/python3.9/dist-packages/django/db/backends/utils.py", line 66, in execute
    return self._execute_with_wrappers(sql, params, many=False, executor=self._execute)
  File "/usr/local/lib/python3.9/dist-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers
    return executor(sql, params, many, context)
  File "/usr/local/lib/python3.9/dist-packages/django/db/backends/utils.py", line 84, in _execute
    return self.cursor.execute(sql, params)
  File "/usr/local/lib/python3.9/dist-packages/django/db/utils.py", line 90, in __exit__
    raise dj_exc_value.with_traceback(traceback) from exc_value
  File "/usr/local/lib/python3.9/dist-packages/django/db/backends/utils.py", line 84, in _execute
    return self.cursor.execute(sql, params)

Exception Type: DataError at /create/component/vcs/
Exception Value: value too long for type character varying(50)

Im did try change value in /usr/local/lib/python3.9/dist-packages/weblate/configuration/models.py

name = models.CharField(max_length=100)

to 255, but i can's start makemigrations.

Blocked command: 'makemigrations'
This command is restricted for developers only.


### How do you run Weblate?

Docker container

### Weblate versions

* Weblate: 4.9.1
 * Django: 3.2.9
 * siphashc: 2.1
 * translate-toolkit: 3.5.1
 * lxml: 4.6.4
 * Pillow: 8.4.0
 * bleach: 4.1.0
 * python-dateutil: 2.8.2
 * social-auth-core: 4.1.0
 * social-auth-app-django: 5.0.0
 * django-crispy-forms: 1.13.0
 * oauthlib: 3.1.1
 * django-compressor: 2.4.1
 * djangorestframework: 3.12.4
 * django-filter: 21.1
 * django-appconf: 1.0.5
 * user-agents: 2.2.0
 * filelock: 3.4.0
 * setuptools: 58.5.3
 * jellyfish: 0.8.9
 * openpyxl: 3.0.9
 * celery: 5.2.0
 * kombu: 5.2.2
 * translation-finder: 2.10
 * weblate-language-data: 2021.6
 * html2text: 2020.1.16
 * pycairo: 1.16.2
 * pygobject: 3.38.0
 * diff-match-patch: 20200713
 * requests: 2.26.0
 * django-redis: 5.0.0
 * hiredis: 2.0.0
 * sentry_sdk: 1.5.0
 * Cython: 0.29.24
 * misaka: 2.1.1
 * GitPython: 3.1.24
 * borgbackup: 1.1.17
 * pyparsing: 3.0.6
 * pyahocorasick: 1.4.2
 * python-redis-lock: 3.7.0
 * Python: 3.9.2
 * Git: 2.30.2
 * psycopg2: 2.9.2
 * psycopg2-binary: 2.9.2
 * phply: 1.2.5
 * chardet: 4.0.0
 * ruamel.yaml: 0.17.17
 * tesserocr: 2.5.2
 * akismet: 1.1
 * boto3: 1.20.10
 * zeep: 4.1.0
 * aeidon: 1.10.1
 * iniparse: 0.5
 * mysqlclient: 2.1.0
 * Mercurial: 5.9.3
 * git-svn: 2.30.2
 * git-review: 2.1.0
 * Redis server: 6.2.6
 * PostgreSQL server: 13.5
 * Database backends: django.db.backends.postgresql
 * Cache backends: default:RedisCache, avatar:FileBasedCache
 * Email setup: django.core.mail.backends.smtp.EmailBackend: smtp.beget.com
 * OS encoding: filesystem=utf-8, default=utf-8
 * Celery: redis://cache:6379/1, redis://cache:6379/1, regular
 * Platform: Linux 5.4.0-88-generic (x86_64)


### Weblate deploy checks

```shell
CRITICALS:
?: (weblate.E027) The path /app/data/avatar-cache is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/avatar-cache/2894fd080d09146faf781f9122ccd7cf.djcache is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/avatar-cache/552fe80b9b73e0b55d1c6fc5a2590bcf.djcache is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/avatar-cache/934c5312ec691f037e0cb0e7b8aaca39.djcache is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/backups is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/backups/database.sql is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/backups/environment.yml is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/backups/settings-expanded.py is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/backups/settings.py is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/cache is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/cache/fonts is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/cache/fonts/263bb5fc-f216-4354-9c07-607de5a03ffc-le64.cache-7 is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/cache/fonts/74b25bbb-7549-450f-b408-78b0cc4a6ebf-le64.cache-7 is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/cache/fonts/8c4586ad-ffca-4b02-9c7d-9d5e49571070-le64.cache-7 is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/cache/fonts/CACHEDIR.TAG is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/cache/fonts/a0775639-24bd-4a46-a5a1-5cabff72dfa8-le64.cache-7 is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/cache/fonts/baad8059-445c-4f42-8cf4-f86ebf3d81ea-le64.cache-7 is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/cache/fonts/d4204d4f-ae46-4dd6-8919-0de27796d4cd-le64.cache-7 is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/cache/fonts/d55fd1a7-d698-49b6-9735-029d07d254b6-le64.cache-7 is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/celery is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/celery/beat-schedule is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/fonts is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/fonts/fonts.conf is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/home is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/home/.config is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/home/.config/git is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/home/.config/git/attributes is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/home/.gitconfig is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/python is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/python/customize is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/python/customize/__init__.py is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/python/customize/__pycache__ is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/python/customize/__pycache__/__init__.cpython-39.pyc is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/python/customize/__pycache__/models.cpython-39.pyc is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/python/customize/models.py is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/python/customize/static is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/secret is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/ssh is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/ssh/bin-e4f74916e3e7c97a is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/ssh/bin-e4f74916e3e7c97a/scp is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/ssh/bin-e4f74916e3e7c97a/ssh is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/ssh/known_hosts is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/vcs is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/vcs/mysql-8-0-reference-manual is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/vcs/mysql-8-0-reference-manual/1-3-what-is-new-in-mysql-8-0 is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/vcs/mysql-8-0-reference-manual/1-3-what-is-new-in-mysql-8-0/.git is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/vcs/mysql-8-0-reference-manual/1-3-what-is-new-in-mysql-8-0/.git/FETCH_HEAD is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/vcs/mysql-8-0-reference-manual/1-3-what-is-new-in-mysql-8-0/.git/HEAD is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/vcs/mysql-8-0-reference-manual/1-3-what-is-new-in-mysql-8-0/.git/ORIG_HEAD is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/vcs/mysql-8-0-reference-manual/1-3-what-is-new-in-mysql-8-0/.git/branches is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/vcs/mysql-8-0-reference-manual/1-3-what-is-new-in-mysql-8-0/.git/config is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/vcs/mysql-8-0-reference-manual/1-3-what-is-new-in-mysql-8-0/.git/description is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/vcs/mysql-8-0-reference-manual/1-3-what-is-new-in-mysql-8-0/.git/hooks is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/vcs/mysql-8-0-reference-manual/1-3-what-is-new-in-mysql-8-0/.git/hooks/applypatch-msg.sample is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/vcs/mysql-8-0-reference-manual/1-3-what-is-new-in-mysql-8-0/.git/hooks/commit-msg.sample is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/vcs/mysql-8-0-reference-manual/1-3-what-is-new-in-mysql-8-0/.git/hooks/fsmonitor-watchman.sample is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/vcs/mysql-8-0-reference-manual/1-3-what-is-new-in-mysql-8-0/.git/hooks/post-update.sample is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/vcs/mysql-8-0-reference-manual/1-3-what-is-new-in-mysql-8-0/.git/hooks/pre-applypatch.sample is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/vcs/mysql-8-0-reference-manual/1-3-what-is-new-in-mysql-8-0/.git/hooks/pre-commit.sample is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/vcs/mysql-8-0-reference-manual/1-3-what-is-new-in-mysql-8-0/.git/hooks/pre-merge-commit.sample is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/vcs/mysql-8-0-reference-manual/1-3-what-is-new-in-mysql-8-0/.git/hooks/pre-push.sample is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/vcs/mysql-8-0-reference-manual/1-3-what-is-new-in-mysql-8-0/.git/hooks/pre-rebase.sample is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/vcs/mysql-8-0-reference-manual/1-3-what-is-new-in-mysql-8-0/.git/hooks/pre-receive.sample is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/vcs/mysql-8-0-reference-manual/1-3-what-is-new-in-mysql-8-0/.git/hooks/prepare-commit-msg.sample is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/vcs/mysql-8-0-reference-manual/1-3-what-is-new-in-mysql-8-0/.git/hooks/push-to-checkout.sample is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/vcs/mysql-8-0-reference-manual/1-3-what-is-new-in-mysql-8-0/.git/hooks/update.sample is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/vcs/mysql-8-0-reference-manual/1-3-what-is-new-in-mysql-8-0/.git/index is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/vcs/mysql-8-0-reference-manual/1-3-what-is-new-in-mysql-8-0/.git/info is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/vcs/mysql-8-0-reference-manual/1-3-what-is-new-in-mysql-8-0/.git/info/exclude is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/vcs/mysql-8-0-reference-manual/1-3-what-is-new-in-mysql-8-0/.git/logs is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/vcs/mysql-8-0-reference-manual/1-3-what-is-new-in-mysql-8-0/.git/logs/HEAD is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/vcs/mysql-8-0-reference-manual/1-3-what-is-new-in-mysql-8-0/.git/logs/refs is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/vcs/mysql-8-0-reference-manual/1-3-what-is-new-in-mysql-8-0/.git/logs/refs/heads is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/vcs/mysql-8-0-reference-manual/1-3-what-is-new-in-mysql-8-0/.git/logs/refs/heads/main is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/vcs/mysql-8-0-reference-manual/1-3-what-is-new-in-mysql-8-0/.git/logs/refs/remotes is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/vcs/mysql-8-0-reference-manual/1-3-what-is-new-in-mysql-8-0/.git/logs/refs/remotes/origin is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/vcs/mysql-8-0-reference-manual/1-3-what-is-new-in-mysql-8-0/.git/logs/refs/remotes/origin/main is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/vcs/mysql-8-0-reference-manual/1-3-what-is-new-in-mysql-8-0/.git/objects is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/vcs/mysql-8-0-reference-manual/1-3-what-is-new-in-mysql-8-0/.git/objects/00 is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/vcs/mysql-8-0-reference-manual/1-3-what-is-new-in-mysql-8-0/.git/objects/00/ea0d3c37e8d569b51ae4f1a5e65a078f9b27ec is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/vcs/mysql-8-0-reference-manual/1-3-what-is-new-in-mysql-8-0/.git/objects/39 is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/vcs/mysql-8-0-reference-manual/1-3-what-is-new-in-mysql-8-0/.git/objects/39/03271f0800450f2a6bd42d10a1c75af5801db8 is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/vcs/mysql-8-0-reference-manual/1-3-what-is-new-in-mysql-8-0/.git/objects/42 is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/vcs/mysql-8-0-reference-manual/1-3-what-is-new-in-mysql-8-0/.git/objects/42/7c689475aa6046b6b5396be0273b53692f591d is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/vcs/mysql-8-0-reference-manual/1-3-what-is-new-in-mysql-8-0/.git/objects/4c is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/vcs/mysql-8-0-reference-manual/1-3-what-is-new-in-mysql-8-0/.git/objects/4c/7c5f738b27a810aa442deab6b5c7108437b9cd is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/vcs/mysql-8-0-reference-manual/1-3-what-is-new-in-mysql-8-0/.git/objects/59 is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/vcs/mysql-8-0-reference-manual/1-3-what-is-new-in-mysql-8-0/.git/objects/59/9f42f08f738e0217c2aa73200d011657f0e24e is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/vcs/mysql-8-0-reference-manual/1-3-what-is-new-in-mysql-8-0/.git/objects/5a is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/vcs/mysql-8-0-reference-manual/1-3-what-is-new-in-mysql-8-0/.git/objects/5a/ed9bac354910313f2f7bb0ba772ace87d61876 is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/vcs/mysql-8-0-reference-manual/1-3-what-is-new-in-mysql-8-0/.git/objects/67 is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/vcs/mysql-8-0-reference-manual/1-3-what-is-new-in-mysql-8-0/.git/objects/67/2653baf99697da9263119c5c3b0c2489430fcf is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/vcs/mysql-8-0-reference-manual/1-3-what-is-new-in-mysql-8-0/.git/objects/88 is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/vcs/mysql-8-0-reference-manual/1-3-what-is-new-in-mysql-8-0/.git/objects/88/61261ba9b4155f2fa702e1df95584f166a4050 is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/vcs/mysql-8-0-reference-manual/1-3-what-is-new-in-mysql-8-0/.git/objects/8f is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/vcs/mysql-8-0-reference-manual/1-3-what-is-new-in-mysql-8-0/.git/objects/8f/1050ee5cc844a55ec3e31858d59e6e60cd2714 is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/vcs/mysql-8-0-reference-manual/1-3-what-is-new-in-mysql-8-0/.git/objects/9e is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/vcs/mysql-8-0-reference-manual/1-3-what-is-new-in-mysql-8-0/.git/objects/9e/06396b2ce32a013cd48f976097447e25bc0aa4 is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/vcs/mysql-8-0-reference-manual/1-3-what-is-new-in-mysql-8-0/.git/objects/a4 is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/vcs/mysql-8-0-reference-manual/1-3-what-is-new-in-mysql-8-0/.git/objects/a4/33b0b7b3e7629592714bbe1595890bdf5d9738 is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/vcs/mysql-8-0-reference-manual/1-3-what-is-new-in-mysql-8-0/.git/objects/ab is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/vcs/mysql-8-0-reference-manual/1-3-what-is-new-in-mysql-8-0/.git/objects/ab/b8ea4ee96ce3b554f5b07bd4af833c4f704314 is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/vcs/mysql-8-0-reference-manual/1-3-what-is-new-in-mysql-8-0/.git/objects/c8 is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/vcs/mysql-8-0-reference-manual/1-3-what-is-new-in-mysql-8-0/.git/objects/c8/5255fae5c4391794509fc7bb82ee6ac3fc4a82 is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/vcs/mysql-8-0-reference-manual/1-3-what-is-new-in-mysql-8-0/.git/objects/d3 is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/vcs/mysql-8-0-reference-manual/1-3-what-is-new-in-mysql-8-0/.git/objects/d3/0f9b4174c41883578ff38ca5e7d9018b0ef02b is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/vcs/mysql-8-0-reference-manual/1-3-what-is-new-in-mysql-8-0/.git/objects/e4 is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/vcs/mysql-8-0-reference-manual/1-3-what-is-new-in-mysql-8-0/.git/objects/e4/16ac2df2aaa371f0fc2e196b19f68834304209 is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/vcs/mysql-8-0-reference-manual/1-3-what-is-new-in-mysql-8-0/.git/objects/e6 is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/vcs/mysql-8-0-reference-manual/1-3-what-is-new-in-mysql-8-0/.git/objects/e6/40c2d9e82d1167b2ce4c2bb5e988304b0ac86a is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/vcs/mysql-8-0-reference-manual/1-3-what-is-new-in-mysql-8-0/.git/objects/e9 is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/vcs/mysql-8-0-reference-manual/1-3-what-is-new-in-mysql-8-0/.git/objects/e9/e1fa6429296b2b81319f233295d5e3aad56304 is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/vcs/mysql-8-0-reference-manual/1-3-what-is-new-in-mysql-8-0/.git/objects/ec is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/vcs/mysql-8-0-reference-manual/1-3-what-is-new-in-mysql-8-0/.git/objects/ec/e745416b36642f838e2061507a9a18e9ba68e3 is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/vcs/mysql-8-0-reference-manual/1-3-what-is-new-in-mysql-8-0/.git/objects/info is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/vcs/mysql-8-0-reference-manual/1-3-what-is-new-in-mysql-8-0/.git/objects/pack is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/vcs/mysql-8-0-reference-manual/1-3-what-is-new-in-mysql-8-0/.git/refs is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/vcs/mysql-8-0-reference-manual/1-3-what-is-new-in-mysql-8-0/.git/refs/heads is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/vcs/mysql-8-0-reference-manual/1-3-what-is-new-in-mysql-8-0/.git/refs/heads/main is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/vcs/mysql-8-0-reference-manual/1-3-what-is-new-in-mysql-8-0/.git/refs/remotes is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/vcs/mysql-8-0-reference-manual/1-3-what-is-new-in-mysql-8-0/.git/refs/remotes/origin is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/vcs/mysql-8-0-reference-manual/1-3-what-is-new-in-mysql-8-0/.git/refs/remotes/origin/main is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/vcs/mysql-8-0-reference-manual/1-3-what-is-new-in-mysql-8-0/.git/refs/tags is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/vcs/mysql-8-0-reference-manual/1-3-what-is-new-in-mysql-8-0/.git/shallow is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/vcs/mysql-8-0-reference-manual/1-3-what-is-new-in-mysql-8-0/MySQL __ MySQL 8.0 Reference Manual __ 1.3 What Is New in MySQL 8.0.html is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/vcs/mysql-8-0-reference-manual/1-3-what-is-new-in-mysql-8-0/MySQL __ MySQL 8.0 Reference Manual __ 1.3 What Is New in MySQL 8.0_files is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/vcs/mysql-8-0-reference-manual/1-3-what-is-new-in-mysql-8-0/MySQL __ MySQL 8.0 Reference Manual __ 1.3 What Is New in MySQL 8.0_files/analytics-production.js is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/vcs/mysql-8-0-reference-manual/1-3-what-is-new-in-mysql-8-0/MySQL __ MySQL 8.0 Reference Manual __ 1.3 What Is New in MySQL 8.0_files/analytics.js is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/vcs/mysql-8-0-reference-manual/1-3-what-is-new-in-mysql-8-0/MySQL __ MySQL 8.0 Reference Manual __ 1.3 What Is New in MySQL 8.0_files/common.js is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/vcs/mysql-8-0-reference-manual/1-3-what-is-new-in-mysql-8-0/MySQL __ MySQL 8.0 Reference Manual __ 1.3 What Is New in MySQL 8.0_files/docs-20210810.min.css is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/vcs/mysql-8-0-reference-manual/1-3-what-is-new-in-mysql-8-0/MySQL __ MySQL 8.0 Reference Manual __ 1.3 What Is New in MySQL 8.0_files/get.html is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/vcs/mysql-8-0-reference-manual/1-3-what-is-new-in-mysql-8-0/MySQL __ MySQL 8.0 Reference Manual __ 1.3 What Is New in MySQL 8.0_files/infinity_common.js is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/vcs/mysql-8-0-reference-manual/1-3-what-is-new-in-mysql-8-0/MySQL __ MySQL 8.0 Reference Manual __ 1.3 What Is New in MySQL 8.0_files/main-20210810.min.css is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/vcs/mysql-8-0-reference-manual/1-3-what-is-new-in-mysql-8-0/MySQL __ MySQL 8.0 Reference Manual __ 1.3 What Is New in MySQL 8.0_files/notice is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/vcs/mysql-8-0-reference-manual/1-3-what-is-new-in-mysql-8-0/MySQL __ MySQL 8.0 Reference Manual __ 1.3 What Is New in MySQL 8.0_files/odc.js is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/vcs/mysql-8-0-reference-manual/1-3-what-is-new-in-mysql-8-0/MySQL __ MySQL 8.0 Reference Manual __ 1.3 What Is New in MySQL 8.0_files/print-20210810.min.css is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/vcs/mysql-8-0-reference-manual/1-3-what-is-new-in-mysql-8-0/MySQL __ MySQL 8.0 Reference Manual __ 1.3 What Is New in MySQL 8.0_files/s_code_remote.js is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/vcs/mysql-8-0-reference-manual/1-3-what-is-new-in-mysql-8-0/MySQL __ MySQL 8.0 Reference Manual __ 1.3 What Is New in MySQL 8.0_files/site-20210916.min.js is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/vcs/mysql-8-0-reference-manual/1-3-what-is-new-in-mysql-8-0/MySQL __ MySQL 8.0 Reference Manual __ 1.3 What Is New in MySQL 8.0_files/truste-oraclelib.js is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/vcs/mysql-8-0-reference-manual/1-3-what-is-new-in-mysql-8-0/MySQL __ MySQL 8.0 Reference Manual __ 1.3 What Is New in MySQL 8.0_files/v1.7-940 is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/vcs/project is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/vcs/project/component is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/vcs/project/component/.git is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/vcs/project/component/.git/HEAD is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/vcs/project/component/.git/branches is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/vcs/project/component/.git/config is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/vcs/project/component/.git/description is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/vcs/project/component/.git/hooks is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/vcs/project/component/.git/hooks/applypatch-msg.sample is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/vcs/project/component/.git/hooks/commit-msg.sample is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/vcs/project/component/.git/hooks/fsmonitor-watchman.sample is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/vcs/project/component/.git/hooks/post-update.sample is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/vcs/project/component/.git/hooks/pre-applypatch.sample is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/vcs/project/component/.git/hooks/pre-commit.sample is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/vcs/project/component/.git/hooks/pre-merge-commit.sample is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/vcs/project/component/.git/hooks/pre-push.sample is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/vcs/project/component/.git/hooks/pre-rebase.sample is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/vcs/project/component/.git/hooks/pre-receive.sample is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/vcs/project/component/.git/hooks/prepare-commit-msg.sample is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/vcs/project/component/.git/hooks/push-to-checkout.sample is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/vcs/project/component/.git/hooks/update.sample is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/vcs/project/component/.git/info is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/vcs/project/component/.git/info/exclude is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/vcs/project/component/.git/objects is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/vcs/project/component/.git/objects/info is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/vcs/project/component/.git/objects/pack is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/vcs/project/component/.git/refs is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/vcs/project/component/.git/refs/heads is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E027) The path /app/data/vcs/project/component/.git/refs/tags is owned by a different user, check your DATA_DIR settings.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#file-permissions
?: (weblate.E034) The Celery process is outdated or misconfigured. Following items differ: uid
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#celery

WARNINGS:
?: (security.W004) You have not set a value for the SECURE_HSTS_SECONDS setting. If your entire site is served only over SSL, you may want to consider setting a value and enabling HTTP Strict Transport Security. Be sure to read the documentation first; enabling HSTS carelessly can cause serious, irreversible problems.
?: (security.W008) Your SECURE_SSL_REDIRECT setting is not set to True. Unless your site should be available over both SSL and non-SSL connections, you may want to either set this setting True or configure a load balancer or reverse-proxy server to redirect all connections to HTTPS.
?: (security.W012) SESSION_COOKIE_SECURE is not set to True. Using a secure-only session cookie makes it more difficult for network traffic sniffers to hijack user sessions.
?: (security.W018) You should not have DEBUG set to True in deployment.

INFOS:
?: (weblate.I021) Error collection is not set up, it is highly recommended for production use
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/install.html#collecting-errors
?: (weblate.I028) Backups are not configured, it is highly recommended for production use
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/backup.html
?: (weblate.I031) New Weblate version is available, please upgrade to 4.10.1.
	HINT: https://docs.weblate.org/en/weblate-4.9.1/admin/upgrade.html

System check identified 177 issues (1 silenced).
root@4cfb40e93c07:/#

Additional context

No response

@nijel
Copy link
Member

nijel commented Dec 28, 2021

Most likely, the HTML document has too complex structure, and it does not fit into Weblate database.

@ta0ma0
Copy link
Author

ta0ma0 commented Dec 30, 2021

The situation was repeated with the .md file, only after the file name was shortened, which was 73 characters long. Its OK now.

@ta0ma0 ta0ma0 closed this as completed Dec 30, 2021
@github-actions
Copy link

The issue you have reported is now resolved. If you don’t feel it’s right, please follow its labels to get a clue for further steps.

  • In case you see a similar problem, please open a separate issue.
  • If you are happy with the outcome, don’t hesitate to support Weblate by making a donation.

@jackfrost5446
Copy link

What is the way to solve this?
The same problem happened to me.

@ta0ma0
Copy link
Author

ta0ma0 commented May 20, 2022

What is the way to solve this? The same problem happened to me.

I am just convert source file to md format

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants