aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/bin/OpenSim.ini (follow)
Commit message (Collapse)AuthorAgeFilesLines
* reverting opensim.ini to proper default statedan miller2007-09-011-1/+1
|
* ODE bugfix: multiple avatars now supported properlydan miller2007-09-011-1/+1
|
* oops -- restoring opensim.inidan miller2007-09-011-2/+2
|
* more ODE fixes & optimizations. Works better with 1834!dan miller2007-09-011-2/+2
|
* default to sqlite for user storage. You will have to recreateSean Dague2007-08-301-1/+2
| | | | | | users after this change.
* enable sqlite storage by defaultSean Dague2007-08-271-2/+2
|
* Correct OpenSim.ini and inventoryStore.dbTedd Hansen2007-08-221-1/+7
|
* Seems like I commited OpenSim.ini and inventoryStore.db unintentionally in ↵Tedd Hansen2007-08-221-7/+2
| | | | last commit...
* GC.GetTotalMemory(true) was blocking.Tedd Hansen2007-08-221-2/+2
| | | | | We now support individual scripts on individual prims. Do the script dance... \o/ \o\ /o/ \o/ .o.
* changed the comment lines from # to ; in opensim.ini.MW2007-08-211-5/+6
| | | | | | added a serverside_object_permissions = false entry (set to true to enable permission checking on prim editing etc). set the default for standalone account authentication to be turned on (so we don't get lots of people asking why inventory doesn't work). Just remember to use "create user" to create the accounts.
* self document how to enable prim storageSean Dague2007-08-211-29/+33
|
* *Moved network_servers_info.xml into OpenSim.ini under [Network]mingchen2007-08-171-1/+19
|
* I will get it right, honestly!MW2007-08-161-1/+1
|
* Sorry everyone forget to include this, if someone wants to arrange it, I ↵MW2007-08-161-3/+7
| | | | will present myself on a deepgrid region for public flogging.
* *Added the ability to run commands after all regions have started upmingchen2007-08-151-0/+1
| | | | | *By default, it is set to startup_commands.txt. Simply add a list of commands separated by a new line to be run or change the file by changing the path of a startup commands file in OpenSim.ini
* The Welcome message /message of the day shown in the client during login, ↵MW2007-08-131-0/+1
| | | | can now be set from the .INI file for standalone mode (change the standalone_welcome = "Welcome to OpenSim" line).
* Made account Authentication optional in "sandbox/standalone" mode. Just ↵MW2007-08-111-1/+2
| | | | change "standalone_authenticate = false" to be true in OpenSim.ini. Then as per grid mode, you can use the "create user" command to create new accounts.
* Some cleaning up and removed a few old files no longer in use.MW2007-08-101-0/+4
Temporary have had to rename the OpenSim.DataStore.MonoSqlite project to OpenSim.DataStore.MonoSqlite1, as I'm not sure what was done to stop the old project name being included in the VS2005 solution. Also some config changes: OpenSim now has a INI (OpenSim.ini) file that it will read some config settings from (if the ini file exists). Added Mono.Data.SqliteClient.dll so that we can use the same code for sqlite on Windows and mono/linux. (from what I can tell Mono class libraries have a MIT license so there should be no problems with us including this dll). So now to get the basic prim storage working , you need to first create the sqlite database file from the sqlite3-prims.sql in share directory. Then in the OpenSim.ini file, change the storage_plugin so it points to OpenSim.DataStore.MonoSqlite1.dll (storage_plugin = OpenSim.DataStore.MonoSqlite1.dll). Then in your region.xml files change the DataStore value so it is the name of your database file (at the moment you need a different sqlite3 database file for each region).