flagflag  If you want to see English page, please click "English" Button at Left.
1: 2012-11-27 (火) 21:46:08 iseki ソース
Line 1: Line 1:
 +* DTL/NSL Money Server [#zebd09de]
 +** Overview [#vaa53e04]
 +- Latest Stable Version is 0.7.3 (for OpenSim 0.7.3/0.7.4)
 +- This Money Server is modified from [[DTL Currency>./DTL Currency Processing]] and for Unix/Linux (It might work in MS Windows).
 +- Some bug fixes are done and some functions are extended from DTL currency.
 +- This can be operated by OpenSim 0.6.7-0.7.1.x, 0.7.2, 0.7.3, 0.7.4
 +- Web Monitor function (ASP.NET) is removed from original DTL Currency.
 +- This is not support that sell/buy the group shared object.
 +- ''Please use this at Your Own Risk!!''
 +
 +- &font(#0000ff){About this project, ''Milo'' do a lot of advice and donation to us. ''Thank you very much!!''};
 +
 +- &font(#ff2222){[[previous ''Aurora-Sim (0.4.3Dev)'' is full supported.>./Aurora-Sim#b8a01dda]] (new, 10 Setp. 2011)};
 +- ''Under Development for latest version of Aurora-Sim, now'' -> [[Progress>./Aurora-Sim]]
 +#br
 +
 +*** Change Log [#r7a89e03]
 +- [[ChangeLog>./ChangeLog]]
 +#br
 +
 +*** Forum [#c90988f3]
 +- http://www.nsl.tuis.ac.jp/xoops/modules/​d3forum/index.php?forum_id=11
 +#br
 +** Download of DTL/NSL Money Server[#u2d15064]
 +
 +*** [[OpenSim]] [#x2bf1cc1]
 +- 0.7.3 for OpenSim-0.7.3/0.7.4 (Binaries are included. not need to compile)
 +-- http://www.nsl.tuis.ac.jp/xoops/modules/​d3downloads/index.php?page=singlefile&ci​d=8&lid=33
 +
 +- latest dev version (for OpenSim-0.7.5Dev)
 +-- svn co http://www.nsl.tuis.ac.jp/svn/opensim/op​ensim.currency/trunk opensim.currency
 +
 +- [[more old version...>./old_version]]
 +
 +#br
 +
 +*** [[Aurora-Sim]] [#cd3c0906]
 +- for latest Aurora-Sim. This is development version
 +-- svn co http://www.nsl.tuis.ac.jp/svn/opensim/op​ensim.currency/branches/aurora aurora.currency
 +#br
 +
 +** Compile and Install [#uc427419]
 +
 +*** [[OpenSim]] [#vaa8ebdd]
 +- for release version (Patch was abolished from 0.7.2) and latest Dev version
 + git clone git://opensimulator.org/git/opensim opensim
 + cd opensim
 + svn co http://www.nsl.tuis.ac.jp/svn/opensim/op​ensim.currency/trunk opensim.currency
 + ./runprebuild.sh && nant clean && nant
 + cd opensim.currency
 + ./build.sh
 + cd ../bin
 + vi MoneyServer.ini      (modify [MySql] section)
 +
 +- for old version (0.7.1.x)
 + cd (PREFIX)/opensim-X.Y.Z-source  (or opensim-X.Y.Z-release)
 + tar xzfv opensim.currency-X.Y.Z.tar.gz
 + patch -p1 < opensim.currency-X.Y.Z/opensim_currency_​X.Y.Z.patch
 + ./runprebuild.sh && nant clean && nant
 + cd opensim.currency-X.Y.Z
 + ./build.sh
 + cd ../bin
 + vi MoneyServer.ini
 +
 +*** [[Aurora-Sim]] [#tab1b7e6]
 +- for latest dev version (0.4.3Dev)
 + git clone git://github.com/aurora-sim/Aurora-Sim.g​it aurora
 + cd aurora
 + svn co http://www.nsl.tuis.ac.jp/svn/opensim/op​ensim.currency/branches/aurora aurora.currency
 + patch -p1 < aurora.currency/aurora_currency_latest.p​atch
 + ./runprebuild.sh && xbuild
 + cd aurora.currency
 + ./build.sh
 + cd ../bin
 + vi MoneyServer.ini      (modify [MySql] section)
 + vi AuroraServer.ini
 + vi Aurora.ini
 + vi Configration/Main.ini
 + ......
 + cd Configuration/Modules
 + cp Economy.ini.example Economy.ini
 + vi OpenSim.ini
 +
 +** Settings [#v70b9150]
 +*** [[MoneyServer.ini>./MoneyServer.ini]] [#y846e1a1]
 +- Setting of  [[MoneyServer.ini>./MoneyServer.ini]]
 +#br
 +
 +*** [Economy] Section in INI file [#d9a146c0]
 +- for OpenSim: [[OpenSim.ini>./OpenSim.ini]]
 +- for Aurora-Sim: [[Configuration/Modules/Economy.ini>./Ec​onomy.ini]]
 +#br
 +
 +*** [[Helper Scripts>./Helper Script]] [#yd4f306d]
 +- If you use functions that ''Buy Money from System'', ''Buy Land'' and ''send_money'', you should set up Helper Scripts.
 +- If you use XoopenSim or Modlos, you may not do setting Helper Script. Because XoopenSim/Modlos sets up it by automatically.
 +- Helper Scripts work with ''PHP-5.2.x'', those does not work with PHP-5.3.x
 +- [[Setup Manual of Helper Scripts is here>./Helper Script]]
 +#br
 +
 +*** Setting for Diva-Distro [#x02c26fc]
 +- [[0.7.2>./Diva-0.7.2]]
 +#br
 +
 +** Execution [#h4610b84]
 +- Execute MoneyServer after Robust.exe/Aurora.Server.exe and before OpenSim.exe/Aurora.exe
 +#br
 +
 +*** [[OpenSim]] 0.7.2 and latest Dev [#ad34b4d2]
 +- Attetion: MoneyServer's name was changed
 +
 + # cd bin
 + # mono Robust.exe
 + # mono MoneyServer.exe
 + # mono OpenSim.exe
 +#br
 +
 +*** [[OpenSim]] before 0.7.1.x [#df442a63]
 + # cd bin
 + # mono Robust.exe
 + # mono OpenSim.Grid.MoneyServer.exe
 + # mono OpenSim.exe
 +#br
 +
 +*** [[Aurora-Sim]] [#l4b62f4f]
 + # cd bin
 + # mono Aurora.Server.exe
 + # mono MoneyServer.exe
 + # mono Aurora.exe
 +#br
 +
 +** etc.etc. [#va2bf28f]
 +
 +*** send_money() function in Helper Scripts [#p51201fb]
 +- [[send_money()>./send_money]] PHP function
 +#br
 +
 +*** Support of StandAlone mode [#nf42a9ad]
 +- [[OpenSim-0.7.x>./standalone_0.7]]
 +#br
 +
 +*** Bugs [#x4fae068]
 +**** OpenSim [#ibab8dc3]
 +- 0.7.1 R2
 +-- send_money() of helper script is failed, when the ''secretCode'' argument is omitted.
 +- 0.7.1 R1
 +-- The script money() (money event) does not work.  (It is corrected at R2)
 +-- %%Charge message of "Group Creation" displayed ''L$100'' at any time.%%  As it displayed normally at Hippo Viewer, this is the problem of Viewer.
 +- 0.7 R4
 +-- Included ''include/opensim.mysql.php helper script of v0.7R4 has bugs''. If you want to use included helper scripts, please download http://www.nsl.tuis.ac.jp/DownLoad/SoftW​are/PHP/WI-1.55/opensim.mysql , and rename to opensim.mysql.php and use it.
 +- 0.7 R3
 +-- When object is set to ''sale original'', no money is transferred. (collected at v0.7 R4)
 +#br
 +
 +**** Aurora-Sim [#a45a5c29]
 +#br
 +
 +*** 注意 [#d84771e2]
 +- OpenSim.ini 中の ''UserServer'', ''CurrencyServer'' のアドレスは localhost (127.0.0.1) を使用しないこと ( [Network] セクションの ''user_server_url'').これは,このIPアドレスが,Monet Server内でのユーザのアカウント識別に利用されるためである.
 +
 +- MoneyServer.ini と include/config.php (またはXoopenSim/Modlos) の Helper Script用のキーは必ず同じものを指定すること.
 +
 +- 0.6.9で,[Network] セクションの ''user_server_url'' が無くなったため,代わりに [Economy]セクションで ''UserServer'' を指定するように変更.
 +
 +
 +#br
 +
 +*** [[Development>./Devel]] [#rfbac1de]
 +#br
 +*** [[Sample LSL for Money Server>./LSL]] [#a706bde2]
 +#br
 +
 +*** Indexes [#l1c0126a]
 +#ls2


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

サイト内 検索

ログイン

ユーザー名:

パスワード:


パスワード紛失
新規登録

サブ メニュー

ミニカレンダー

前月2024年 5月翌月
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
<今日>

オンライン状況

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

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

もっと...

アクセスカウンタ

今日 : 1195611956119561195611956
昨日 : 7722772277227722
総計 : 2344343723443437234434372344343723443437234434372344343723443437
Powered by XOOPS Cube 2.1© 2001-2006 XOOPS Cube Project
Design by XoopsDesign.com