flagflag  If you want to see English page, please click "English" Button at Left.
13: 2014-11-30 (日) 22:58:36 iseki ソース 現: 2020-03-01 (日) 17:07:48 iseki ソース
Line 1: Line 1:
-** Helper Scripts [#sd479b44]+** Helper Scripts for OpenSimulator [#sd479b44]
- Tar Ball - Tar Ball
--- http://www.nsl.tuis.ac.jp/DownLoad/SoftW​are/OpenSim/helper_scripts-0.8.1.tar.gz +-- http://www.nsl.tuis.ac.jp/DownLoad/SoftW​are/OpenSim/helper_scripts-0.9.1.tgz 
-- Dev Version+ 
 +- Subversion Repository 
 +-- http://www.nsl.tuis.ac.jp/svn/opensim/helper_scripts/trunk 
 +- Dev Version (use Subversion Repository)
-- use ''setup_scripts.sh'' in opensim.currency tar ball (helper_scripts/setup_scripts.sh) -- use ''setup_scripts.sh'' in opensim.currency tar ball (helper_scripts/setup_scripts.sh)
#br #br
*** Setup [#z0dc298a] *** Setup [#z0dc298a]
-- If you do not use [[XoopenSim>XoopenSim (E)]] or [[Modlos>Modlos (E)]] (Web Interface), you should setup helper scripts by manual. +- If you do not use %%[[XoopenSim>XoopenSim (E)]] or%% [[Modlos>Modlos (E)]] (Web Interface), you should setup helper scripts by manual. 
-- If you use [[XoopenSim>XoopenSim (E)]] or [[Modlos>Modlos (E)]], this function is setup by automatically. +- If you use %%[[XoopenSim>XoopenSim (E)]] or%% [[Modlos>Modlos (E)]], this function is setup by automatically
-- You need ''Web Server (ex. Apache) and PHP-5.x (include PHP5-XMLRPC, PHP5-CURL)''+-- XoopenSim is not maintained now
 +- You need ''Web Server (ex. Apache) and PHP (include PHP-XMLRPC, PHP-CURL)''
#br #br
 +
**** Download [#bc390aa2] **** Download [#bc390aa2]
-- You can download helper scripts from http://www.nsl.tuis.ac.jp/DownLoad/SoftW​are/OpenSim/helper_scripts-0.8.0.tar.gz directly.+- You can download helper scripts from http://www.nsl.tuis.ac.jp/DownLoad/SoftW​are/OpenSim/helper_scripts-0.9.1.tgz directly.
-- Please copy extracted helper_scripts/* to any Web contents directory. -- Please copy extracted helper_scripts/* to any Web contents directory.
- Or you can find helper scripts download tool (''setup_scripts.sh'') in ''helper_scripts'' directory - Or you can find helper scripts download tool (''setup_scripts.sh'') in ''helper_scripts'' directory
-- Please copy helper_scripts/* to any Web contents directory. -- Please copy helper_scripts/* to any Web contents directory.
-- If you use Dev Version, please execute ''setup_scripts.sh'' shell scrupt -- If you use Dev Version, please execute ''setup_scripts.sh'' shell scrupt
 +--- bash setup_scripts.sh
**** edit config.php [#e9a33c88] **** edit config.php [#e9a33c88]
- And edit include/config.php to set ENV_HELPER_URL, ENV_HELPER_PATH and DB information and more. - And edit include/config.php to set ENV_HELPER_URL, ENV_HELPER_PATH and DB information and more.
--- If you use PHP-5.5.x, you need set ''true'' to ''OPENSIM_DB_MYSQLI''+-- If you use PHP-5.5.x later, you need set ''true'' to ''OPENSIM_DB_MYSQLI''
**** command example [#c08f8836] **** command example [#c08f8836]
- Download directory - Download directory
 cd (working Directory)  cd (working Directory)
- wget http://www.nsl.tuis.ac.jp/DownLoad/SoftW​​are/OpenSim/helper_scripts-0.8.0.tar.gz + wget http://www.nsl.tuis.ac.jp/DownLoad/SoftW​​are/OpenSim/helper_scripts-x.y.z.tgz 
- zcat helper_scripts-0.8.0.tar.gz |tar xfv -+ zcat helper_scripts-x.y.z.tgz |tar xfv -
 mkdir (Document Root of WEB)/currency  mkdir (Document Root of WEB)/currency
 cp -Rpd helper_scripts/* (Document Root of Web)/currency  cp -Rpd helper_scripts/* (Document Root of Web)/currency
Line 47: Line 53:
 if (!defined('ENV_HELPER_URL'))  define('ENV_HELPER_URL',  'http://www.opensim.tuis.ac.jp/currency/​helper/');  if (!defined('ENV_HELPER_URL'))  define('ENV_HELPER_URL',  'http://www.opensim.tuis.ac.jp/currency/​helper/');
 if (!defined('ENV_HELPER_PATH')) define('ENV_HELPER_PATH', '/home/apache/htdocs/currency/helper/');​  if (!defined('ENV_HELPER_PATH')) define('ENV_HELPER_PATH', '/home/apache/htdocs/currency/helper/');​
 + 
 ///////////////////////////////////////​////////////////////////////////////////​///i  ///////////////////////////////////////​////////////////////////////////////////​///i
 // Valiables for OpenSim  // Valiables for OpenSim
 + 
 // Please set MySQL DB access information  // Please set MySQL DB access information
 define('OPENSIM_DB_HOST', 'localhost');  define('OPENSIM_DB_HOST', 'localhost');
Line 58: Line 64:
 //  //
 define('OPENSIM_DB_MYSQLI', false);    // if you use MySQLi interface, please set true  define('OPENSIM_DB_MYSQLI', false);    // if you use MySQLi interface, please set true
- +  
 + 
 // Money Server Access Key  // Money Server Access Key
 // Please set same key with MoneyScriptAccessKey in MoneyServer.ini  // Please set same key with MoneyScriptAccessKey in MoneyServer.ini
 define('CURRENCY_SCRIPT_KEY', '123456789');  define('CURRENCY_SCRIPT_KEY', '123456789');
- +  
 + 
 // Group Module Access Keys  // Group Module Access Keys
 // Please set same keys with at [Groups] section in OpenSim.ini (case of Aurora-Sim, it is Groups.ini)  // Please set same keys with at [Groups] section in OpenSim.ini (case of Aurora-Sim, it is Groups.ini)
Line 75: Line 81:
- Please set helper URL to ''economy'' valiable at [GridInfoService] section in ''Robust.ini'' - Please set helper URL to ''economy'' valiable at [GridInfoService] section in ''Robust.ini''
-- ex) economy = http://www.opensim.tuis.ac.jp/currency/h​elper/    [''need last '/' ''] -- ex) economy = http://www.opensim.tuis.ac.jp/currency/h​elper/    [''need last '/' '']
 +- Please set ''Helper URL'' at your ''viewer's Grid Manager''
 +-- ex) http://www.opensim.tuis.ac.jp/currency/h​elper/    [''need last '/' '']
#br #br
-*** Support scripts for setup helper scripts (only Dev Version) [#f73a9d6c]+*** Support scripts for setup helper scripts [#f73a9d6c]
**** setup_scripts.sh [#k7690f5c] **** setup_scripts.sh [#k7690f5c]
Line 87: Line 95:
 # ./setup_scripts.sh -h  # ./setup_scripts.sh -h
 + 
 usage... ./setup_scripts.sh [-c/--copy] [-d/--download] [-a/--all] [-h/--help]  usage... ./setup_scripts.sh [-c/--copy] [-d/--download] [-a/--all] [-h/--help]
 -c or --copy    : not symbolic link but copy files  -c or --copy    : not symbolic link but copy files
Line 93: Line 101:
 -a or --all      : treat all scripts include optional scripts  -a or --all      : treat all scripts include optional scripts
 -h or --help    : show this help  -h or --help    : show this help
 + 
 # ./setup_scripts.sh --copy  # ./setup_scripts.sh --copy
- Optional Scripts - Optional Scripts
--- NSL Mute Module support scripts (not work in Aurora-Sim, now) +-- NSL Mute Module support scripts 
--- NSL OSProfile Module support scripts (not work in Aurora-Sim, now) +-- NSL OSProfile Module support scripts 
--- NSL OSSearch Module support scripts (not work in Aurora-Sim, now)+-- NSL OSSearch Module support scripts
#br #br


トップ   新規 ページ一覧 単語検索 最終更新   ヘルプ   最終更新のRSS 1.0 最終更新のRSS 2.0 最終更新のRSS Atom

サイト内 検索

ログイン

ユーザー名:

パスワード:


パスワード紛失
新規登録

サブ メニュー

ミニカレンダー

前月2024年 3月翌月
1 2
3 4 5 6 7 8 9
10 11 12 13 14 15 16
17 18 19 20 21 22 23
24 25 26 27 28 29 30
31
<今日>

オンライン状況

75 人のユーザが現在オンラインです。 (7 人のユーザが xpwiki を参照しています。)

登録ユーザ: 0
ゲスト: 75

もっと...

アクセスカウンタ

今日 : 5798579857985798
昨日 : 4222422242224222
総計 : 2317321223173212231732122317321223173212231732122317321223173212
Powered by XOOPS Cube 2.1© 2001-2006 XOOPS Cube Project
Design by XoopsDesign.com