Closed KhristoforovEvgenii closed 4 months ago
Hello @KhristoforovEvgenii ! Thank you for your request. I can't reproduce your problem. Please indicate the ONLYOFFICE editor version, OS and browser you are using. If possible, please also attach the file that reproduces the problem
@TatianaKirillova hello! This is my setup:
@KhristoforovEvgenii Thank you!
@KhristoforovEvgenii In version 8.0.1 the problem does not recur. For reliability of verification, please send the docx file itself, where the text disappears when printed
@TatianaKirillova here is the file example file.docx Thank you!
@KhristoforovEvgenii In version 8.0.1. your file is displayed correctly when printed. Need to update version
@TatianaKirillova thank you for the info! I just tried to deploy document server version 8.0.1 with this configuration:
onlyoffice-documentserver:
image: onlyoffice/documentserver:8.0.1
container_name: onlyoffice-documentserver
depends_on:
- onlyoffice-postgresql
- onlyoffice-rabbitmq
environment:
- DB_TYPE=postgres
- DB_HOST=onlyoffice-postgresql
- DB_PORT=5432
- DB_NAME=onlyoffice
- DB_USER=onlyoffice
- AMQP_URI=amqp://guest:guest@onlyoffice-rabbitmq
# Uncomment strings below to enable the JSON Web Token validation.
- JWT_ENABLED=false
#- JWT_SECRET=secret
#- JWT_HEADER=Authorization
#- JWT_IN_BODY=true
ports:
- '88:88'
- '443:443'
stdin_open: true
restart: always
stop_grace_period: 60s
volumes:
- /var/www/onlyoffice/Data
- /var/log/onlyoffice
- /var/lib/onlyoffice/documentserver/App_Data/cache/files
- /var/www/onlyoffice/documentserver-example/public/files
- ./broken_fonts:/usr/share/fonts/truetype/custom
onlyoffice-rabbitmq:
container_name: onlyoffice-rabbitmq
image: rabbitmq
restart: always
expose:
- '5672'
onlyoffice-postgresql:
container_name: onlyoffice-postgresql
image: postgres:9.5
environment:
- POSTGRES_DB=onlyoffice
- POSTGRES_USER=onlyoffice
- POSTGRES_HOST_AUTH_METHOD=trust
restart: always
expose:
- '5432'
but the error persisted. (cleared browser cache).
May be I miss something?
@KhristoforovEvgenii I was able to reproduce the problem! I created issue #67095 for your problem.
@TatianaKirillova nice! Thank you very much
Hello @KhristoforovEvgenii ! The problem with the words not being printed in a certain font is that you do not have permissions for the fonts on that server. The problem is solved with the command: chmod 646 /usr/share/fonts/truetype/custom/*
I close this issue. Feel free to comment or reopen it if you got further questions.
This issue is unique.
Operating System of DocumentServer
Docker
Version information
7.0-ee
Expected Behavior
Actual Behavior
I have a problem loading certain custom fonts, here they are
When adding any of these fonts, when printing a document, Korean characters are not displayed even in the standard font as in the screenshot (Arial)
I also have a problem with other fonts, they are installed and visible in the editor window, but they also disappear in the print window (but do not cause the same problem as I described above). Here examples of these fonts But some fonts work correctly, for example this work font.zip
Reproduction Steps
Issue that breaks default fonts:
Issue that doesn't show custom fonts:
Additional information
No response