You are using IPv4 :(

ET:QW TVの設定方法

リクエストがあったのでET:QW TVの建て方

まずは2台のサーバで別々に立てる方法です。

サーバ1 (ゲームサーバ)のserver.cfgに以下の設定を追加します。


/* ET:QW TV */
set net_spawnRepeater "1"
set net_repeaterPort "27840" // TVサーバ間のリレー用のポート
set net_clientRepeaterAutoDownload "1"
set g_repeaterPassword  "TVサーバ間のパスワード"
set ri_maxViewers "1"
set ri_privateViewers "1"

サーバ2 (TVサーバ)を以下のオプションをつけて起動します。


./etqw-dedicated +set net_spawnRepeater 1 +set net_port 27941 +set net_repeaterPort 27841 +set net_clientRepeaterDelay "0.5" +set password "TVサーバ間のパスワード" +set ri_name "TVサーバの名前" +set ri_maxViewers 64 +connect ゲームサーバのIP:ゲームサーバのリレー用ポート

次に1台で立てる方法です。
ゲームサーバのserver.cfgに以下の設定を追加します。


/* ET:QW TV */
set net_spawnRepeater "1"
set net_repeaterPort "27840" // TV用のポート
set net_clientRepeaterAutoDownload "1"
set ri_name "Example TV Server" // TVサーバの名前
set ri_maxViewers "64" // 視聴可能人数
set ri_privateViewers "0"

ただし、1台でTVを立てる場合は配信を遅らせることが出来ません。そのため不正に注意する必要があります。

Habariにもリビジョン機能

Revision in Habari

Masayanさんの記事「MMRT daily life - WordPress 2.6 はすごいらしい」でWordPress 2.6にリビジョン管理機能が追加されることを知り、思わずこれ欲しいー
しかし、わたしはHabariにスイッチした身の上 :P

そこでHabariにもプラグインとしてリビジョン機能を追加してみました。:D
まだリリース段階ではありませんが、試してみたい方はHabari-extrasに開発中のバージョンがあります。

Amazon/Socialink/FCKeditor/Rate It! Habari Plugins released!

4 new Habari plugins are being released and published!

you can download from below, or habari-extras repository

  • Amazon - easily/quickly insert Amazon Products into your posts.
  • Socialink - adding Social Bookmark Links to your posts.
  • FCKeditor - FCKeditor for Habari
  • Rate It! - adding Star Rating to your posts.

Habariをサブディレクトリにインストールする方法

Habariはルートディレクトリのファイル数が比較的少ない方ではあるのですがやっぱりルートディレクトリはなるべくファイルを減らしてすっきり整理したいものです。そこで以下のようにインストールすることでHabari本体をサブディレクトリに置いたままルートURLでアクセス出来るようになります。

  1. 初めにHabariを通常通りサブディレクトリ(例: /habari/)にインストールします。
  2. /index.php に以下の内容でファイルを作成します。
    
    <?php
    include('habari/index.php');
    ?>
    
  3. /.htaccess に以下の内容でファイルを作成します。
    
    RewriteEngine on
    RewriteRule ^(system|3rdparty|scripts)/(.*)$ /habari/$1/$2 [L]
    RewriteRule ^user/(themes|plugins|files)/(.*)$ /habari/user/$1/$2 [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . index.php [L]
    

How-to: install Habari in a sub-directory

I do not want for many files to be put on root directory. therefore, I installed Habari by the following methods.

  1. first, install Habari in the subdirectory (e.g. /habari/).
  2. create /index.php file in your text editor and save the following line:
    
    <?php
    include('habari/index.php');
    ?>
    
  3. create /.htaccess file in your text editor and save the following line:
    
    RewriteEngine on
    RewriteRule ^(system|3rdparty|scripts)/(.*)$ /habari/$1/$2 [L]
    RewriteRule ^user/(themes|plugins|files)/(.*)$ /habari/user/$1/$2 [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . index.php [L]