get.php 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. <?php
  2. // Sloodle Browser website
  3. require_once('config.php');
  4. $CFG->curpage = 'get';
  5. $CFG->pagetitle = 'Get the Sloodle Browser';
  6. print_header();
  7. ?>
  8. <!-- MAIN PAGE CONTENT -->
  9. <?php start_page_content(); ?>
  10. <?php start_page_entry('In-World Tool'); ?>
  11. <p>
  12. The Sloodle Browser itself is an object in Second Life, which is freely available for you to obtain.
  13. Simply click on the "<b>Teleport Now</b>" link on the right to visit our in-world demo, and you should be
  14. able to take a copy of the demo, or buy a copy for 0 or 1 <acronym title="Linden Dollar">$L</acronym>.
  15. </p>
  16. <p>
  17. For low volume usage, this is all you need, as it will work with our own server.
  18. See below for information about hosting your own Browser server.
  19. </p>
  20. <p style="font-weight:bold; font-size:90%;">
  21. Please note: the Sloodle Browser is experimental, and therefore still has some bugs!
  22. </p>
  23. <?php end_page_entry(); ?>
  24. <?php start_page_entry('Server Software'); ?>
  25. <p>
  26. By default, the Sloodle Browser will use our own server, so you won't need to setup anything external yourself
  27. (just setup the browser object, and you are ready to go!).
  28. However, there is a limit to the service we can provide freely, so if you will be using the Sloodle Browser
  29. substantially, then it would best if you host your own server.
  30. </p>
  31. <p>
  32. The program ("VMouseSvr") is freely available, and was developed C# .NET.
  33. This should run directly on a Windows Server, although you can run it on a Linux server as well if you have
  34. <a href="http://www.mono-project.com" title="Mono homepage">Mono</a> available.
  35. It operates on port 49902, and also requires PHP and a MySQL database (note that you may need to install the
  36. <a href="http://www.mono-project.com/MySQL" title="Information about MySQL and Mono">MySQL Connector</a>
  37. in order to allow Mono to access the database).
  38. </p>
  39. <p style="font-weight:bold;">Packages:</p>
  40. <ul>
  41. <li>
  42. <a href="http://figures.avid-insight.co.uk/VMouseSvr.zip" title="Download this release">
  43. Complete source code and MS Visual Studio project files
  44. </a>
  45. </ul>
  46. <?php end_page_entry(); ?>
  47. <?php end_page_content(); ?>
  48. <!-- END MAIN PAGE CONTENT -->
  49. <?php include_once($CFG->dirroot.'/sidebar.php'); ?>
  50. <?php print_footer(); ?>