Trouble after install 1.8

Hello!
I’ve done an installation as usual on my Synology Diskstation and the installation routine passes fine.
When everything ist done i get an error message i don’t know.
After logging in there is the Message:
Schrift Datei nicht lesbar!
Font file unreadable!

Can somebody help me?

Thanks, Michael

I had a great time getting 1.8 to run on a Synology box. However, I did not run into that one. At first I would think this to be a permissins isssue. DMS version? PHP Version?

Hi.
My DSM version is: 6.0.2-8451 - DSM Date: 09.11.2016
my Php version is: 5.6.23

i think the versions are right and i’ve created a new Database for the 1.8 installation while installation process!

:grimacing:
michael

Have you set the server type on the site to Apache? I think it is defaults to NGINX.

The default loading path should be to the “web” folder under the Xibo folder. (Make sure you are not pointing the domain to the web servers “web” folder) From there you should be usnig a .htaccess file for URL re-writing (RewriteEngine On), and of course some rule on how to re-write the URLS. Once that is configured correctly. I think you error will be no longer.

Hi!
Server is set to apache 2.2.
Default loading path is: /ServerIP/xibo/web.

The same problem existing :frowning:
I don’t know why!!!

Thanks for any help or reply…

I think next we should look at your .htaccess file and how you have that configured. If you don’t mind uploading that to dropbox or something, while removing anything you would not like to have public, then providing a link to the file, that would be great.

i think it’s about the .htaccess file in my /xibo/web folder?

It could be any .htaccess file within the path. So if there is one in /xibo and one in /xibo/web then both will be processed. I would recommend only one if you have more than one. If you just have one then yes, it would be the one you are seeing in /xibo/web.

I hope that makes sense.

OK!
My .htaccess file in the path:

/ServerIP/web/xibo/web/ .htaccess

looks this way:

RewriteEngine On

#RewriteBase /xibo

fix authorization header

RewriteCond %{HTTP:Authorization} .+
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]

requests for api authorize

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_URI} ^./authorize/.$
RewriteRule ^ api/authorize/index.php [QSA,L]

requests that start with api go down to api/index.php

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_URI} ^./api/.$
RewriteRule ^ api/index.php [QSA,L]

install

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_URI} ^./install/.$
RewriteRule ^ install/index.php [QSA,L]

maintenance

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_URI} ^./maint/.$
RewriteRule ^ maint/index.php [QSA,L]

all others - i.e. web

RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [QSA,L]

Try changing to this:
RewriteBase /xibo/web

You should be able to access Xibo by browsing to /ServerIP

not working. same problem.
if i am browsing to my server ip then there ist the startsite from my synology :wink:
1.7.8 is runing good on my 1512+.
but i would like to try 1.8.
so i installed the same way and installation worked fine.
there is a database in the phpmyadmin.
and i can log in with my user name.
but then always the same message:
Schrift Datei nicht lesbar!
Font file unreadable!

so now i hav no more idea!
thanks for helping me :wink:
i’m going to try every reply.

The login for the sysnology should be moved to port 5000 for http and 5001 for https
Source

Can’t read font file suggests to me a filesystem permissions issue. Make sure your webserver user has read permissions to the whole CMS installation, and write permissions to the library and cache directories.