CMS Version
Xibo 4.5.0
Installation Method
Custom install using Apache2
Operating System
Ubuntu Server 24.04.4 LTS
Issue
The branding folder does not appear to be in the CMS release files.
In the console it gives a 404 Not Found error for the following files:
- /brand/logo.png
- /brand/theme.css
When looking in the zip file of the CMS release, there is no brand folder present in the library folder.
Not sure if this is the intended solution or work-around:
- Copied all files from xibo-cms/docker/brand to my /library/brand folder.
- Updated my Apache2 configuration with:
Alias /brand "/srv/xibo-cms/library/brand"
<Directory "/srv/xibo-cms/library/brand">
Require all granted
</Directory>
I did the same thing but took the Apache config from the docker setup too.
Alias /brand /srv/xibo-cms/library/brand
<Directory /srv/xibo-cms/library/brand>
php_admin_value engine Off
Options -Indexes -FollowSymLinks -MultiViews
AllowOverride None
Require all granted
</Directory>