Difference between revisions of "Xibo"
Jump to navigation
Jump to search
(One intermediate revision by the same user not shown) | |||
Line 6: | Line 6: | ||
Xibo Open Source Digital Signage is a powerful Digital Signage content management system and suite of signage players. <br /> | Xibo Open Source Digital Signage is a powerful Digital Signage content management system and suite of signage players. <br /> | ||
− | See https://xibo.org.uk/ for more information | + | See https://xibo.org.uk/ for more information <br /> |
+ | |||
+ | I still use version 1.7.9 didn't test 1.8.2 since everything is running fine. | ||
== Installation == | == Installation == | ||
Line 56: | Line 58: | ||
cd ../.. | cd ../.. | ||
mkdir xibo-library | mkdir xibo-library | ||
− | chmod -R | + | chmod -R 755 xibo-library |
chown -R www:www xibo-library | chown -R www:www xibo-library | ||
Latest revision as of 12:42, 12 October 2017
Description
Xibo Open Source Digital Signage is a powerful Digital Signage content management system and suite of signage players.
See https://xibo.org.uk/ for more information
I still use version 1.7.9 didn't test 1.8.2 since everything is running fine.
Installation
Create a new database
mysql create database xibo; grant all privileges on xibo.* to username identified by 'password'; flush privileges; exit
Create an ibay in server manager, with the following typical settings:
Information bay name - xibo, Description - xibo, Group - Admin, User access - Write = group, Read = everyone, Public access via web - Entire Internet (no password required), Execution of dynamic content - Enabled
update any base components
yum update -y
We need Epel
/sbin/e-smith/db yum_repositories set epel repository \ Name 'Epel - EL6' \ BaseURL 'http://download.fedoraproject.org/pub/epel/6/$basearch' \ MirrorList 'http://mirrors.fedoraproject.org/mirrorlist?repo=epel-6&arch=$basearch' \ EnableGroups no \ GPGCheck yes \ GPGKey http://dl.fedoraproject.org/pub/epel/RPM-GPG-KEY-EPEL \ Exclude perl-Razor-Agent \ Visible no \ status disabled
signal-event yum-modify
yum install php-soap php-mcrypt --enablerep epel
We need to adjust Upload Max File Size and Post Maximum Size to 128M
db configuration setprop php PostMaxSize 128M db configuration setprop php UploadMaxFilesize 128M expand-template /etc/php.ini /etc/init.d/httpd-e-smith restart
Now download and install xibo into the ibay xibo. (i am still running version 1.7.9 there is a new version available but didn't try it yet!!)
so in this case i use
cd /home/e-smith/files/ibays/xibo/html wget https://github.com/xibosignage/xibo-cms/archive/1.7.9.tar.gz sudo tar zxvf 1.7.9.tar.gz sudo mv xibo-cms-1.7.9 xibo chmod 755 -R xibo cd ../.. mkdir xibo-library chmod -R 755 xibo-library chown -R www:www xibo-library
Now go to
http://YOURSERVER/xibo/xibo
Follow instructions and begin the setup.
Clean up
cd /home/e-smith/files/ibays/xibo/html/ rm 1.7.9.tar.gz