OpenSimProfile

From OpenSimulator

(Difference between revisions)
Jump to: navigation, search
m (Added quick links and summary line at top of page)
m (How to setup OSP: removed 404 link, replaced with github link)
 
Line 10: Line 10:
 
* You also need to make sure you have php-xmlrpc or you will need to compile it in with php.
 
* You also need to make sure you have php-xmlrpc or you will need to compile it in with php.
  
You can grab the latest version of OpenSimProfile through git. Use the command below to checkout the code.
+
You can grab the latest version of OpenSimProfile from github. Use the command below to checkout the code
  
 
<code>
 
<code>
git clone http://forge.opensimulator.org/git/kcozens/OpenSimProfile.git
+
git clone https://github.com/kcozens/OpenSimProfile
 
</code>
 
</code>
 
You can also find the OpenSimProfile code at [https://github.com/kcozens/OpenSimProfile https://github.com/kcozens/OpenSimProfile]
 
  
 
Note: For Windows users or those who have not used Git before, the page "Setting Up Git on Windows in Four Easy Steps" may be helpful. Use the information in steps 1 and 2. After you've installed TortoiseGit, create a directory in the location of your choosing and then right click - choose "Git Checkout..." - and enter the URL provided above to download the entire package.
 
Note: For Windows users or those who have not used Git before, the page "Setting Up Git on Windows in Four Easy Steps" may be helpful. Use the information in steps 1 and 2. After you've installed TortoiseGit, create a directory in the location of your choosing and then right click - choose "Git Checkout..." - and enter the URL provided above to download the entire package.

Latest revision as of 08:53, 23 September 2020


OpenSimProfile makes it possible to have working profiles in OpenSimulator.

[edit] How to setup OSP

  • Make sure you have a Apache/PHP/MySQL configuration ready else Profiles won't work!!
  • You also need to make sure you have php-xmlrpc or you will need to compile it in with php.

You can grab the latest version of OpenSimProfile from github. Use the command below to checkout the code

git clone https://github.com/kcozens/OpenSimProfile

Note: For Windows users or those who have not used Git before, the page "Setting Up Git on Windows in Four Easy Steps" may be helpful. Use the information in steps 1 and 2. After you've installed TortoiseGit, create a directory in the location of your choosing and then right click - choose "Git Checkout..." - and enter the URL provided above to download the entire package.

[NOTE: The last sentence in the above paragraph needs to be verified by someone using TortoiseGit]

[edit] Upload site to webroot

Next thing you need to do is upload your profile.php and databaseinfo.php located /trunk/webroot/ to your public http folder so Regions can connect to it.


[edit] Create a database

First you will need to create a database. Once you have finished that you can execute the following SQL file osprofiles.sql located in /trunk/webroot/sql/ from the SVN.

Then you need to setup your database connection file located /trunk/webroot/databaseinfo.php OR your webroot where you had uploaded databaseinfo.php


<?php
$DB_HOST = "<servername>";
$DB_USER = "<username>";
$DB_PASSWORD = "<password>";
$DB_NAME = "<database>";
?>


[edit] Setup Module

Now that we have everything else setup you just have to install the Module and reset your Regions Server.

First Copy trunk/bin/OpenSimProfile.Modules.dll and put it into your OpenSim/bin folder.

Now you go ahead and edit your OpenSim.ini on any servers that host Regions.

Inside OpenSim.ini add the following:

[Profile]
Module = "OpenSimProfile"
; Change it to your own HTTP server to have the Profile server work
ProfileURL = http://gridserver/profile.php


[edit] Finished

Just reboot your Regions server and you should now be able to edit and save your profiles!

Personal tools
General
About This Wiki