2007年8月7日 星期二

調整MediaWiki顯示時間

預設系統時間與台灣時間不一樣,系統採用國際換日線時間,若要調整系統時間,在LocalSettings.php,做設定台灣時間。

#Set Default Timezone
$wgLocaltimezone = "Asia/Taipei";
#Calculate the timezone offset with UTC
$oldtz = getenv("TZ");
putenv("TZ=$wgLocaltimezone");
# $wgLocalTZoffset = date("Z") / 3600; # Versions before 1.7.0 used $wgLocalTZoffset as hours.
$wgLocalTZoffset = date("Z") / 60; # After 1.7.0 offset as minutes
putenv("TZ=$oldtz");

http://www.tsima.org.tw/wiki/index.php/%E6%9C%9F%E5%88%8A/MediaWiki%E7%B6%B2%E7%AB%99%E6%9E%B6%E8%A8%AD%E8%A8%AD%E5%AE%9A#.E9.96.8B.E5.95.9F.E5.AD.90.E9.A0.81.E9.9D.A2.E5.8A.9F.E8.83.BD

若個別使者,可以 My preferences,date and time,設定自己的時間。

2007年6月25日 星期一

joomla 轉移

從一個站台搬到另外一個站台的步驟:
  1. copy整個網站資料
  2. 備份並還原資料庫
  3. Edit your configuration.php file to reflect the new values:
    $mosConfig_user = 'joomla_joomla';

$mosConfig_password = 'password';

$mosConfig_db = 'joomla_joomla';

$mosConfig_absolute_path = '/home/joomla/public_html';

$mosConfig_live_site = 'http://www.joomla.org';

$mosConfig_cachepath = '/your absolute path/cache';

2007年6月16日 星期六

測試你網站的速度

http://www.pingdom.com/tools/fpt/

可以測試你網站的速度。

2007年4月27日 星期五

如何將WIKI搬家,或複製一份

提供異地備份或mirror site 的方法。根據官方說法,建議在同樣的平台與software的情況下運作。官方網站

步驟如下:
1.備份資料庫。

2.複製全部的wiki 資料。包括skin、 extensions、 LocalSettings.php

3.re-create the database
在新的一台機器建立資料庫名稱,與建立一個 wiki 的使用者,有權限存取wiki 的資料夾。
註:你可以在 LocalSettings.php 查到當初設定的使用者名稱與密碼。$wgDBuser and $wgDBpassword two parameters.

4.import database
可以用 dump的方法,或 phpmyadmin 將資料複製。

5.Import wiki file

6.check the configuration file
See
LocalSettings.php

$IP Needs to be correct for the paths on the new server
$wgScriptPath Needs to be correct for the path on the new server
$wgDBserver Check the database server name is correct
$wgDBname This might have changed in a shared hosting environment
$wgDBuser This might have changed in a shared hosting environment
$wgDBpassword Check this is correct for the new user


2007年4月25日 星期三

如何修改 navigation bar

要如何修改 navigation bar。
可以參考 http://www.mediawiki.org/wiki/Manual:Navigation_bar

但在1.9 已後的版本,並沒有 mediawiki:Sidebar 這個頁面。

我的作法是先去安裝,Inputbox,這extenions,就可以隨意建置一個新頁面。

再去修改 mediawiki:Sidebar 的屬性,即可修改屬性,

* navigation
** mainpagemainpage
** portal-urlportal
** e-info環境新聞
** currentevents-urlcurrentevents
** recentchanges-urlrecentchanges
** randompage-urlrandompage
** helppagehelp
** sitesupport-urlsitesupport

* 其他
**test測試

RSS extensions

安裝與用法

1. 下載 rss.php 檔案。
原網址:http://www.mediawiki.org/wiki/GISWiki/RSS

2. 下載magpierss。http://magpierss.sourceforge.net/

3. 修改rss.php 檔案內容

4. 使用參數

* charset= The charset used by the feed. iconv is used to convert this. (設定編碼)
* short Do not show the description text for each news item.(設定簡短描述)
* max=x Shows x most recent headlines. (設定筆數)
* highlight= term1 term2 The terms separated by a space are highlighted.
* filter= term1 term2 Show only rss items containing at least one of the terms. (設定篩選參數)
* reverse display the rss items in reverse order.
* title=x display an alternative title instead of chanel name.
* title = none dont display any title.
# * date display the date and time stamp below the title.

2007年3月28日 星期三

上傳照片

基本上傳語法,[[圖像:tree1.jpg]]

設定縮圖,[[圖像:tree1.jpgthumb]] 

設定縮圖大小(100px), [[圖像:tree1.jpg100pxthumb]]