Category Archives: Xibo

Xibo 修改網頁page template

避免在指派播放網頁的時候會因為activeX被關閉而失敗 修改 {xibo directory}/modules/preview/HtmlTemplateSimple.html 最上面加入 <!– saved from url=(0014)about:internet –>

Posted in Xibo | Leave a comment

Xibo使用web page時出現白邊解決方法

即使在設定上已經選擇了fullscreen,可是在client播放時四週會有白邊 這時候的解決方法為將layout的設定稍為超過,蓋掉白邊…Orz

Posted in Xibo | Leave a comment

Xibo 增加 Menu

page 資料表新增資料 pageID => 流水號 name => 名稱 pageGroupID => groupID menuitem 資料表新增資料 MenuItemID => 流水號 MenuID => 屬於哪一層Menu PageID => 哪一個頁面,對應到 1. 的資料 Args => link,外部link要連http一起打 Text => 顯示資訊 Class => 未知 Img => 圖片 Sequence => 在這一層menu的順序 External … Continue reading

Posted in Xibo | Leave a comment

Xibo 修正上傳中文檔名會空白

修改 {xibo}/3rdparty/jquery-file-upload/UploadHandler.php 主要是因為basename這個function對解析中文會有問題~ protected function trim_file_name($name, $type, $index, $content_range) { // Remove path information and dots around the filename, to prevent uploading // into different directories or replacing hidden system files. // Also remove control characters and spaces (x00..x20) around … Continue reading

Posted in Xibo | Leave a comment

Xibo 增加 display 顯示頁面連結,開啟 rtmp 串流頁面

修改 {xibo}/theme/default/html/display_page_grid.php 修改為 <img src=”../OBSLogo80.png” alt=”” width=”20″ />

Posted in Xibo | Leave a comment

Xibo 修改外部 link 為新開視窗

修改檔案 {xibo}/lib/app/thememanager.class.php $item[‘li’] = ” . $item[‘title’] . ”; 修改為 $item[‘li’] = ” . $item[‘title’] . ”;

Posted in Xibo | Leave a comment

Xibo & Nginx-rtmp

20141226 更新 不要用這個~~因為不穩定~Orz 環境: Ubuntu 14.04.01 1. 安裝build deb需要的套件 apt-get install dpkg-dev 創建source code目錄 mkdir -p /usr/src/nginx cd /usr/src/nginx 透過apt-get下載nginx的source code apt-get source nginx 安裝git apt-get install git 透過git下載nginx-rtmp-module的source code git clone https://github.com/arut/nginx-rtmp-module.git 將rtmp、xlst模組功能加入設定檔中 cd nginx-1.4.6/ vim debian/rules common_configure_flags := … Continue reading

Posted in Nginx, Ubuntu, Xibo | Leave a comment