<?xml version="1.0"?>
<?xml-stylesheet type="text/css" href="http://opensimulator.org/skins/common/feed.css?303"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>http://opensimulator.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=FoTo50</id>
		<title>OpenSimulator - User contributions [en]</title>
		<link rel="self" type="application/atom+xml" href="http://opensimulator.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=FoTo50"/>
		<link rel="alternate" type="text/html" href="http://opensimulator.org/wiki/Special:Contributions/FoTo50"/>
		<updated>2026-05-11T05:43:42Z</updated>
		<subtitle>User contributions</subtitle>
		<generator>MediaWiki 1.19.9</generator>

	<entry>
		<id>http://opensimulator.org/wiki/Logging</id>
		<title>Logging</title>
		<link rel="alternate" type="text/html" href="http://opensimulator.org/wiki/Logging"/>
				<updated>2021-03-14T16:42:37Z</updated>
		
		<summary type="html">&lt;p&gt;FoTo50: /* Specifying log file location per instance */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
{{Quicklinks}}&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Changing logging levels before startup ==&lt;br /&gt;
&lt;br /&gt;
OpenSimulator uses the [http://logging.apache.org/log4net/ log4net] package for logging. This means that every executable you run for OpenSimulator has an accompanying .config file which contains the logging configuration&lt;br /&gt;
&lt;br /&gt;
For instance&lt;br /&gt;
&lt;br /&gt;
* OpenSim.exe -&amp;gt; config is OpenSim.exe.config&lt;br /&gt;
* OpenSim.32BitLaunch.exe -&amp;gt; config is OpenSim.32BitLaunch.exe.config&lt;br /&gt;
* Robust.exe -&amp;gt; config is Robust.exe.config&lt;br /&gt;
&lt;br /&gt;
The OpenSim.exe.config file looks like this.&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; ?&amp;gt;&lt;br /&gt;
 &amp;lt;configuration&amp;gt;&lt;br /&gt;
  &amp;lt;configSections&amp;gt;&lt;br /&gt;
    &amp;lt;section name=&amp;quot;log4net&amp;quot; type=&amp;quot;log4net.Config.Log4NetConfigurationSectionHandler,log4net&amp;quot; /&amp;gt;&lt;br /&gt;
  &amp;lt;/configSections&amp;gt;&lt;br /&gt;
  &amp;lt;appSettings&amp;gt;&lt;br /&gt;
  &amp;lt;/appSettings&amp;gt;&lt;br /&gt;
  &amp;lt;log4net&amp;gt;&lt;br /&gt;
    &amp;lt;appender name=&amp;quot;Console&amp;quot; type=&amp;quot;OpenSim.Framework.Console.OpenSimAppender, OpenSim.Framework.Console&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;layout type=&amp;quot;log4net.Layout.PatternLayout&amp;quot;&amp;gt;&lt;br /&gt;
        &amp;lt;conversionPattern value=&amp;quot;%date{HH:mm:ss} - %message%newline&amp;quot; /&amp;gt;&lt;br /&gt;
      &amp;lt;/layout&amp;gt;&lt;br /&gt;
    &amp;lt;/appender&amp;gt;&lt;br /&gt;
 &lt;br /&gt;
    &amp;lt;appender name=&amp;quot;LogFileAppender&amp;quot; type=&amp;quot;log4net.Appender.FileAppender&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;file value=&amp;quot;OpenSim.log&amp;quot; /&amp;gt;&lt;br /&gt;
      &amp;lt;appendToFile value=&amp;quot;true&amp;quot; /&amp;gt;&lt;br /&gt;
      &amp;lt;layout type=&amp;quot;log4net.Layout.PatternLayout&amp;quot;&amp;gt;&lt;br /&gt;
        &amp;lt;conversionPattern value=&amp;quot;%date %-5level - %logger %message%newline&amp;quot; /&amp;gt;&lt;br /&gt;
      &amp;lt;/layout&amp;gt;&lt;br /&gt;
    &amp;lt;/appender&amp;gt;&lt;br /&gt;
 &lt;br /&gt;
    &amp;lt;!-- if you'd like to know what NHibernate is doing more set value=&amp;quot;DEBUG&amp;quot; --&amp;gt;&lt;br /&gt;
    &amp;lt;logger name=&amp;quot;NHibernate&amp;quot; additivity=&amp;quot;false&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;level value=&amp;quot;INFO&amp;quot;/&amp;gt;&lt;br /&gt;
      &amp;lt;appender-ref ref=&amp;quot;NHibernateFileLog&amp;quot;/&amp;gt;&lt;br /&gt;
    &amp;lt;/logger&amp;gt;&lt;br /&gt;
 &lt;br /&gt;
    &amp;lt;root&amp;gt;&lt;br /&gt;
      &amp;lt;level value=&amp;quot;DEBUG&amp;quot; /&amp;gt;&lt;br /&gt;
      &amp;lt;appender-ref ref=&amp;quot;Console&amp;quot; /&amp;gt;&lt;br /&gt;
      &amp;lt;appender-ref ref=&amp;quot;LogFileAppender&amp;quot; /&amp;gt;&lt;br /&gt;
    &amp;lt;/root&amp;gt;&lt;br /&gt;
  &amp;lt;/log4net&amp;gt;&lt;br /&gt;
 &amp;lt;/configuration&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This looks rather complicated, but if you want to change the level of messages logged, then you could change the value in the &amp;lt;root&amp;gt; section (right at the end) which is &lt;br /&gt;
&lt;br /&gt;
 &amp;lt;level value=&amp;quot;DEBUG&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
in the example above to something different, e.g.&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;level value=&amp;quot;WARN&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
which will only display warning and error level log messages. Permissible values are ALL, DEBUG, INFO, WARN, ERROR, FATAL, OFF&lt;br /&gt;
&lt;br /&gt;
You can also see from the OpenSim.exe.config file that log files are written to OpenSim.log (as well as the console).&lt;br /&gt;
&lt;br /&gt;
=== Rolling file appender and maximum log-file size ===&lt;br /&gt;
&lt;br /&gt;
Log4net provides several log-file appenders. One of them is the ''RollingFileAppender'', which limits log-file size and rotates log-files automatically. To use this appender, add the following section to the log4net-configuration:&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;appender name=&amp;quot;RollingFileAppender&amp;quot; type=&amp;quot;log4net.Appender.RollingFileAppender&amp;quot;&amp;gt;&lt;br /&gt;
   &amp;lt;file value=&amp;quot;OpenSim.log&amp;quot; /&amp;gt;&lt;br /&gt;
   &amp;lt;appendToFile value=&amp;quot;true&amp;quot; /&amp;gt;&lt;br /&gt;
   &amp;lt;maximumFileSize value=&amp;quot;1000KB&amp;quot; /&amp;gt;&lt;br /&gt;
   &amp;lt;maxSizeRollBackups value=&amp;quot;2&amp;quot; /&amp;gt;&lt;br /&gt;
   &amp;lt;layout type=&amp;quot;log4net.Layout.PatternLayout&amp;quot;&amp;gt;&lt;br /&gt;
     &amp;lt;conversionPattern value=&amp;quot;%date %-5level - %logger %message%newline&amp;quot; /&amp;gt;&lt;br /&gt;
   &amp;lt;/layout&amp;gt;&lt;br /&gt;
 &amp;lt;/appender&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The maximum size can be set in the ''maximumFileSize'' element, the ''maxSizeRollBackups'' element determines the maximum number of rolling log-files. So, the setting above will create a log-file named ''OpenSim.log'' with a maximum size of 1000KB. When the limit is reached, ''OpenSim.log'' will be renamed to ''OpenSim.log.1'', and a fresh ''OpenSim.log'' is started (possibly after renaming ''OpenSim.log.1'' to ''OpenSim.log.2'', should that file exist already). &lt;br /&gt;
&lt;br /&gt;
To use the appender defined above, replace the line&lt;br /&gt;
  &amp;lt;appender-ref ref=&amp;quot;LogFileAppender&amp;quot; /&amp;gt;&lt;br /&gt;
by&lt;br /&gt;
  &amp;lt;appender-ref ref=&amp;quot;RollingFileAppender&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Further information about configuration of log4net can be found on the [http://logging.apache.org/log4net/release/manual/configuration.html Log4Net configuration page].&lt;br /&gt;
&lt;br /&gt;
=== More specialized requirements ===&lt;br /&gt;
As an example, similar to [http://opensimulator.org/mantis/view.php?id=2603 Mantis#2603], if you want logging the [[XEngine]]'s DEBUG output into a separate file ''xengine.log'', and let only the message with level INFO and higher appear on the console, you can do that by adding the following lines to your ''OpenSim.exe.config'':&lt;br /&gt;
&lt;br /&gt;
    &amp;lt;appender name=&amp;quot;XengineLogFileAppender&amp;quot; type=&amp;quot;log4net.Appender.FileAppender&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;file value=&amp;quot;xengine.log&amp;quot; /&amp;gt;&lt;br /&gt;
      &amp;lt;appendToFile value=&amp;quot;true&amp;quot; /&amp;gt;&lt;br /&gt;
      &amp;lt;layout type=&amp;quot;log4net.Layout.PatternLayout&amp;quot;&amp;gt;&lt;br /&gt;
        &amp;lt;conversionPattern value=&amp;quot;%date %-5level - %logger %message%newline&amp;quot; /&amp;gt;&lt;br /&gt;
      &amp;lt;/layout&amp;gt;&lt;br /&gt;
    &amp;lt;/appender&amp;gt;&lt;br /&gt;
 &lt;br /&gt;
    &amp;lt;appender name=&amp;quot;XengineConsole&amp;quot; type=&amp;quot;OpenSim.Framework.Console.OpenSimAppender, OpenSim.Framework.Console&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;layout type=&amp;quot;log4net.Layout.PatternLayout&amp;quot;&amp;gt;&lt;br /&gt;
        &amp;lt;conversionPattern value=&amp;quot;%date{HH:mm:ss} - %message%newline&amp;quot; /&amp;gt;&lt;br /&gt;
      &amp;lt;/layout&amp;gt;&lt;br /&gt;
      &amp;lt;filter type=&amp;quot;log4net.Filter.LevelRangeFilter&amp;quot;&amp;gt;&lt;br /&gt;
        &amp;lt;levelMin value=&amp;quot;INFO&amp;quot; /&amp;gt;&lt;br /&gt;
        &amp;lt;levelMax value=&amp;quot;FATAL&amp;quot; /&amp;gt;&lt;br /&gt;
      &amp;lt;/filter&amp;gt;&lt;br /&gt;
    &amp;lt;/appender&amp;gt;&lt;br /&gt;
 &lt;br /&gt;
    &amp;lt;logger name=&amp;quot;OpenSim.Region.ScriptEngine.XEngine.XEngine&amp;quot; additivity=&amp;quot;false&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;appender-ref ref=&amp;quot;XengineLogFileAppender&amp;quot; /&amp;gt;&lt;br /&gt;
      &amp;lt;appender-ref ref=&amp;quot;XengineConsole&amp;quot; /&amp;gt;&lt;br /&gt;
    &amp;lt;/logger&amp;gt;&lt;br /&gt;
&lt;br /&gt;
(if there is a shorter way to do it, please replace those lines above) ;-)&lt;br /&gt;
&lt;br /&gt;
Or, as an easier example, if you want to have the normal logging, except for the HttpServers which you want only INFO messages for, you can add the following lines after the ''&amp;lt;/root&amp;gt;''-tag:&lt;br /&gt;
&lt;br /&gt;
    &amp;lt;logger name=&amp;quot;OpenSim.Framework.Servers.HttpServerLogWriter&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;level value=&amp;quot;INFO&amp;quot; /&amp;gt;&lt;br /&gt;
    &amp;lt;/logger&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== MySQL Logging ===&lt;br /&gt;
This example can be used to log the data to a MySQL table.&lt;br /&gt;
&lt;br /&gt;
Step 1: Create a MySQL Database &amp;quot;OSLog&amp;quot; and add the following table to which the data will be stored to&lt;br /&gt;
&lt;br /&gt;
  CREATE TABLE `opensim_log` (&lt;br /&gt;
   `ID` int(10) NOT NULL AUTO_INCREMENT,&lt;br /&gt;
   `DATE` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,&lt;br /&gt;
   `Level` varchar(100) DEFAULT '',&lt;br /&gt;
   `Logger` varchar(512) DEFAULT '',&lt;br /&gt;
   `Message` varchar(1000) DEFAULT '',&lt;br /&gt;
   PRIMARY KEY (`ID`) &lt;br /&gt;
  );  &lt;br /&gt;
&lt;br /&gt;
Step 2: Replace the &amp;quot;LogFileAppender&amp;quot; appender Section with&lt;br /&gt;
&lt;br /&gt;
  &amp;lt;appender name=&amp;quot;MySql_ADONetAppender&amp;quot; type=&amp;quot;log4net.Appender.ADONetAppender&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;bufferSize value=&amp;quot;5&amp;quot; /&amp;gt;&lt;br /&gt;
    &amp;lt;lossy value=&amp;quot;false&amp;quot;/&amp;gt;&lt;br /&gt;
    &amp;lt;connectionType value=&amp;quot;MySql.Data.MySqlClient.MySqlConnection, MySql.Data&amp;quot;/&amp;gt;&lt;br /&gt;
    &amp;lt;connectionString value=&amp;quot;Server=localhost;Database=OSLog;Uid=DBUsername;Pwd=DBUserPassword&amp;quot;/&amp;gt;&lt;br /&gt;
    &amp;lt;commandText value=&amp;quot;INSERT INTO opensim_log(Date,Level,Logger,Message) VALUES (@log_date, @log_level, @logger, @message)&amp;quot;/&amp;gt;&lt;br /&gt;
    &amp;lt;parameter&amp;gt;&lt;br /&gt;
      &amp;lt;parameterName value=&amp;quot;@log_date&amp;quot;/&amp;gt;&lt;br /&gt;
      &amp;lt;dbType value=&amp;quot;DateTime&amp;quot;/&amp;gt;&lt;br /&gt;
      &amp;lt;layout type=&amp;quot;log4net.Layout.RawTimeStampLayout&amp;quot;/&amp;gt;&lt;br /&gt;
    &amp;lt;/parameter&amp;gt;&lt;br /&gt;
    &amp;lt;parameter&amp;gt;&lt;br /&gt;
      &amp;lt;parameterName value=&amp;quot;@log_level&amp;quot;/&amp;gt;&lt;br /&gt;
      &amp;lt;dbType value=&amp;quot;String&amp;quot;/&amp;gt;&lt;br /&gt;
      &amp;lt;size value=&amp;quot;512&amp;quot;/&amp;gt;&lt;br /&gt;
      &amp;lt;layout type=&amp;quot;log4net.Layout.PatternLayout&amp;quot;&amp;gt;&lt;br /&gt;
        &amp;lt;conversionPattern value=&amp;quot;%level&amp;quot;/&amp;gt;&lt;br /&gt;
      &amp;lt;/layout&amp;gt;&lt;br /&gt;
    &amp;lt;/parameter&amp;gt;&lt;br /&gt;
    &amp;lt;parameter&amp;gt;&lt;br /&gt;
      &amp;lt;parameterName value=&amp;quot;@logger&amp;quot;/&amp;gt;&lt;br /&gt;
      &amp;lt;dbType value=&amp;quot;String&amp;quot;/&amp;gt;&lt;br /&gt;
      &amp;lt;size value=&amp;quot;512&amp;quot;/&amp;gt;&lt;br /&gt;
      &amp;lt;layout type=&amp;quot;log4net.Layout.PatternLayout&amp;quot;&amp;gt;&lt;br /&gt;
        &amp;lt;conversionPattern value=&amp;quot;%logger&amp;quot;/&amp;gt;&lt;br /&gt;
      &amp;lt;/layout&amp;gt;&lt;br /&gt;
    &amp;lt;/parameter&amp;gt;&lt;br /&gt;
    &amp;lt;parameter&amp;gt;&lt;br /&gt;
      &amp;lt;parameterName value=&amp;quot;@message&amp;quot;/&amp;gt;&lt;br /&gt;
      &amp;lt;dbType value=&amp;quot;String&amp;quot;/&amp;gt;&lt;br /&gt;
      &amp;lt;size value=&amp;quot;1000&amp;quot;/&amp;gt;&lt;br /&gt;
      &amp;lt;layout type=&amp;quot;log4net.Layout.PatternLayout&amp;quot;&amp;gt;&lt;br /&gt;
        &amp;lt;conversionPattern value=&amp;quot;%message&amp;quot;/&amp;gt;&lt;br /&gt;
      &amp;lt;/layout&amp;gt;&lt;br /&gt;
    &amp;lt;/parameter&amp;gt;&lt;br /&gt;
  &amp;lt;/appender&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To use the appender defined above, replace the line&lt;br /&gt;
  &amp;lt;appender-ref ref=&amp;quot;LogFileAppender&amp;quot; /&amp;gt;&lt;br /&gt;
by&lt;br /&gt;
  &amp;lt;appender-ref ref=&amp;quot;MySql_ADONetAppender&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note: One also can continue logging to File, in which case we do not need to replace the LogFileAppender section.&lt;br /&gt;
&lt;br /&gt;
== Setting log levels during runtime ==&lt;br /&gt;
&lt;br /&gt;
It isn't currently possible to change the level of logging to the log file during runtime. However, it is possible to change the level sent to the console. You can do this by executing the&lt;br /&gt;
&lt;br /&gt;
 set log level [&amp;lt;level&amp;gt;]&lt;br /&gt;
&lt;br /&gt;
command. For example&lt;br /&gt;
&lt;br /&gt;
 set log level error&lt;br /&gt;
&lt;br /&gt;
will mean only errors are sent to the console. The log still receives messages that meet the level set in the OpenSim.exe.config file at startup.&lt;br /&gt;
&lt;br /&gt;
 get log level&lt;br /&gt;
&lt;br /&gt;
will tell you what the current console logging level is.&lt;br /&gt;
&lt;br /&gt;
Changes to the log level sent to the console will not persist over restarts. If you want the change to be permanent, you can set a threshold value in the ConsoleAppender in a config file such as OpenSim.exe.config as described above.&lt;br /&gt;
&lt;br /&gt;
== Specifying log file location per instance ==&lt;br /&gt;
&lt;br /&gt;
Logging for multiple instances run from a single OpenSim.exe isn't something that the default log4net configuration handles. Fortunately, log4net accepts environment variables. This allows a script wrapping OpenSim.exe to specify a log location by setting an environment variable. An example snippet for ''Opensim.exe.config'' might be:&lt;br /&gt;
&lt;br /&gt;
    &amp;lt;appender name=&amp;quot;LogFileAppender&amp;quot; type=&amp;quot;log4net.Appender.FileAppender&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;file type=&amp;quot;log4net.Util.PatternString&amp;quot; value=&amp;quot;%env{OSIM_LOGPATH}\OpenSim.log&amp;quot; /&amp;gt; &lt;br /&gt;
      &amp;lt;appendToFile value=&amp;quot;true&amp;quot; /&amp;gt;&lt;br /&gt;
      &amp;lt;layout type=&amp;quot;log4net.Layout.PatternLayout&amp;quot;&amp;gt;&lt;br /&gt;
        &amp;lt;conversionPattern value=&amp;quot;%date %-5level - %logger %message%newline&amp;quot; /&amp;gt;&lt;br /&gt;
      &amp;lt;/layout&amp;gt;&lt;br /&gt;
    &amp;lt;/appender&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
When OpenSimulator is running under Mono in Linux, then you should have something in your startscript.sh like&lt;br /&gt;
&lt;br /&gt;
    export LOGFILEPATH='/some/absolute/path/'&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
... and in Opensim.exe.config&lt;br /&gt;
&lt;br /&gt;
    &amp;lt;file type=&amp;quot;log4net.Util.PatternString&amp;quot; value=&amp;quot;${LOGFILEPATH}OpenSim.log&amp;quot; /&amp;gt;&lt;/div&gt;</summary>
		<author><name>FoTo50</name></author>	</entry>

	<entry>
		<id>http://opensimulator.org/wiki/Logging</id>
		<title>Logging</title>
		<link rel="alternate" type="text/html" href="http://opensimulator.org/wiki/Logging"/>
				<updated>2021-03-14T16:38:09Z</updated>
		
		<summary type="html">&lt;p&gt;FoTo50: /* Specifying log file location per instance ... added info for linux/mono enviroment variables */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
{{Quicklinks}}&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Changing logging levels before startup ==&lt;br /&gt;
&lt;br /&gt;
OpenSimulator uses the [http://logging.apache.org/log4net/ log4net] package for logging. This means that every executable you run for OpenSimulator has an accompanying .config file which contains the logging configuration&lt;br /&gt;
&lt;br /&gt;
For instance&lt;br /&gt;
&lt;br /&gt;
* OpenSim.exe -&amp;gt; config is OpenSim.exe.config&lt;br /&gt;
* OpenSim.32BitLaunch.exe -&amp;gt; config is OpenSim.32BitLaunch.exe.config&lt;br /&gt;
* Robust.exe -&amp;gt; config is Robust.exe.config&lt;br /&gt;
&lt;br /&gt;
The OpenSim.exe.config file looks like this.&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; ?&amp;gt;&lt;br /&gt;
 &amp;lt;configuration&amp;gt;&lt;br /&gt;
  &amp;lt;configSections&amp;gt;&lt;br /&gt;
    &amp;lt;section name=&amp;quot;log4net&amp;quot; type=&amp;quot;log4net.Config.Log4NetConfigurationSectionHandler,log4net&amp;quot; /&amp;gt;&lt;br /&gt;
  &amp;lt;/configSections&amp;gt;&lt;br /&gt;
  &amp;lt;appSettings&amp;gt;&lt;br /&gt;
  &amp;lt;/appSettings&amp;gt;&lt;br /&gt;
  &amp;lt;log4net&amp;gt;&lt;br /&gt;
    &amp;lt;appender name=&amp;quot;Console&amp;quot; type=&amp;quot;OpenSim.Framework.Console.OpenSimAppender, OpenSim.Framework.Console&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;layout type=&amp;quot;log4net.Layout.PatternLayout&amp;quot;&amp;gt;&lt;br /&gt;
        &amp;lt;conversionPattern value=&amp;quot;%date{HH:mm:ss} - %message%newline&amp;quot; /&amp;gt;&lt;br /&gt;
      &amp;lt;/layout&amp;gt;&lt;br /&gt;
    &amp;lt;/appender&amp;gt;&lt;br /&gt;
 &lt;br /&gt;
    &amp;lt;appender name=&amp;quot;LogFileAppender&amp;quot; type=&amp;quot;log4net.Appender.FileAppender&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;file value=&amp;quot;OpenSim.log&amp;quot; /&amp;gt;&lt;br /&gt;
      &amp;lt;appendToFile value=&amp;quot;true&amp;quot; /&amp;gt;&lt;br /&gt;
      &amp;lt;layout type=&amp;quot;log4net.Layout.PatternLayout&amp;quot;&amp;gt;&lt;br /&gt;
        &amp;lt;conversionPattern value=&amp;quot;%date %-5level - %logger %message%newline&amp;quot; /&amp;gt;&lt;br /&gt;
      &amp;lt;/layout&amp;gt;&lt;br /&gt;
    &amp;lt;/appender&amp;gt;&lt;br /&gt;
 &lt;br /&gt;
    &amp;lt;!-- if you'd like to know what NHibernate is doing more set value=&amp;quot;DEBUG&amp;quot; --&amp;gt;&lt;br /&gt;
    &amp;lt;logger name=&amp;quot;NHibernate&amp;quot; additivity=&amp;quot;false&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;level value=&amp;quot;INFO&amp;quot;/&amp;gt;&lt;br /&gt;
      &amp;lt;appender-ref ref=&amp;quot;NHibernateFileLog&amp;quot;/&amp;gt;&lt;br /&gt;
    &amp;lt;/logger&amp;gt;&lt;br /&gt;
 &lt;br /&gt;
    &amp;lt;root&amp;gt;&lt;br /&gt;
      &amp;lt;level value=&amp;quot;DEBUG&amp;quot; /&amp;gt;&lt;br /&gt;
      &amp;lt;appender-ref ref=&amp;quot;Console&amp;quot; /&amp;gt;&lt;br /&gt;
      &amp;lt;appender-ref ref=&amp;quot;LogFileAppender&amp;quot; /&amp;gt;&lt;br /&gt;
    &amp;lt;/root&amp;gt;&lt;br /&gt;
  &amp;lt;/log4net&amp;gt;&lt;br /&gt;
 &amp;lt;/configuration&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This looks rather complicated, but if you want to change the level of messages logged, then you could change the value in the &amp;lt;root&amp;gt; section (right at the end) which is &lt;br /&gt;
&lt;br /&gt;
 &amp;lt;level value=&amp;quot;DEBUG&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
in the example above to something different, e.g.&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;level value=&amp;quot;WARN&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
which will only display warning and error level log messages. Permissible values are ALL, DEBUG, INFO, WARN, ERROR, FATAL, OFF&lt;br /&gt;
&lt;br /&gt;
You can also see from the OpenSim.exe.config file that log files are written to OpenSim.log (as well as the console).&lt;br /&gt;
&lt;br /&gt;
=== Rolling file appender and maximum log-file size ===&lt;br /&gt;
&lt;br /&gt;
Log4net provides several log-file appenders. One of them is the ''RollingFileAppender'', which limits log-file size and rotates log-files automatically. To use this appender, add the following section to the log4net-configuration:&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;appender name=&amp;quot;RollingFileAppender&amp;quot; type=&amp;quot;log4net.Appender.RollingFileAppender&amp;quot;&amp;gt;&lt;br /&gt;
   &amp;lt;file value=&amp;quot;OpenSim.log&amp;quot; /&amp;gt;&lt;br /&gt;
   &amp;lt;appendToFile value=&amp;quot;true&amp;quot; /&amp;gt;&lt;br /&gt;
   &amp;lt;maximumFileSize value=&amp;quot;1000KB&amp;quot; /&amp;gt;&lt;br /&gt;
   &amp;lt;maxSizeRollBackups value=&amp;quot;2&amp;quot; /&amp;gt;&lt;br /&gt;
   &amp;lt;layout type=&amp;quot;log4net.Layout.PatternLayout&amp;quot;&amp;gt;&lt;br /&gt;
     &amp;lt;conversionPattern value=&amp;quot;%date %-5level - %logger %message%newline&amp;quot; /&amp;gt;&lt;br /&gt;
   &amp;lt;/layout&amp;gt;&lt;br /&gt;
 &amp;lt;/appender&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The maximum size can be set in the ''maximumFileSize'' element, the ''maxSizeRollBackups'' element determines the maximum number of rolling log-files. So, the setting above will create a log-file named ''OpenSim.log'' with a maximum size of 1000KB. When the limit is reached, ''OpenSim.log'' will be renamed to ''OpenSim.log.1'', and a fresh ''OpenSim.log'' is started (possibly after renaming ''OpenSim.log.1'' to ''OpenSim.log.2'', should that file exist already). &lt;br /&gt;
&lt;br /&gt;
To use the appender defined above, replace the line&lt;br /&gt;
  &amp;lt;appender-ref ref=&amp;quot;LogFileAppender&amp;quot; /&amp;gt;&lt;br /&gt;
by&lt;br /&gt;
  &amp;lt;appender-ref ref=&amp;quot;RollingFileAppender&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Further information about configuration of log4net can be found on the [http://logging.apache.org/log4net/release/manual/configuration.html Log4Net configuration page].&lt;br /&gt;
&lt;br /&gt;
=== More specialized requirements ===&lt;br /&gt;
As an example, similar to [http://opensimulator.org/mantis/view.php?id=2603 Mantis#2603], if you want logging the [[XEngine]]'s DEBUG output into a separate file ''xengine.log'', and let only the message with level INFO and higher appear on the console, you can do that by adding the following lines to your ''OpenSim.exe.config'':&lt;br /&gt;
&lt;br /&gt;
    &amp;lt;appender name=&amp;quot;XengineLogFileAppender&amp;quot; type=&amp;quot;log4net.Appender.FileAppender&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;file value=&amp;quot;xengine.log&amp;quot; /&amp;gt;&lt;br /&gt;
      &amp;lt;appendToFile value=&amp;quot;true&amp;quot; /&amp;gt;&lt;br /&gt;
      &amp;lt;layout type=&amp;quot;log4net.Layout.PatternLayout&amp;quot;&amp;gt;&lt;br /&gt;
        &amp;lt;conversionPattern value=&amp;quot;%date %-5level - %logger %message%newline&amp;quot; /&amp;gt;&lt;br /&gt;
      &amp;lt;/layout&amp;gt;&lt;br /&gt;
    &amp;lt;/appender&amp;gt;&lt;br /&gt;
 &lt;br /&gt;
    &amp;lt;appender name=&amp;quot;XengineConsole&amp;quot; type=&amp;quot;OpenSim.Framework.Console.OpenSimAppender, OpenSim.Framework.Console&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;layout type=&amp;quot;log4net.Layout.PatternLayout&amp;quot;&amp;gt;&lt;br /&gt;
        &amp;lt;conversionPattern value=&amp;quot;%date{HH:mm:ss} - %message%newline&amp;quot; /&amp;gt;&lt;br /&gt;
      &amp;lt;/layout&amp;gt;&lt;br /&gt;
      &amp;lt;filter type=&amp;quot;log4net.Filter.LevelRangeFilter&amp;quot;&amp;gt;&lt;br /&gt;
        &amp;lt;levelMin value=&amp;quot;INFO&amp;quot; /&amp;gt;&lt;br /&gt;
        &amp;lt;levelMax value=&amp;quot;FATAL&amp;quot; /&amp;gt;&lt;br /&gt;
      &amp;lt;/filter&amp;gt;&lt;br /&gt;
    &amp;lt;/appender&amp;gt;&lt;br /&gt;
 &lt;br /&gt;
    &amp;lt;logger name=&amp;quot;OpenSim.Region.ScriptEngine.XEngine.XEngine&amp;quot; additivity=&amp;quot;false&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;appender-ref ref=&amp;quot;XengineLogFileAppender&amp;quot; /&amp;gt;&lt;br /&gt;
      &amp;lt;appender-ref ref=&amp;quot;XengineConsole&amp;quot; /&amp;gt;&lt;br /&gt;
    &amp;lt;/logger&amp;gt;&lt;br /&gt;
&lt;br /&gt;
(if there is a shorter way to do it, please replace those lines above) ;-)&lt;br /&gt;
&lt;br /&gt;
Or, as an easier example, if you want to have the normal logging, except for the HttpServers which you want only INFO messages for, you can add the following lines after the ''&amp;lt;/root&amp;gt;''-tag:&lt;br /&gt;
&lt;br /&gt;
    &amp;lt;logger name=&amp;quot;OpenSim.Framework.Servers.HttpServerLogWriter&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;level value=&amp;quot;INFO&amp;quot; /&amp;gt;&lt;br /&gt;
    &amp;lt;/logger&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== MySQL Logging ===&lt;br /&gt;
This example can be used to log the data to a MySQL table.&lt;br /&gt;
&lt;br /&gt;
Step 1: Create a MySQL Database &amp;quot;OSLog&amp;quot; and add the following table to which the data will be stored to&lt;br /&gt;
&lt;br /&gt;
  CREATE TABLE `opensim_log` (&lt;br /&gt;
   `ID` int(10) NOT NULL AUTO_INCREMENT,&lt;br /&gt;
   `DATE` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,&lt;br /&gt;
   `Level` varchar(100) DEFAULT '',&lt;br /&gt;
   `Logger` varchar(512) DEFAULT '',&lt;br /&gt;
   `Message` varchar(1000) DEFAULT '',&lt;br /&gt;
   PRIMARY KEY (`ID`) &lt;br /&gt;
  );  &lt;br /&gt;
&lt;br /&gt;
Step 2: Replace the &amp;quot;LogFileAppender&amp;quot; appender Section with&lt;br /&gt;
&lt;br /&gt;
  &amp;lt;appender name=&amp;quot;MySql_ADONetAppender&amp;quot; type=&amp;quot;log4net.Appender.ADONetAppender&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;bufferSize value=&amp;quot;5&amp;quot; /&amp;gt;&lt;br /&gt;
    &amp;lt;lossy value=&amp;quot;false&amp;quot;/&amp;gt;&lt;br /&gt;
    &amp;lt;connectionType value=&amp;quot;MySql.Data.MySqlClient.MySqlConnection, MySql.Data&amp;quot;/&amp;gt;&lt;br /&gt;
    &amp;lt;connectionString value=&amp;quot;Server=localhost;Database=OSLog;Uid=DBUsername;Pwd=DBUserPassword&amp;quot;/&amp;gt;&lt;br /&gt;
    &amp;lt;commandText value=&amp;quot;INSERT INTO opensim_log(Date,Level,Logger,Message) VALUES (@log_date, @log_level, @logger, @message)&amp;quot;/&amp;gt;&lt;br /&gt;
    &amp;lt;parameter&amp;gt;&lt;br /&gt;
      &amp;lt;parameterName value=&amp;quot;@log_date&amp;quot;/&amp;gt;&lt;br /&gt;
      &amp;lt;dbType value=&amp;quot;DateTime&amp;quot;/&amp;gt;&lt;br /&gt;
      &amp;lt;layout type=&amp;quot;log4net.Layout.RawTimeStampLayout&amp;quot;/&amp;gt;&lt;br /&gt;
    &amp;lt;/parameter&amp;gt;&lt;br /&gt;
    &amp;lt;parameter&amp;gt;&lt;br /&gt;
      &amp;lt;parameterName value=&amp;quot;@log_level&amp;quot;/&amp;gt;&lt;br /&gt;
      &amp;lt;dbType value=&amp;quot;String&amp;quot;/&amp;gt;&lt;br /&gt;
      &amp;lt;size value=&amp;quot;512&amp;quot;/&amp;gt;&lt;br /&gt;
      &amp;lt;layout type=&amp;quot;log4net.Layout.PatternLayout&amp;quot;&amp;gt;&lt;br /&gt;
        &amp;lt;conversionPattern value=&amp;quot;%level&amp;quot;/&amp;gt;&lt;br /&gt;
      &amp;lt;/layout&amp;gt;&lt;br /&gt;
    &amp;lt;/parameter&amp;gt;&lt;br /&gt;
    &amp;lt;parameter&amp;gt;&lt;br /&gt;
      &amp;lt;parameterName value=&amp;quot;@logger&amp;quot;/&amp;gt;&lt;br /&gt;
      &amp;lt;dbType value=&amp;quot;String&amp;quot;/&amp;gt;&lt;br /&gt;
      &amp;lt;size value=&amp;quot;512&amp;quot;/&amp;gt;&lt;br /&gt;
      &amp;lt;layout type=&amp;quot;log4net.Layout.PatternLayout&amp;quot;&amp;gt;&lt;br /&gt;
        &amp;lt;conversionPattern value=&amp;quot;%logger&amp;quot;/&amp;gt;&lt;br /&gt;
      &amp;lt;/layout&amp;gt;&lt;br /&gt;
    &amp;lt;/parameter&amp;gt;&lt;br /&gt;
    &amp;lt;parameter&amp;gt;&lt;br /&gt;
      &amp;lt;parameterName value=&amp;quot;@message&amp;quot;/&amp;gt;&lt;br /&gt;
      &amp;lt;dbType value=&amp;quot;String&amp;quot;/&amp;gt;&lt;br /&gt;
      &amp;lt;size value=&amp;quot;1000&amp;quot;/&amp;gt;&lt;br /&gt;
      &amp;lt;layout type=&amp;quot;log4net.Layout.PatternLayout&amp;quot;&amp;gt;&lt;br /&gt;
        &amp;lt;conversionPattern value=&amp;quot;%message&amp;quot;/&amp;gt;&lt;br /&gt;
      &amp;lt;/layout&amp;gt;&lt;br /&gt;
    &amp;lt;/parameter&amp;gt;&lt;br /&gt;
  &amp;lt;/appender&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To use the appender defined above, replace the line&lt;br /&gt;
  &amp;lt;appender-ref ref=&amp;quot;LogFileAppender&amp;quot; /&amp;gt;&lt;br /&gt;
by&lt;br /&gt;
  &amp;lt;appender-ref ref=&amp;quot;MySql_ADONetAppender&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note: One also can continue logging to File, in which case we do not need to replace the LogFileAppender section.&lt;br /&gt;
&lt;br /&gt;
== Setting log levels during runtime ==&lt;br /&gt;
&lt;br /&gt;
It isn't currently possible to change the level of logging to the log file during runtime. However, it is possible to change the level sent to the console. You can do this by executing the&lt;br /&gt;
&lt;br /&gt;
 set log level [&amp;lt;level&amp;gt;]&lt;br /&gt;
&lt;br /&gt;
command. For example&lt;br /&gt;
&lt;br /&gt;
 set log level error&lt;br /&gt;
&lt;br /&gt;
will mean only errors are sent to the console. The log still receives messages that meet the level set in the OpenSim.exe.config file at startup.&lt;br /&gt;
&lt;br /&gt;
 get log level&lt;br /&gt;
&lt;br /&gt;
will tell you what the current console logging level is.&lt;br /&gt;
&lt;br /&gt;
Changes to the log level sent to the console will not persist over restarts. If you want the change to be permanent, you can set a threshold value in the ConsoleAppender in a config file such as OpenSim.exe.config as described above.&lt;br /&gt;
&lt;br /&gt;
== Specifying log file location per instance ==&lt;br /&gt;
&lt;br /&gt;
Logging for multiple instances run from a single OpenSim.exe isn't something that the default log4net configuration handles. Fortunately, log4net accepts environment variables. This allows a script wrapping OpenSim.exe to specify a log location by setting an environment variable. An example snippet for ''Opensim.exe.config'' might be:&lt;br /&gt;
&lt;br /&gt;
    &amp;lt;appender name=&amp;quot;LogFileAppender&amp;quot; type=&amp;quot;log4net.Appender.FileAppender&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;file type=&amp;quot;log4net.Util.PatternString&amp;quot; value=&amp;quot;%env{OSIM_LOGPATH}\OpenSim.log&amp;quot; /&amp;gt; &lt;br /&gt;
      &amp;lt;appendToFile value=&amp;quot;true&amp;quot; /&amp;gt;&lt;br /&gt;
      &amp;lt;layout type=&amp;quot;log4net.Layout.PatternLayout&amp;quot;&amp;gt;&lt;br /&gt;
        &amp;lt;conversionPattern value=&amp;quot;%date %-5level - %logger %message%newline&amp;quot; /&amp;gt;&lt;br /&gt;
      &amp;lt;/layout&amp;gt;&lt;br /&gt;
    &amp;lt;/appender&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
When OpenSimulator is running under Mono in Linux, then you should have something in your startscript.sh like&lt;br /&gt;
&lt;br /&gt;
    export LOGFILEPATH='/some/absolute/path'&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
... and in Opensim.exe.config&lt;br /&gt;
&lt;br /&gt;
    &amp;lt;file type=&amp;quot;log4net.Util.PatternString&amp;quot; value=&amp;quot;${LOGFILEPATH}OpenSim.log&amp;quot; /&amp;gt;&lt;/div&gt;</summary>
		<author><name>FoTo50</name></author>	</entry>

	<entry>
		<id>http://opensimulator.org/wiki/Grid_List</id>
		<title>Grid List</title>
		<link rel="alternate" type="text/html" href="http://opensimulator.org/wiki/Grid_List"/>
				<updated>2014-04-04T12:22:10Z</updated>
		
		<summary type="html">&lt;p&gt;FoTo50: updated jopensimworld&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
{{Quicklinks}}&lt;br /&gt;
&lt;br /&gt;
== What is the Grid List? ==&lt;br /&gt;
&lt;br /&gt;
There are hundreds (thousands?) of OpenSimulator-based virtual worlds out there. Many of them are free to use and welcome new users. This grid list is a community-generated list of such worlds. If you would like to experience an OpenSimulator-based virtual world before installing your own, try one of these. &lt;br /&gt;
&lt;br /&gt;
'''IMPORTANT NOTE:''' The OpenSimulator project is not responsible for, nor in any way associated with, any grid listed on this page, nor for any grid's content or activities. Visit at your own risk. Also, there are no guarantees that these worlds are up and running.&lt;br /&gt;
&lt;br /&gt;
== Public grids  ==&lt;br /&gt;
&lt;br /&gt;
'''Grid List Policy:''' Please list your grid only if uses OpenSimulator as a component. Do not include advertising language. The entries in the main list should just contain the grid name and the plain numbers as defined by the column headers. '''Please use [[Grid List/Template|this template]] for the subpages to keep the information in a comparable manner.''' Grids are listed in the order of appearance, so please add your entry to the bottom of the list. Anyone found inserting a grid up higher in the list will have their entry moved or removed. &lt;br /&gt;
&lt;br /&gt;
You may want provide a link on your world's website back to the project by using the [[OpenSim Graphics|Powered by OpenSimulator logo]]. Credit is appreciated but not required. &lt;br /&gt;
&lt;br /&gt;
If you own a grid and are interested in joining a grid association see this page: [[Grid Associations]] &lt;br /&gt;
&lt;br /&gt;
Hypergrid Business maintains a list of active grids, updated monthly: [http://www.hypergridbusiness.com/statistics/active-grids/ Active OpenSim grids]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
{| cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;5&amp;quot; border=&amp;quot;1&amp;quot; align=&amp;quot;center&amp;quot; style=&amp;quot;width: 724px; height: 2270px;&amp;quot; class=&amp;quot;sortable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Grid Name &lt;br /&gt;
! # Regions &lt;br /&gt;
! Approx # Users &lt;br /&gt;
! Unique last 30days&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/OSGrid|OSGrid]] &lt;br /&gt;
| 7178 &lt;br /&gt;
| 64,296 &lt;br /&gt;
| 3280&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/Francogrid|Francogrid]] &lt;br /&gt;
| 690&lt;br /&gt;
| 4935&lt;br /&gt;
| 1142&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/The New World Grid|The New World Grid]] &lt;br /&gt;
| 330 &lt;br /&gt;
| 5200 &lt;br /&gt;
| 590&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/3rd Rock Grid|3rd Rock Grid (Currency Enabled)]] &lt;br /&gt;
| 322 &lt;br /&gt;
| 8653 &lt;br /&gt;
| 596&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/Metropolis|Metropolis Metaversum (NO Money, never!)]] &lt;br /&gt;
| 3696&lt;br /&gt;
| 5595&lt;br /&gt;
| 1360&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/German Grid|German Grid(with OM¢)]] &lt;br /&gt;
| 107 &lt;br /&gt;
| 2353 &lt;br /&gt;
| 385&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/Open-Neuland|OpenSimulator-Club Open Neuland (with OM¢)]] &lt;br /&gt;
| 216 &lt;br /&gt;
| 384 &lt;br /&gt;
| 60&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/Wilder-Westen|OpenSimulator-Club Wilder Westen (with OM¢)]] &lt;br /&gt;
| 41 &lt;br /&gt;
| 122 &lt;br /&gt;
| 36&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/Myopengrid.com|Myopengrid (with M$ dollars)]] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp;&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/Your Alternative Life|Your Alternative Life (with OM¢)]] &lt;br /&gt;
| 47 &lt;br /&gt;
| 2089 &lt;br /&gt;
| 1458&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/Openvue|Openvue]] &lt;br /&gt;
| 16&lt;br /&gt;
| 24&lt;br /&gt;
| 64&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/ScienceSim|ScienceSim]] &lt;br /&gt;
| 25 &lt;br /&gt;
| 30 &lt;br /&gt;
| 15&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/Unica|unica]] &lt;br /&gt;
| 16 &lt;br /&gt;
| 60 &lt;br /&gt;
| 10&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/LISAT|Lost-In-Space-And-Time( Free, H.G. 7.2 and wifi login)]] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp;&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/Avination|Avination (w/economy and combat system]] &lt;br /&gt;
| 1138 &lt;br /&gt;
| 25860 &lt;br /&gt;
| 8727&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/SimValley NL|SimValley NL]] &lt;br /&gt;
| 202 &lt;br /&gt;
| 146 &lt;br /&gt;
| 23&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/OPENSIM NL|OPENSIM NL]] &lt;br /&gt;
| 9 &lt;br /&gt;
| 426 &lt;br /&gt;
| 34&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/RPGRID NL|RPGRID NL]] &lt;br /&gt;
| 30 &lt;br /&gt;
| 141 &lt;br /&gt;
| 16&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/VirtualFrance3D|VirtualFrance3D =&amp;amp;gt;WEB: http://virtualfrance3d.fr]] &lt;br /&gt;
| 16 &lt;br /&gt;
| 143 &lt;br /&gt;
| 31&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/Twisted Sky|Twisted Sky (with OM¢)]] &lt;br /&gt;
| 60 &lt;br /&gt;
| 290 &lt;br /&gt;
| 68&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/TertiaryGrid|Tertiary grid]] &lt;br /&gt;
| 42 &lt;br /&gt;
| 254&lt;br /&gt;
| 34&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/Logicamp|Logicamp® - Belgian Metaverse (Vivox Voice, Mesh Enabled, PayPal buy region enabled. )]] &lt;br /&gt;
| 193&lt;br /&gt;
| 1749 &lt;br /&gt;
| 242&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/virtyou|virtyou]] &lt;br /&gt;
| 110 &lt;br /&gt;
| 1676 &lt;br /&gt;
| 70&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/Jamgrid|Jamgrid]] &lt;br /&gt;
| 15 &lt;br /&gt;
| 55 &lt;br /&gt;
| 15&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/JOGrid|Japan Open Grid]] &lt;br /&gt;
| &amp;amp;nbsp;&lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp;&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/Tlön|Tlön]] &lt;br /&gt;
| 11 &lt;br /&gt;
| 65 &lt;br /&gt;
| 10&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/PMGrid|PMGrid]] &lt;br /&gt;
| 80 &lt;br /&gt;
| 100 &lt;br /&gt;
| 10&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/Cybergrid|Cybergrid]] &lt;br /&gt;
| 1 &lt;br /&gt;
| 44 &lt;br /&gt;
| &amp;amp;nbsp;&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/jokaydiagrid|jokaydiaGRID]] &lt;br /&gt;
| 20 &lt;br /&gt;
| 253 &lt;br /&gt;
| 75&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/Rezzable Visions|Rezzable Visions]] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp;&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/Craft|Craft]] &lt;br /&gt;
| 180 &lt;br /&gt;
| 900 &lt;br /&gt;
| 290&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/Virtual RP|Virtual RP - Roleplay - VRP Combat Meter - Free World]] &lt;br /&gt;
| 17 &lt;br /&gt;
| 714 &lt;br /&gt;
| 55&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/GerGrid|GerGrid (with OS$)]] &lt;br /&gt;
| 50 &lt;br /&gt;
| 84 &lt;br /&gt;
| 15&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/AlphaTowne|Alpha Towne w/G$ Hypergrid 1.5]] &lt;br /&gt;
| 308 &lt;br /&gt;
| 1172 &lt;br /&gt;
| 909&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/Annuna Grid|Annuna Grid]] &lt;br /&gt;
| 60 &lt;br /&gt;
| 60 &lt;br /&gt;
| &amp;amp;nbsp;&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/VeeSome|VeeSome]] &lt;br /&gt;
| 48 &lt;br /&gt;
| 106 &lt;br /&gt;
| 53&lt;br /&gt;
|-&lt;br /&gt;
| [VirtuaLife|Virtualife http://www.virtualife.eu. Regions free.Economy , voice and rp.&lt;br /&gt;
| 132 &lt;br /&gt;
| 1000 &lt;br /&gt;
| 500&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/REDISIS|Redisis share knowledge]] &lt;br /&gt;
| 130 &lt;br /&gt;
| 60 &lt;br /&gt;
| 20&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/PearGrid|PearGrid]] &lt;br /&gt;
| 18 &lt;br /&gt;
| 34 &lt;br /&gt;
| 8&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/Island Oasis|Island Oasis P$]] &lt;br /&gt;
| 211&lt;br /&gt;
| 5053&lt;br /&gt;
| 1195&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/HAVEN: Your World|HAVEN: Your World]] &lt;br /&gt;
| 13 &lt;br /&gt;
| 11 &lt;br /&gt;
| 7&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/Flatlandia.cc|Flatlandia.cc]] &lt;br /&gt;
| 33 &lt;br /&gt;
| 177 &lt;br /&gt;
| 110&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/AnSky|AnSky]] &lt;br /&gt;
| 10 &lt;br /&gt;
| 112&lt;br /&gt;
| 17&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/Lisat|ArtGridOnLine]] &lt;br /&gt;
| 12 &lt;br /&gt;
| 48 &lt;br /&gt;
| 15&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/EU-Grid|EU-Grid]] &lt;br /&gt;
| 10 &lt;br /&gt;
| 350 &lt;br /&gt;
| &amp;amp;nbsp;&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/GiantGrid|GiantGrid]] &lt;br /&gt;
| 169 &lt;br /&gt;
| 261 &lt;br /&gt;
| 157&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/pseudospace|pseudospace]] &lt;br /&gt;
| 12 &lt;br /&gt;
| 46 &lt;br /&gt;
| &amp;amp;nbsp;&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/Metapocalypse|Metapocalypse Grid]] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp;&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/UFSGrid|UFSGrid]] &lt;br /&gt;
| 36 &lt;br /&gt;
| 897 &lt;br /&gt;
| +/-50&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/Virtual Worlds Grid|Virtual Worlds Grid]] &lt;br /&gt;
| 527 &lt;br /&gt;
| 30 &lt;br /&gt;
| 4&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/3DGrid World|3DGrid World - formaly &amp;quot;The SecondLearning Grid&amp;quot;]] &lt;br /&gt;
| 4 &lt;br /&gt;
| 55 &lt;br /&gt;
| 46&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/slitalia|slitalia]] &lt;br /&gt;
| 8 &lt;br /&gt;
| 36 &lt;br /&gt;
| 46&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/Sofitek|Sofitek]] &lt;br /&gt;
| 6 &lt;br /&gt;
| 10 &lt;br /&gt;
| 10&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/AstralGrid|AstralGrid]] &lt;br /&gt;
| 70 &lt;br /&gt;
| 40 &lt;br /&gt;
| 30&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/MOSES|MOSES : Military Open Simulator Enterprise Strategy]] &lt;br /&gt;
| 117 &lt;br /&gt;
| 227 &lt;br /&gt;
| 102&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/Dorenas World|Dorenas World]] &lt;br /&gt;
| 138&lt;br /&gt;
| 335&lt;br /&gt;
| 107&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/Enakai|Enakai]] &lt;br /&gt;
| 16 &lt;br /&gt;
| 14 &lt;br /&gt;
| 34&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/Speculoos|Speculoos: belgian cookie flavored grid]] &lt;br /&gt;
| 20&lt;br /&gt;
| 80 &lt;br /&gt;
| 10&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/EverWorlds.com|EverWorlds: Bringing People Together (Old name: Destiny Zero)]] &lt;br /&gt;
| 17 &lt;br /&gt;
| 2 &lt;br /&gt;
| 3&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/IcaruSRealmS|=IcaruS= RealmS]] &lt;br /&gt;
| 26 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| 14&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/lpgrid.com|Lost Paradise (Currency OM¢ / LP$)]] &lt;br /&gt;
| 445&lt;br /&gt;
| 416&lt;br /&gt;
| 177&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/Valhalla Virtual|Valhalla Virtual]] &lt;br /&gt;
| 9 &lt;br /&gt;
| 25 &lt;br /&gt;
| 4&lt;br /&gt;
|-&lt;br /&gt;
| [http://SkyLineGrid.com SkyLine Grid] &amp;amp;#124; Currency enabled - Mesh enabled &lt;br /&gt;
| 25 &lt;br /&gt;
| 6 &lt;br /&gt;
| 6&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/Cyber Wrld|Cyber Wrld]] &lt;br /&gt;
| 5 &lt;br /&gt;
| 8 &lt;br /&gt;
| 8&lt;br /&gt;
|-&lt;br /&gt;
| [[FleepGrid]] &lt;br /&gt;
| 11 &lt;br /&gt;
| 150 &lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/My3dLife|My3dLife]] &lt;br /&gt;
| 10 &lt;br /&gt;
| 20 &lt;br /&gt;
| 3&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/www.daseinworld.com|DaseinWorld]] &lt;br /&gt;
| 16 &lt;br /&gt;
| 3 &lt;br /&gt;
| 3&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/You3D|You3D]] &lt;br /&gt;
| 11 &lt;br /&gt;
| 6 &lt;br /&gt;
| 6&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/Virtual Realms Grid|Virtual Realms Grid]] &lt;br /&gt;
| 8 &lt;br /&gt;
| 10 &lt;br /&gt;
| 3&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/Gor Grid|Gor grid]] &lt;br /&gt;
| 8 &lt;br /&gt;
| 10 &lt;br /&gt;
| 10&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/Pathlandia|Pathlandia]] &lt;br /&gt;
| 4 &lt;br /&gt;
| 1 &lt;br /&gt;
| 30&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/Austria|Austria]] &lt;br /&gt;
| 9 &lt;br /&gt;
| 6 &lt;br /&gt;
| 9&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/Psychedelia|Psychedelia]] &lt;br /&gt;
| 5 &lt;br /&gt;
| 7 &lt;br /&gt;
| 11&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/M001 | M001]]&lt;br /&gt;
| 36&lt;br /&gt;
| 4&lt;br /&gt;
| 4&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/OpenSim Creations Grid|OpenSim Creations Grid]] &lt;br /&gt;
| 15 &lt;br /&gt;
| 11&lt;br /&gt;
| 10&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/StarGates Matrix|StarGates Matrix]] &lt;br /&gt;
| 5 &lt;br /&gt;
| 7&lt;br /&gt;
| 3&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/Zairus Grid|Zairus Grid]] &lt;br /&gt;
| 72 &lt;br /&gt;
| 10&lt;br /&gt;
| 3&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/HyperGrid Plaza|HyperGrid Plaza]] &lt;br /&gt;
| 1&lt;br /&gt;
| 100&lt;br /&gt;
| 10&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/Ice Grid|Ice Grid]] &lt;br /&gt;
| 28 &lt;br /&gt;
| 22 &lt;br /&gt;
| 10&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/ART|ART]] &lt;br /&gt;
| 3(real) &lt;br /&gt;
| ? (real)&lt;br /&gt;
| 150(real)&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/Stone Grid|Stone Grid]] &lt;br /&gt;
| 3&lt;br /&gt;
| 4 &lt;br /&gt;
| 4&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/ItalianGrid|ItalianGrid (Economy con Mod.PayPal)]] &lt;br /&gt;
| 32&lt;br /&gt;
| 163 &lt;br /&gt;
| 108&lt;br /&gt;
|-&lt;br /&gt;
| [http://adreans-world.from-fl.com/home/ Adreans-World] &amp;amp;#124; Currency &amp;amp; Voice enabled&lt;br /&gt;
| 157&lt;br /&gt;
| 187 &lt;br /&gt;
| 32&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/4AllGrid|4AllGrid- not active/down]] &lt;br /&gt;
| 68&lt;br /&gt;
| 6&lt;br /&gt;
| 23&lt;br /&gt;
|-&lt;br /&gt;
| [[3rdlifegrid.com|3rd Life - Virtual Worlds, Avatars, Free 3D Chat]] &lt;br /&gt;
| 204&lt;br /&gt;
| 370 &lt;br /&gt;
| 26&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/EduGrid|EduGrid]] &lt;br /&gt;
| 15&lt;br /&gt;
| 2000&lt;br /&gt;
| 50&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.virtualhighway.us Virtual Highway] &amp;amp;#124; Inworld Currency, Mesh enabled, Combat Meter&lt;br /&gt;
| 123&lt;br /&gt;
| 780&lt;br /&gt;
| 140&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.jopensim.com jOpenSimWorld]&amp;amp;#124; Currency enabled, Mesh enabled, Voice enabled, Paypal, Free Land&lt;br /&gt;
| 39&lt;br /&gt;
| 327&lt;br /&gt;
| 39&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.clonelife.eu Clone Life]&amp;amp;#124; Mesh enabled, Voice enabled, NPcS &lt;br /&gt;
| 29 &lt;br /&gt;
| 5863 &lt;br /&gt;
| 186&lt;br /&gt;
|-&lt;br /&gt;
|[[Grid List/Littlefield_Grid|Littlefield Grid]] &amp;amp;#124; 18+ only grid, Vivox Voice, Mesh Enabled, PayPal buy region enabled.&lt;br /&gt;
| 226&lt;br /&gt;
| 1035&lt;br /&gt;
| 355&lt;br /&gt;
|-&lt;br /&gt;
|[[Grid List/Athabasca University|Athabasca University]] &amp;amp;#124; Educational Grid, all ages, Vivox Voice, Mesh Enabled. http://opensim.athabascau.ca:9000/wifi/&lt;br /&gt;
| 16 &lt;br /&gt;
| 15 (in development stage)&lt;br /&gt;
| 15&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/World4US|World4US(with OM¢)]] &lt;br /&gt;
| 25 &lt;br /&gt;
| 37 &lt;br /&gt;
| 17&lt;br /&gt;
|-&lt;br /&gt;
| Gorean Life Style  grid http://www.goreanlifestyle.com/&lt;br /&gt;
|30&lt;br /&gt;
|50&lt;br /&gt;
|45&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/COSIE Grid|COSIE Grid]] &lt;br /&gt;
| 6 &lt;br /&gt;
| 3&lt;br /&gt;
| 3&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/H omeland3D|Homeland3D]] &lt;br /&gt;
| 40 &lt;br /&gt;
| 4&lt;br /&gt;
| 4&lt;br /&gt;
|-&lt;br /&gt;
|[http://hg.meetinstantly.com:8002/wifi MeetInstantly.com] &lt;br /&gt;
| 32&lt;br /&gt;
| 5&lt;br /&gt;
| 5&lt;br /&gt;
|-&lt;br /&gt;
|[[Grid List/Traduverse|Traduverse]]&lt;br /&gt;
| 49&lt;br /&gt;
| 27&lt;br /&gt;
| 27&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/SkyLifeGrid|SkyLife® (Hypergrid) (SB$) (MESH) (Free Uploads) (MUCH MORE)]] &lt;br /&gt;
| 32&lt;br /&gt;
| 60 &lt;br /&gt;
| 49&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
This is a list of Grids that been inactive for a few days and or have claimed to be inactive by the owner. &amp;lt;!-- MAJ le 30/12/2011 --&amp;gt; &lt;br /&gt;
&lt;br /&gt;
{| cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;5&amp;quot; border=&amp;quot;1&amp;quot; align=&amp;quot;center&amp;quot; style=&amp;quot;width: 724px; height: 2270px;&amp;quot; class=&amp;quot;sortable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Grid Name &lt;br /&gt;
! # Regions &lt;br /&gt;
! Approx # Users &lt;br /&gt;
! Unique last 30days&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/Uvatar|Uvatar.com]] &lt;br /&gt;
| &amp;amp;nbsp;??? &lt;br /&gt;
| &amp;amp;nbsp;??? &lt;br /&gt;
| 0 &amp;lt;!-- Logins are disabled. Last update to the website was in 2012, many unfixed errors to the site. --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/Cyberlandia|Cyberlandia]] &lt;br /&gt;
| 185 &lt;br /&gt;
| 1600 &lt;br /&gt;
| 269&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/Avatar Hangout|Avatar Hangout (with OMC)]] &lt;br /&gt;
| 73 &lt;br /&gt;
| 8,626 &lt;br /&gt;
| 58&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/DGP Grid|DGP Grid]] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp;&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/tescos.org.uk|tescos.org.uk (curency ƒ)]] &lt;br /&gt;
| 30 &lt;br /&gt;
| 20 &lt;br /&gt;
| 20&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/Role Play Worlds|Role Play Worlds - Your Fantasy, your world]] &lt;br /&gt;
| 129 &lt;br /&gt;
| 2276 &lt;br /&gt;
| 298&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/Avatrian|Avatrian]] &lt;br /&gt;
| 11 &lt;br /&gt;
| 25 &lt;br /&gt;
| 150&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/OSBEST|OSBEST]] &lt;br /&gt;
| 12 &lt;br /&gt;
| 8 &lt;br /&gt;
| 8&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/MCM Realm|MCM Realm]] &lt;br /&gt;
| 22 &lt;br /&gt;
| 73 &lt;br /&gt;
| 23&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/Oasis Grid|Oasis Grid]] &lt;br /&gt;
| 89 &lt;br /&gt;
| 3068 &lt;br /&gt;
| 228&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/AtMeeting|AtMeeting Grid]] &lt;br /&gt;
| 20 &lt;br /&gt;
| 30 &lt;br /&gt;
| 25&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/OpenUtopia|OpenUtopia Grid]] &lt;br /&gt;
| 1 &lt;br /&gt;
| 3 &lt;br /&gt;
| 3&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/Virtualgames3d|Virtualgames3d]] &lt;br /&gt;
| 140 &lt;br /&gt;
| 1350 &lt;br /&gt;
| 500&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/Grid4Us|Grid4Us]] &lt;br /&gt;
| 22 &lt;br /&gt;
| 130 &lt;br /&gt;
| 50&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/K-grid|K-grid]] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp;&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/Le Monde de Darwin|Le Monde de Darwin]] &lt;br /&gt;
| 73 &lt;br /&gt;
| 83 &lt;br /&gt;
| 36&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/NeXtLife|NeXtLife Grid]] &lt;br /&gt;
| 15 &lt;br /&gt;
| 7 &lt;br /&gt;
| 7&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/Sensation Games|Sensation Games]] &lt;br /&gt;
| 1 &lt;br /&gt;
| 2 &lt;br /&gt;
| 1&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/SLI-Grid|SLI-Grid]] &lt;br /&gt;
| 5 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp;&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/DSGrid|www.dsgrid.eu]] &lt;br /&gt;
| 15 &lt;br /&gt;
| 162 &lt;br /&gt;
| 22&lt;br /&gt;
|-&lt;br /&gt;
| TGGrid &lt;br /&gt;
| 11 &lt;br /&gt;
| 9 &lt;br /&gt;
| 13&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/digsynth.com|World of the Free]] &lt;br /&gt;
| 0 &lt;br /&gt;
| 0 &lt;br /&gt;
| 0&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Other OpenSim-based Environments ==&lt;br /&gt;
&lt;br /&gt;
[[Grid List/Heritage Key|Heritage Key]] - OpenSim-based original 3D environment.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Office Hour ==&lt;br /&gt;
&lt;br /&gt;
Each week on Tuesday, OSGrid hosts an official Office Hour where the OpenSimulator developers meet and discuss the weeks software development activities. This is a good place to get to know what is going on with OpenSimulator.&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;5&amp;quot; cellspacing=&amp;quot;0&amp;quot; align=&amp;quot;center&amp;quot;&lt;br /&gt;
!Grid&lt;br /&gt;
!Region&lt;br /&gt;
!Time&lt;br /&gt;
|-&lt;br /&gt;
|OSGrid&lt;br /&gt;
|Wright Plaza&lt;br /&gt;
|Tuesday 11:00AM Pacific Time (USA)&lt;br /&gt;
|-&lt;br /&gt;
|EU-Grid&lt;br /&gt;
|EU-Grid Central Hub&lt;br /&gt;
|Sat 15:00 to 19:00 MET&lt;br /&gt;
|-&lt;br /&gt;
|AUGrid / Asia Pacific Office Hours&lt;br /&gt;
|Norgan Plaza&lt;br /&gt;
|Friday's 11am2pm AEST (GMT/UTC + 10)&lt;br /&gt;
|-&lt;br /&gt;
|Cyberlandia Grid Italiana&lt;br /&gt;
|Cyberlandia, Central Hub&lt;br /&gt;
|Mercoledi and Venerdi&amp;lt;br /&amp;gt;22:00 to 23:00 (GMT/UTC + 1)&lt;br /&gt;
|-&lt;br /&gt;
|WorldSim Terra&lt;br /&gt;
|Lusitania Center&lt;br /&gt;
|Saturdays 19:00 to 20:00 (GMT/UTC)&lt;br /&gt;
|-&lt;br /&gt;
|Avatar Hangout - Residents&lt;br /&gt;
|Meeting Hall in Avatar Hangout region&lt;br /&gt;
|Sundays 1pm to 3pm (InGame Time)&lt;br /&gt;
|-&lt;br /&gt;
|Avatar Hangout - Estate Owners&lt;br /&gt;
|via Estate Owners group in Skype&lt;br /&gt;
|Saturday 2pm to 4pm (InGame Time)&lt;br /&gt;
|-&lt;br /&gt;
|LISAT&lt;br /&gt;
|&amp;amp;nbsp;&lt;br /&gt;
|Saturday midnight &amp;quot;UTC&amp;quot;&amp;lt;br /&amp;gt;Wednesday 1400(2pm)UTC&amp;lt;br /&amp;gt;&amp;quot;Universal.Time.Coordinated&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|[http://virtyou.com/ virtyou MainGrid]&lt;br /&gt;
|Waterland01 &lt;br /&gt;
|Tuesday 11:00 - 12:00 [http://en.wikipedia.org/wiki/Central_European_Time CET] (UTC+1),&amp;lt;br /&amp;gt;Thursday 20:00 - 21:00 [http://en.wikipedia.org/wiki/Central_European_Time CET] (UTC+1)&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.logicamp.com/ logicamp MainGrid]&lt;br /&gt;
|Logicamp&lt;br /&gt;
|Friday 11:00 - 12:00 GMT+1&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.opensimulator-club.de/ Open Neuland / OpenSimulator-Club]&lt;br /&gt;
|Neuland &lt;br /&gt;
|Tuesday 19:30 - 21:00 [http://en.wikipedia.org/wiki/Central_European_Time CET] (UTC+1)&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.griditaliaservice.com// GridItalia Metaverso Italiano]&lt;br /&gt;
|GridItalia Orientation&lt;br /&gt;
|Dal Lunedi' al Venerdi' 22:00 to 00:00 (GMT/UTC + 1)&lt;br /&gt;
|-&lt;br /&gt;
|[http://virtualhighway.us Virtual Highway]&lt;br /&gt;
|Monthly Resident Meeting&lt;br /&gt;
|First Sunday of the Month 1PM PSD&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.lfgrid.com Littlefield Grid]&lt;br /&gt;
|Monthly Grid Status Meeting - Smithville Region - lfgrid.com:8002:smithville&lt;br /&gt;
|First Friday of the Month 1:30PM PSD&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.hypergrid.org Metropolis Metaversum]&lt;br /&gt;
|Weekly &amp;quot;Stammtisch&amp;quot; Meeting on Region *CenterWorld*&lt;br /&gt;
|Every Wednesday 21:00 - 22:00 &amp;lt;br&amp;gt;(GMT/UTC + 1)&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Grid Test Hours ==&lt;br /&gt;
&lt;br /&gt;
Several grids provide valuable testing information for the project, each run a special 'test' hour to test capabilities of the platform. These are run at the same time every week. It may also be a good chance to meet people who can answer questions you may have.&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;5&amp;quot; cellspacing=&amp;quot;0&amp;quot; align=&amp;quot;center&amp;quot;&lt;br /&gt;
!Grid&lt;br /&gt;
!Region&lt;br /&gt;
!Time&lt;br /&gt;
|-&lt;br /&gt;
|Apex Grid&lt;br /&gt;
|Spaceport 2&lt;br /&gt;
|Sat 1800 UTC&lt;br /&gt;
|-&lt;br /&gt;
|FrancoGrid&lt;br /&gt;
|Orion&lt;br /&gt;
|Everydays 2100GMT+1&lt;br /&gt;
|-&lt;br /&gt;
|New World Grid&lt;br /&gt;
|Welcome&lt;br /&gt;
|Every Tuesday at 2030 UTC&lt;br /&gt;
|-&lt;br /&gt;
|AUGrid&lt;br /&gt;
|Norgan Plaza&lt;br /&gt;
|Generally Tuesdays 11am~1pm and/or 2~5pm AEST (GMT/UTC+10)&amp;lt;br /&amp;gt;[http://augrid.org/forum/index.php?topic=9.0]&lt;br /&gt;
|-&lt;br /&gt;
|WorldSim Terra&lt;br /&gt;
|Lusitania Center&lt;br /&gt;
|Generally Sundays 19:00 to 22.00(GMT/UTC)&amp;lt;br /&amp;gt;[http://www.worldsimterra.com/index.php?option=com_agora&amp;amp;task=viewtopic&amp;amp;id=223 Next Test Hours]&lt;br /&gt;
|-&lt;br /&gt;
|VirtualFrance&lt;br /&gt;
|versailles &lt;br /&gt;
|Generally Mondays and Thursdays 2100GMT+1&amp;lt;br /&amp;gt;[http://www.virtualfrance.0rg.fr]&lt;br /&gt;
|-&lt;br /&gt;
|Logicamp&lt;br /&gt;
|Logicamp &lt;br /&gt;
|Generally Mondays 0900 GMT+1&amp;lt;br /&amp;gt;[http://www.logicamp.com]&lt;br /&gt;
|-&lt;br /&gt;
|AstralGrid&lt;br /&gt;
|AstralGrid&lt;br /&gt;
|Generally Mondays 21:00 GMT+1&amp;lt;br /&amp;gt;[http://www.virtual.world.ch.vu]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Standalone sims ==&lt;br /&gt;
&lt;br /&gt;
Standalone sims have &amp;quot;generic&amp;quot; logins being from &amp;quot;Test User&amp;quot; .. &amp;quot;Testz User&amp;quot;, with password &amp;quot;test&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
{| cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;5&amp;quot; border=&amp;quot;1&amp;quot; align=&amp;quot;center&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Name &lt;br /&gt;
! Login URI &lt;br /&gt;
! Maintainer/Site&lt;br /&gt;
|-&lt;br /&gt;
| ART &lt;br /&gt;
| opensim://art.no-ip.org:9000/ &lt;br /&gt;
|   Meeting Point for CyberArtists &amp;amp; More (mailto:hotelattraction@hotmail.com)&lt;br /&gt;
|-&lt;br /&gt;
| Ruth (Zion) &lt;br /&gt;
| opensim://ruth.petitbe.be:9000/ &lt;br /&gt;
| Dalien Talbot (dalien on IRC, or via blog - http://daltonic.blogspot.com/)&lt;br /&gt;
|-&lt;br /&gt;
| CyberSpacia &lt;br /&gt;
| opensim://cyberspacia.net:9000/ &lt;br /&gt;
| Spun Pty Ltd (mailto:the.grid@cyberspacia.net)&lt;br /&gt;
|-&lt;br /&gt;
| janoz &lt;br /&gt;
| opensim://77.250.27.219:9000/ &lt;br /&gt;
| (mailto:info@janoz.nl)&lt;br /&gt;
|-&lt;br /&gt;
| Opengrid &lt;br /&gt;
| opensim://opengrid.fr:9000/ &lt;br /&gt;
| Test grid for http://www.opensimulator.fr - 24/7 available&lt;br /&gt;
|-&lt;br /&gt;
| Phrearch &lt;br /&gt;
| opensim://os-networks.net:9000/ &lt;br /&gt;
| Phrearch: http://os-networks.net&lt;br /&gt;
|-&lt;br /&gt;
| Timecatcher Haven Lands( Not online 24/7) &lt;br /&gt;
| opensim://timecatcher.ath.cx:9000/ &lt;br /&gt;
| Timecatcher: (mailto:anon26841397@hotmail.co.uk)&lt;br /&gt;
|-&lt;br /&gt;
| Europeansim (NOW 24/7 ish:-) &lt;br /&gt;
| opensim://82.30.71.119:8002/ &lt;br /&gt;
| Edenrealm Sim(mailto:zoon@edenrealm.co.uk) BritGrid OpenSimulator 0.6.9 (Dev) - 26 regions - Hypergrid? - Avatar creation at: http://www.europeansim.thruhere.net Blog http://www.edenrealm.co.uk/&lt;br /&gt;
|-&lt;br /&gt;
| OpenSIM.de (24/7) &lt;br /&gt;
| opensim://opensim.m34.mx-host.de:9090 &lt;br /&gt;
| German Standalone-Sim with german (deutsch) speaking Live-Support and OpenSIM-Wiki at http://www.opensim.de&lt;br /&gt;
|-&lt;br /&gt;
| Viradu Science Fiction World&lt;br /&gt;
| opensim://viradu.com:9000&lt;br /&gt;
| [[Image:Vban.jpg|180px|thumb|left|Viradu.com Science Fiction Virtual World]]A Science Fiction Themed Virtual World since 1/7/2009, by Michael Blade, Sci-fi Blogger - 12 regions NOTE: Please read Blog for connect instructions ---&amp;amp;gt; http://viradu.com for more info. This world is now open for settlement to those who enjoy science fiction, rules apply.  Also see hypergrid 1.5 list. Test User test&lt;br /&gt;
|-&lt;br /&gt;
| Lokir &lt;br /&gt;
| opensim://lokir.org:9000 &lt;br /&gt;
| A multicultural, multilanguage Bristol based art space and sandbox in the UK. Experimental servers testing new versions towards having hypergrid and megaregion functionality, but stable sim server version is currently 5.4, so quite old. See http://lokir.org/opensim for more info, or use the name and password &amp;quot;Test User test&amp;quot; to log in as a guest.&lt;br /&gt;
|-&lt;br /&gt;
| SPARTA! (open 24/7) &lt;br /&gt;
| opensim://204.12.98.91:9000 &lt;br /&gt;
| New (as of 2/20/2010) U.S. based sim. Right now this is more for my amusement than anything. Looking for testers or just bored people who have extra time on their hands. Should it become popular I'll consider expanding services. No registration required. Use any name you like. Questions? mailto:davidakaplan@gmail.com. THIS... IS... SPARTA!!!&lt;br /&gt;
|-&lt;br /&gt;
| [http://www.yoursimspot.com YourSimSpot.Com]&amp;lt;br /&amp;gt;&lt;br /&gt;
| YourSimSpot.com:9000&lt;br /&gt;
| YourSimSpot is a hosting solution for 3D virtual worlds for business, education, collaboration, and individuals based on the OpenSimulator platform. We specialize in providing the technology needed for these environments. &lt;br /&gt;
|-&lt;br /&gt;
| Desert of Artlioch&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp; &lt;br /&gt;
| [http://universi.servegame.org:9000 http://universi.servegame.org:9000]&amp;amp;nbsp; &lt;br /&gt;
| A Science Fiction Desert world with hypergrid.&amp;amp;nbsp;Currently has no currency and only 2 regions.&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&lt;br /&gt;
|-&lt;br /&gt;
|Realms of Discordia&lt;br /&gt;
| [http://www.griffonsnest.com:9000 http://www.griffonsnest.com:9000]&amp;amp;nbsp;&lt;br /&gt;
|My small testing sim, open 24 hours, feel free to come by, visit, build, whatever. 9 Regions with 3 current residents. &lt;br /&gt;
|-&lt;br /&gt;
| [http://eucomvc.dlinkddns.com:9000/wifi IMAGENHARIAEAD]&amp;lt;br /&amp;gt;&lt;br /&gt;
| [http://eucomvc.dlinkddns.com:9000 http://eucomvc.dlinkddns.com:9000]&amp;amp;nbsp;&lt;br /&gt;
|My Test grid, open sometime in the day, feel free to come by, visit, build, whatever. 4 Regions. 1 Sandbox IMAGENHARIAEAD 3 - The Internet as a tool of education. Learning is action. Otherwise it is just information. Moodel/Sloodle/Pivote - 24h Online – http://bitly.com/imagenharia - http://vendasmais.com/moodle&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
= See Also =&lt;br /&gt;
&lt;br /&gt;
* [[Grid Associations]]&lt;br /&gt;
* [[Public Hypergrid Nodes|HyperGrid Nodes]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Grids]]&lt;/div&gt;</summary>
		<author><name>FoTo50</name></author>	</entry>

	<entry>
		<id>http://opensimulator.org/wiki/Grid_List</id>
		<title>Grid List</title>
		<link rel="alternate" type="text/html" href="http://opensimulator.org/wiki/Grid_List"/>
				<updated>2013-01-02T18:06:41Z</updated>
		
		<summary type="html">&lt;p&gt;FoTo50: added grid jOpenSimWorld&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
{{Quicklinks}}&lt;br /&gt;
&lt;br /&gt;
== What is the Grid List? ==&lt;br /&gt;
&lt;br /&gt;
There are hundreds (thousands?) of OpenSimulator-based virtual worlds out there. Many of them are free to use and welcome new users. This grid list is a community-generated list of such worlds. If you would like to experience an OpenSimulator-based virtual world before installing your own, try one of these. &lt;br /&gt;
&lt;br /&gt;
'''IMPORTANT NOTE:''' The OpenSimulator project is not responsible for, nor in any way associated with, any grid listed on this page, nor for any grid's content or activities. Visit at your own risk. Also, there are no guarantees that these worlds are up and running.&lt;br /&gt;
&lt;br /&gt;
== Public grids  ==&lt;br /&gt;
&lt;br /&gt;
'''Grid List Policy:''' Please list your grid only if uses OpenSimulator as a component. Do not include advertising language. The entries in the main list should just contain the grid name and the plain numbers as defined by the column headers. '''Please use [[Grid List/Template|this template]] for the subpages to keep the information in a comparable manner.''' Grids are listed in the order of appearance, so please add your entry to the bottom of the list. Anyone found inserting a grid up higher in the list will have their entry moved or removed. &lt;br /&gt;
&lt;br /&gt;
You may want provide a link on your world's website back to the project by using the [[OpenSim Graphics|Powered by OpenSimulator logo]]. Credit is appreciated but not required. &lt;br /&gt;
&lt;br /&gt;
If you own a grid and are interested in joining a grid association see this page: [[Grid Associations]] &lt;br /&gt;
&lt;br /&gt;
Hypergrid Business maintains a list of active grids, updated monthly: [http://www.hypergridbusiness.com/statistics/active-grids/ Active OpenSim grids]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
{| cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;5&amp;quot; border=&amp;quot;1&amp;quot; align=&amp;quot;center&amp;quot; style=&amp;quot;width: 724px; height: 2270px;&amp;quot; class=&amp;quot;sortable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Grid Name &lt;br /&gt;
! # Regions &lt;br /&gt;
! Approx # Users &lt;br /&gt;
! Unique last 30days&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/OSGrid|OSGrid]] &lt;br /&gt;
| 7178 &lt;br /&gt;
| 64,296 &lt;br /&gt;
| 3280&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/Francogrid|Francogrid]] &lt;br /&gt;
| 610&lt;br /&gt;
| 4531&lt;br /&gt;
| 967&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/The New World Grid|The New World Grid]] &lt;br /&gt;
| 330 &lt;br /&gt;
| 5200 &lt;br /&gt;
| 590&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/3rd Rock Grid|3rd Rock Grid (Geode Currency)]] &lt;br /&gt;
| 231 &lt;br /&gt;
| 7781 &lt;br /&gt;
| 596&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/Metropolis|Metropolis Metaversum (NO Money, never!)]] &lt;br /&gt;
| 730&lt;br /&gt;
| 1980&lt;br /&gt;
| 239&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/German Grid|German Grid(with OM¢)]] &lt;br /&gt;
| 107 &lt;br /&gt;
| 2353 &lt;br /&gt;
| 385&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/Open-Neuland|OpenSimulator-Club Open Neuland (with OM¢)]] &lt;br /&gt;
| 216 &lt;br /&gt;
| 384 &lt;br /&gt;
| 60&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/Wilder-Westen|OpenSimulator-Club Wilder Westen (with OM¢)]] &lt;br /&gt;
| 41 &lt;br /&gt;
| 122 &lt;br /&gt;
| 36&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/Myopengrid.com|Myopengrid (with M$ dollars)]] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp;&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/Your Alternative Life|Your Alternative Life (with OM¢)]] &lt;br /&gt;
| 47 &lt;br /&gt;
| 2089 &lt;br /&gt;
| 1458&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/Openvue|Openvue (on Virtual AIAI Grid)]] &lt;br /&gt;
| 12 &lt;br /&gt;
| 20 &lt;br /&gt;
| 10&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/ScienceSim|ScienceSim]] &lt;br /&gt;
| 25 &lt;br /&gt;
| 30 &lt;br /&gt;
| 15&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/Unica|unica]] &lt;br /&gt;
| 16 &lt;br /&gt;
| 60 &lt;br /&gt;
| 10&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/LISAT|Lost-In-Space-And-Time( Free, H.G. 7.2 and wifi login)]] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp;&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/Avination|Avination (w/economy and combat system]] &lt;br /&gt;
| 1138 &lt;br /&gt;
| 25860 &lt;br /&gt;
| 8727&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/SimValley NL|SimValley NL]] &lt;br /&gt;
| 79 &lt;br /&gt;
| 146 &lt;br /&gt;
| 23&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/OPENSIM NL|OPENSIM NL]] &lt;br /&gt;
| 9 &lt;br /&gt;
| 426 &lt;br /&gt;
| 34&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/RPGRID NL|RPGRID NL]] &lt;br /&gt;
| 30 &lt;br /&gt;
| 141 &lt;br /&gt;
| 16&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/Night4 Life|Night4 Life With T$ and Economy]] &lt;br /&gt;
| 52&lt;br /&gt;
| 1175 &lt;br /&gt;
| 29&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/VirtualFrance3D|VirtualFrance3D =&amp;amp;gt;WEB: http://virtualfrance3d.fr]] &lt;br /&gt;
| 16 &lt;br /&gt;
| 143 &lt;br /&gt;
| 31&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/Twisted Sky|Twisted Sky (with OM¢)]] &lt;br /&gt;
| 60 &lt;br /&gt;
| 290 &lt;br /&gt;
| 68&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/TertiaryGrid|Tertiary grid]] &lt;br /&gt;
| 42 &lt;br /&gt;
| 254&lt;br /&gt;
| 34&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/Logicamp|Logicamp® - The Outdoor Metaverse (with OM¢)]] &lt;br /&gt;
| 139 &lt;br /&gt;
| 1019 &lt;br /&gt;
| 202&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/virtyou|virtyou]] &lt;br /&gt;
| 110 &lt;br /&gt;
| 1676 &lt;br /&gt;
| 70&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/Jamland|Jamland]] &lt;br /&gt;
| 10 &lt;br /&gt;
| 31 &lt;br /&gt;
| 14&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/Tlön|Tlön]] &lt;br /&gt;
| 11 &lt;br /&gt;
| 65 &lt;br /&gt;
| 10&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/PMGrid|PMGrid]] &lt;br /&gt;
| 80 &lt;br /&gt;
| 100 &lt;br /&gt;
| 10&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/Cybergrid|Cybergrid]] &lt;br /&gt;
| 1 &lt;br /&gt;
| 44 &lt;br /&gt;
| &amp;amp;nbsp;&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/jokaydiagrid|jokaydiaGRID]] &lt;br /&gt;
| 20 &lt;br /&gt;
| 253 &lt;br /&gt;
| 75&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/Rezzable Visions|Rezzable Visions]] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp;&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/Craft|Craft]] &lt;br /&gt;
| 180 &lt;br /&gt;
| 900 &lt;br /&gt;
| 290&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/Virtual RP|Virtual RP - Roleplay - VRP Combat Meter - Free World]] &lt;br /&gt;
| 17 &lt;br /&gt;
| 714 &lt;br /&gt;
| 55&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/GerGrid|GerGrid (with OS$)]] &lt;br /&gt;
| 50 &lt;br /&gt;
| 84 &lt;br /&gt;
| 15&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/AlphaTowne|Alpha Towne w/G$ Hypergrid 1.5]] &lt;br /&gt;
| 308 &lt;br /&gt;
| 1172 &lt;br /&gt;
| 909&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/Annuna Grid|Annuna Grid]] &lt;br /&gt;
| 60 &lt;br /&gt;
| 60 &lt;br /&gt;
| &amp;amp;nbsp;&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/VeeSome|VeeSome]] &lt;br /&gt;
| 48 &lt;br /&gt;
| 106 &lt;br /&gt;
| 53&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/VirtuaLife|Virtualife with RP and economy inworld]] &lt;br /&gt;
| 132 &lt;br /&gt;
| 1000 &lt;br /&gt;
| 500&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/REDISIS|Redisis share knowledge]] &lt;br /&gt;
| 130 &lt;br /&gt;
| 60 &lt;br /&gt;
| 20&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/PearGrid|PearGrid]] &lt;br /&gt;
| 18 &lt;br /&gt;
| 34 &lt;br /&gt;
| 8&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/Island Oasis|Island Oasis P$, RP, Vehicles]] &lt;br /&gt;
| 147&lt;br /&gt;
| 2901&lt;br /&gt;
| 1209&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/HAVEN: Your World|HAVEN: Your World]] &lt;br /&gt;
| 13 &lt;br /&gt;
| 11 &lt;br /&gt;
| 7&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/Flatlandia.cc|Flatlandia.cc]] &lt;br /&gt;
| 33 &lt;br /&gt;
| 177 &lt;br /&gt;
| 110&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/AnSky|AnSky]] &lt;br /&gt;
| 11 &lt;br /&gt;
| 39 &lt;br /&gt;
| &amp;amp;nbsp;&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/Lisat|ArtGridOnLine]] &lt;br /&gt;
| 12 &lt;br /&gt;
| 48 &lt;br /&gt;
| 15&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/EU-Grid|EU-Grid]] &lt;br /&gt;
| 10 &lt;br /&gt;
| 350 &lt;br /&gt;
| &amp;amp;nbsp;&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/GiantGrid|GiantGrid]] &lt;br /&gt;
| 169 &lt;br /&gt;
| 261 &lt;br /&gt;
| 157&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/pseudospace|pseudospace]] &lt;br /&gt;
| 12 &lt;br /&gt;
| 46 &lt;br /&gt;
| &amp;amp;nbsp;&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/Metapocalypse|Metapocalypse Grid]] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp;&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/UFSGrid|UFSGrid]] &lt;br /&gt;
| 36 &lt;br /&gt;
| 897 &lt;br /&gt;
| +/-50&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/Virtual Worlds Grid|Virtual Worlds Grid]] &lt;br /&gt;
| 527 &lt;br /&gt;
| 30 &lt;br /&gt;
| 4&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/3DGrid World|3DGrid World - formaly &amp;quot;The SecondLearning Grid&amp;quot;]] &lt;br /&gt;
| 4 &lt;br /&gt;
| 55 &lt;br /&gt;
| 46&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/slitalia|slitalia]] &lt;br /&gt;
| 8 &lt;br /&gt;
| 36 &lt;br /&gt;
| 46&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/Sofitek|Sofitek]] &lt;br /&gt;
| 6 &lt;br /&gt;
| 10 &lt;br /&gt;
| 10&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/AstralGrid|AstralGrid]] &lt;br /&gt;
| 70 &lt;br /&gt;
| 40 &lt;br /&gt;
| 30&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/MOSES|MOSES : Military Open Simulator Enterprise Strategy]] &lt;br /&gt;
| 117 &lt;br /&gt;
| 227 &lt;br /&gt;
| 102&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/Dorenas World|Dorenas World]] &lt;br /&gt;
| 102 &lt;br /&gt;
| 182 &lt;br /&gt;
| 34&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/Enakai|Enakai]] &lt;br /&gt;
| 16 &lt;br /&gt;
| 14 &lt;br /&gt;
| 34&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/Speculoos|Speculoos.net: belgian cookie flavored grid]] &lt;br /&gt;
| 44 &lt;br /&gt;
| 14 &lt;br /&gt;
| 30&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/EverWorlds.com|EverWorlds: Bringing People Together (Old name: Destiny Zero)]] &lt;br /&gt;
| 17 &lt;br /&gt;
| 2 &lt;br /&gt;
| 3&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/IcaruSRealmS|=IcaruS= RealmS]] &lt;br /&gt;
| 26 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| 14&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/ccdbbs.com|Lost Paradise (Currency OM¢ / LP$)]] &lt;br /&gt;
| 286&lt;br /&gt;
| 247&lt;br /&gt;
| 165&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/Valhalla Virtual|Valhalla Virtual]] &lt;br /&gt;
| 9 &lt;br /&gt;
| 25 &lt;br /&gt;
| 4&lt;br /&gt;
|-&lt;br /&gt;
| [http://SkyLineGrid.com SkyLine Grid] &amp;amp;#124; Currency enabled - Mesh enabled &lt;br /&gt;
| 25 &lt;br /&gt;
| 6 &lt;br /&gt;
| 6&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/Cyber Wrld|Cyber Wrld]] &lt;br /&gt;
| 5 &lt;br /&gt;
| 8 &lt;br /&gt;
| 8&lt;br /&gt;
|-&lt;br /&gt;
| [[FleepGrid]] &lt;br /&gt;
| 11 &lt;br /&gt;
| 150 &lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/My3dLife|My3dLife]] &lt;br /&gt;
| 10 &lt;br /&gt;
| 20 &lt;br /&gt;
| 3&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/www.daseinworld.com|DaseinWorld]] &lt;br /&gt;
| 16 &lt;br /&gt;
| 3 &lt;br /&gt;
| 3&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/You3D|You3D]] &lt;br /&gt;
| 11 &lt;br /&gt;
| 6 &lt;br /&gt;
| 6&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/Virtual Realms Grid|Virtual Realms Grid]] &lt;br /&gt;
| 8 &lt;br /&gt;
| 10 &lt;br /&gt;
| 3&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/Gor Grid|Gor grid]] &lt;br /&gt;
| 8 &lt;br /&gt;
| 10 &lt;br /&gt;
| 10&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/Pathlandia|Pathlandia]] &lt;br /&gt;
| 4 &lt;br /&gt;
| 1 &lt;br /&gt;
| 30&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/Austria|Austria]] &lt;br /&gt;
| 9 &lt;br /&gt;
| 6 &lt;br /&gt;
| 9&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/Psychedelia|Psychedelia]] &lt;br /&gt;
| 5 &lt;br /&gt;
| 7 &lt;br /&gt;
| 11&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/M001 | M001]]&lt;br /&gt;
| 36&lt;br /&gt;
| 4&lt;br /&gt;
| 4&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/OpenSim Creations Grid|OpenSim Creations Grid]] &lt;br /&gt;
| 15 &lt;br /&gt;
| 11&lt;br /&gt;
| 10&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/StarGates Matrix|StarGates Matrix]] &lt;br /&gt;
| 5 &lt;br /&gt;
| 7&lt;br /&gt;
| 3&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/Zairus Grid|Zairus Grid]] &lt;br /&gt;
| 72 &lt;br /&gt;
| 10&lt;br /&gt;
| 3&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/HyperGrid Plaza|HyperGrid Plaza]] &lt;br /&gt;
| 1&lt;br /&gt;
| 100&lt;br /&gt;
| 10&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/Ice Grid|Ice Grid]] &lt;br /&gt;
| 28 &lt;br /&gt;
| 22 &lt;br /&gt;
| 10&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/ART|ART]] &lt;br /&gt;
| 3(real) &lt;br /&gt;
| ? (real)&lt;br /&gt;
| 150(real)&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/Stone Grid|Stone Grid]] &lt;br /&gt;
| 3&lt;br /&gt;
| 4 &lt;br /&gt;
| 4&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/ItalianGrid|ItalianGrid (Economy con Mod.PayPal)]] &lt;br /&gt;
| 7&lt;br /&gt;
| 4 &lt;br /&gt;
| 2&lt;br /&gt;
|-&lt;br /&gt;
| [http://adreans-world.from-fl.com/home/ Adreans-World] &amp;amp;#124; Currency enabled&lt;br /&gt;
| 47&lt;br /&gt;
| 160 &lt;br /&gt;
| 17&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/4AllGrid|4AllGrid]] &lt;br /&gt;
| 68&lt;br /&gt;
| 6&lt;br /&gt;
| 23&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/EduGrid|EduGrid]] &lt;br /&gt;
| 15&lt;br /&gt;
| 2000&lt;br /&gt;
| 50&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.virtualhighway.us Virtual Highway] &amp;amp;#124; Inworld Currency, Mesh enabled, Combat Meter&lt;br /&gt;
| 123&lt;br /&gt;
| 780&lt;br /&gt;
| 140&lt;br /&gt;
|-&lt;br /&gt;
||[http://www.jopensim.com jOpenSimWorld]&lt;br /&gt;
| 16&lt;br /&gt;
| 237&lt;br /&gt;
| 25&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
This is a list of Grids that been inactive for a few days and or have claimed to be inactive by the owner. &amp;lt;!-- MAJ le 30/12/2011 --&amp;gt; &lt;br /&gt;
&lt;br /&gt;
{| cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;5&amp;quot; border=&amp;quot;1&amp;quot; align=&amp;quot;center&amp;quot; style=&amp;quot;width: 724px; height: 2270px;&amp;quot; class=&amp;quot;sortable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Grid Name &lt;br /&gt;
! # Regions &lt;br /&gt;
! Approx # Users &lt;br /&gt;
! Unique last 30days&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/Uvatar|Uvatar.com]] &lt;br /&gt;
| &amp;amp;nbsp;??? &lt;br /&gt;
| &amp;amp;nbsp;??? &lt;br /&gt;
| 0 &amp;lt;!-- Logins are disabled. Last update to the website was in 2012, many unfixed errors to the site. --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/Cyberlandia|Cyberlandia]] &lt;br /&gt;
| 185 &lt;br /&gt;
| 1600 &lt;br /&gt;
| 269&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/Avatar Hangout|Avatar Hangout (with OMC)]] &lt;br /&gt;
| 73 &lt;br /&gt;
| 8,626 &lt;br /&gt;
| 58&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/DGP Grid|DGP Grid]] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp;&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/tescos.org.uk|tescos.org.uk (curency ƒ)]] &lt;br /&gt;
| 30 &lt;br /&gt;
| 20 &lt;br /&gt;
| 20&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/Role Play Worlds|Role Play Worlds - Your Fantasy, your world]] &lt;br /&gt;
| 129 &lt;br /&gt;
| 2276 &lt;br /&gt;
| 298&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/Avatrian|Avatrian]] &lt;br /&gt;
| 11 &lt;br /&gt;
| 25 &lt;br /&gt;
| 150&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/OSBEST|OSBEST]] &lt;br /&gt;
| 12 &lt;br /&gt;
| 8 &lt;br /&gt;
| 8&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/MCM Realm|MCM Realm]] &lt;br /&gt;
| 22 &lt;br /&gt;
| 73 &lt;br /&gt;
| 23&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/Oasis Grid|Oasis Grid]] &lt;br /&gt;
| 89 &lt;br /&gt;
| 3068 &lt;br /&gt;
| 228&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/AtMeeting|AtMeeting Grid]] &lt;br /&gt;
| 20 &lt;br /&gt;
| 30 &lt;br /&gt;
| 25&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/OpenUtopia|OpenUtopia Grid]] &lt;br /&gt;
| 1 &lt;br /&gt;
| 3 &lt;br /&gt;
| 3&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/Virtualgames3d|Virtualgames3d]] &lt;br /&gt;
| 140 &lt;br /&gt;
| 1350 &lt;br /&gt;
| 500&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/Grid4Us|Grid4Us]] &lt;br /&gt;
| 22 &lt;br /&gt;
| 130 &lt;br /&gt;
| 50&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/K-grid|K-grid]] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp;&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/Le Monde de Darwin|Le Monde de Darwin]] &lt;br /&gt;
| 73 &lt;br /&gt;
| 83 &lt;br /&gt;
| 36&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/NeXtLife|NeXtLife Grid]] &lt;br /&gt;
| 15 &lt;br /&gt;
| 7 &lt;br /&gt;
| 7&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/Sensation Games|Sensation Games]] &lt;br /&gt;
| 1 &lt;br /&gt;
| 2 &lt;br /&gt;
| 1&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/SLI-Grid|SLI-Grid]] &lt;br /&gt;
| 5 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp;&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/DSGrid|www.dsgrid.eu]] &lt;br /&gt;
| 15 &lt;br /&gt;
| 162 &lt;br /&gt;
| 22&lt;br /&gt;
|-&lt;br /&gt;
| TGGrid &lt;br /&gt;
| 11 &lt;br /&gt;
| 9 &lt;br /&gt;
| 13&lt;br /&gt;
|-&lt;br /&gt;
| [[Grid List/digsynth.com|World of the Free]] &lt;br /&gt;
| 0 &lt;br /&gt;
| 0 &lt;br /&gt;
| 0&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Other OpenSim-based Environments ==&lt;br /&gt;
&lt;br /&gt;
[[Grid List/Heritage Key|Heritage Key]] - OpenSim-based original 3D environment.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Office Hour ==&lt;br /&gt;
&lt;br /&gt;
Each week on Tuesday, OSGrid hosts an official Office Hour where the OpenSimulator developers meet and discuss the weeks software development activities. This is a good place to get to know what is going on with OpenSimulator.&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;5&amp;quot; cellspacing=&amp;quot;0&amp;quot; align=&amp;quot;center&amp;quot;&lt;br /&gt;
!Grid&lt;br /&gt;
!Region&lt;br /&gt;
!Time&lt;br /&gt;
|-&lt;br /&gt;
|OSGrid&lt;br /&gt;
|Wright Plaza&lt;br /&gt;
|Tuesday 11:00AM Pacific Time (USA)&lt;br /&gt;
|-&lt;br /&gt;
|EU-Grid&lt;br /&gt;
|EU-Grid Central Hub&lt;br /&gt;
|Sat 15:00 to 19:00 MET&lt;br /&gt;
|-&lt;br /&gt;
|AUGrid / Asia Pacific Office Hours&lt;br /&gt;
|Norgan Plaza&lt;br /&gt;
|Friday's 11am2pm AEST (GMT/UTC + 10)&lt;br /&gt;
|-&lt;br /&gt;
|Cyberlandia Grid Italiana&lt;br /&gt;
|Cyberlandia, Central Hub&lt;br /&gt;
|Mercoledi and Venerdi&amp;lt;br /&amp;gt;22:00 to 23:00 (GMT/UTC + 1)&lt;br /&gt;
|-&lt;br /&gt;
|WorldSim Terra&lt;br /&gt;
|Lusitania Center&lt;br /&gt;
|Saturdays 19:00 to 20:00 (GMT/UTC)&lt;br /&gt;
|-&lt;br /&gt;
|Avatar Hangout - Residents&lt;br /&gt;
|Meeting Hall in Avatar Hangout region&lt;br /&gt;
|Sundays 1pm to 3pm (InGame Time)&lt;br /&gt;
|-&lt;br /&gt;
|Avatar Hangout - Estate Owners&lt;br /&gt;
|via Estate Owners group in Skype&lt;br /&gt;
|Saturday 2pm to 4pm (InGame Time)&lt;br /&gt;
|-&lt;br /&gt;
|LISAT&lt;br /&gt;
|&amp;amp;nbsp;&lt;br /&gt;
|Saturday midnight &amp;quot;UTC&amp;quot;&amp;lt;br /&amp;gt;Wednesday 1400(2pm)UTC&amp;lt;br /&amp;gt;&amp;quot;Universal.Time.Coordinated&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|[http://virtyou.com/ virtyou MainGrid]&lt;br /&gt;
|Waterland01 &lt;br /&gt;
|Tuesday 11:00 - 12:00 [http://en.wikipedia.org/wiki/Central_European_Time CET] (UTC+1),&amp;lt;br /&amp;gt;Thursday 20:00 - 21:00 [http://en.wikipedia.org/wiki/Central_European_Time CET] (UTC+1)&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.logicamp.com/ logicamp MainGrid]&lt;br /&gt;
|Logicamp&lt;br /&gt;
|Friday 11:00 - 12:00 GMT+1&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.opensimulator-club.de/ Open Neuland / OpenSimulator-Club]&lt;br /&gt;
|Neuland &lt;br /&gt;
|Tuesday 19:30 - 21:00 [http://en.wikipedia.org/wiki/Central_European_Time CET] (UTC+1)&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.griditaliaservice.com// GridItalia Metaverso Italiano]&lt;br /&gt;
|GridItalia Orientation&lt;br /&gt;
|Dal Lunedi' al Venerdi' 22:00 to 00:00 (GMT/UTC + 1)&lt;br /&gt;
|-&lt;br /&gt;
|[http://virtualhighway.us Virtual Highway]&lt;br /&gt;
|Monthly Resident Meeting&lt;br /&gt;
|First Sunday of the Month 1PM PSD&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Grid Test Hours ==&lt;br /&gt;
&lt;br /&gt;
Several grids provide valuable testing information for the project, each run a special 'test' hour to test capabilities of the platform. These are run at the same time every week. It may also be a good chance to meet people who can answer questions you may have.&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;5&amp;quot; cellspacing=&amp;quot;0&amp;quot; align=&amp;quot;center&amp;quot;&lt;br /&gt;
!Grid&lt;br /&gt;
!Region&lt;br /&gt;
!Time&lt;br /&gt;
|-&lt;br /&gt;
|Apex Grid&lt;br /&gt;
|Spaceport 2&lt;br /&gt;
|Sat 1800 UTC&lt;br /&gt;
|-&lt;br /&gt;
|FrancoGrid&lt;br /&gt;
|Orion&lt;br /&gt;
|Everydays 2100GMT+1&lt;br /&gt;
|-&lt;br /&gt;
|New World Grid&lt;br /&gt;
|Welcome&lt;br /&gt;
|Every Tuesday at 2030 UTC&lt;br /&gt;
|-&lt;br /&gt;
|AUGrid&lt;br /&gt;
|Norgan Plaza&lt;br /&gt;
|Generally Tuesdays 11am~1pm and/or 2~5pm AEST (GMT/UTC+10)&amp;lt;br /&amp;gt;[http://augrid.org/forum/index.php?topic=9.0]&lt;br /&gt;
|-&lt;br /&gt;
|WorldSim Terra&lt;br /&gt;
|Lusitania Center&lt;br /&gt;
|Generally Sundays 19:00 to 22.00(GMT/UTC)&amp;lt;br /&amp;gt;[http://www.worldsimterra.com/index.php?option=com_agora&amp;amp;task=viewtopic&amp;amp;id=223 Next Test Hours]&lt;br /&gt;
|-&lt;br /&gt;
|VirtualFrance&lt;br /&gt;
|versailles &lt;br /&gt;
|Generally Mondays and Thursdays 2100GMT+1&amp;lt;br /&amp;gt;[http://www.virtualfrance.0rg.fr]&lt;br /&gt;
|-&lt;br /&gt;
|Logicamp&lt;br /&gt;
|Logicamp &lt;br /&gt;
|Generally Mondays 0900 GMT+1&amp;lt;br /&amp;gt;[http://www.logicamp.com]&lt;br /&gt;
|-&lt;br /&gt;
|AstralGrid&lt;br /&gt;
|AstralGrid&lt;br /&gt;
|Generally Mondays 21:00 GMT+1&amp;lt;br /&amp;gt;[http://www.virtual.world.ch.vu]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Standalone sims ==&lt;br /&gt;
&lt;br /&gt;
Standalone sims have &amp;quot;generic&amp;quot; logins being from &amp;quot;Test User&amp;quot; .. &amp;quot;Testz User&amp;quot;, with password &amp;quot;test&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
{| cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;5&amp;quot; border=&amp;quot;1&amp;quot; align=&amp;quot;center&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Name &lt;br /&gt;
! Login URI &lt;br /&gt;
! Maintainer/Site&lt;br /&gt;
|-&lt;br /&gt;
| ART &lt;br /&gt;
| opensim://art.no-ip.org:9000/ &lt;br /&gt;
|   Meeting Point for CyberArtists &amp;amp; More (mailto:hotelattraction@hotmail.com)&lt;br /&gt;
|-&lt;br /&gt;
| Ruth (Zion) &lt;br /&gt;
| opensim://ruth.petitbe.be:9000/ &lt;br /&gt;
| Dalien Talbot (dalien on IRC, or via blog - http://daltonic.blogspot.com/)&lt;br /&gt;
|-&lt;br /&gt;
| CyberSpacia &lt;br /&gt;
| opensim://cyberspacia.net:9000/ &lt;br /&gt;
| Spun Pty Ltd (mailto:the.grid@cyberspacia.net)&lt;br /&gt;
|-&lt;br /&gt;
| janoz &lt;br /&gt;
| opensim://77.250.27.219:9000/ &lt;br /&gt;
| (mailto:info@janoz.nl)&lt;br /&gt;
|-&lt;br /&gt;
| Opengrid &lt;br /&gt;
| opensim://opengrid.fr:9000/ &lt;br /&gt;
| Test grid for http://www.opensimulator.fr - 24/7 available&lt;br /&gt;
|-&lt;br /&gt;
| Phrearch &lt;br /&gt;
| opensim://os-networks.net:9000/ &lt;br /&gt;
| Phrearch: http://os-networks.net&lt;br /&gt;
|-&lt;br /&gt;
| Timecatcher Haven Lands( Not online 24/7) &lt;br /&gt;
| opensim://timecatcher.ath.cx:9000/ &lt;br /&gt;
| Timecatcher: (mailto:anon26841397@hotmail.co.uk)&lt;br /&gt;
|-&lt;br /&gt;
| Europeansim (NOW 24/7 ish:-) &lt;br /&gt;
| opensim://82.30.71.119:8002/ &lt;br /&gt;
| Edenrealm Sim(mailto:zoon@edenrealm.co.uk) BritGrid OpenSimulator 0.6.9 (Dev) - 26 regions - Hypergrid? - Avatar creation at: http://www.europeansim.thruhere.net Blog http://www.edenrealm.co.uk/&lt;br /&gt;
|-&lt;br /&gt;
| OpenSIM.de (24/7) &lt;br /&gt;
| opensim://opensim.m34.mx-host.de:9090 &lt;br /&gt;
| German Standalone-Sim with german (deutsch) speaking Live-Support and OpenSIM-Wiki at http://www.opensim.de&lt;br /&gt;
|-&lt;br /&gt;
| Viradu Science Fiction World&lt;br /&gt;
| opensim://viradu.com:9000&lt;br /&gt;
| [[Image:Vban.jpg|180px|thumb|left|Viradu.com Science Fiction Virtual World]]A Science Fiction Themed Virtual World since 1/7/2009, by Michael Blade, Sci-fi Blogger - 12 regions NOTE: Please read Blog for connect instructions ---&amp;amp;gt; http://viradu.com for more info. This world is now open for settlement to those who enjoy science fiction, rules apply.  Also see hypergrid 1.5 list. Test User test&lt;br /&gt;
|-&lt;br /&gt;
| Lokir &lt;br /&gt;
| opensim://lokir.org:9000 &lt;br /&gt;
| A multicultural, multilanguage Bristol based art space and sandbox in the UK. Experimental servers testing new versions towards having hypergrid and megaregion functionality, but stable sim server version is currently 5.4, so quite old. See http://lokir.org/opensim for more info, or use the name and password &amp;quot;Test User test&amp;quot; to log in as a guest.&lt;br /&gt;
|-&lt;br /&gt;
| SPARTA! (open 24/7) &lt;br /&gt;
| opensim://204.12.98.91:9000 &lt;br /&gt;
| New (as of 2/20/2010) U.S. based sim. Right now this is more for my amusement than anything. Looking for testers or just bored people who have extra time on their hands. Should it become popular I'll consider expanding services. No registration required. Use any name you like. Questions? mailto:davidakaplan@gmail.com. THIS... IS... SPARTA!!!&lt;br /&gt;
|-&lt;br /&gt;
| [http://www.yoursimspot.com YourSimSpot.Com]&amp;lt;br /&amp;gt;&lt;br /&gt;
| YourSimSpot.com:9000&lt;br /&gt;
| YourSimSpot is a hosting solution for 3D virtual worlds for business, education, collaboration, and individuals based on the OpenSimulator platform. We specialize in providing the technology needed for these environments. &lt;br /&gt;
|-&lt;br /&gt;
| Desert of Artlioch&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp; &lt;br /&gt;
| [http://universi.servegame.org:9000 http://universi.servegame.org:9000]&amp;amp;nbsp; &lt;br /&gt;
| A Science Fiction Desert world with hypergrid.&amp;amp;nbsp;Currently has no currency and only 2 regions.&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&lt;br /&gt;
|-&lt;br /&gt;
|Realms of Discordia&lt;br /&gt;
| [http://www.griffonsnest.com:9000 http://www.griffonsnest.com:9000]&amp;amp;nbsp;&lt;br /&gt;
|My small testing sim, open 24 hours, feel free to come by, visit, build, whatever. 9 Regions with 3 current residents. &lt;br /&gt;
|-&lt;br /&gt;
| [http://eucomvc.dlinkddns.com:9000/wifi IMAGENHARIAEAD]&amp;lt;br /&amp;gt;&lt;br /&gt;
| [http://eucomvc.dlinkddns.com:9000 http://eucomvc.dlinkddns.com:9000]&amp;amp;nbsp;&lt;br /&gt;
|My Test grid, open sometime in the day, feel free to come by, visit, build, whatever. 4 Regions. 1 Sandbox IMAGENHARIAEAD 3 - The Internet as a tool of education. Learning is action. Otherwise it is just information. Moodel/Sloodle/Pivote - 24h Online – http://bitly.com/imagenharia - http://vendasmais.com/moodle&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
= See Also =&lt;br /&gt;
&lt;br /&gt;
* [[Grid Associations]]&lt;br /&gt;
* [[Public Hypergrid Nodes|HyperGrid Nodes]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Grids]]&lt;/div&gt;</summary>
		<author><name>FoTo50</name></author>	</entry>

	<entry>
		<id>http://opensimulator.org/wiki/Webinterface</id>
		<title>Webinterface</title>
		<link rel="alternate" type="text/html" href="http://opensimulator.org/wiki/Webinterface"/>
				<updated>2012-10-23T16:04:16Z</updated>
		
		<summary type="html">&lt;p&gt;FoTo50: change url for jOpenSim&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__ {{Quicklinks}} {{thirdparty}} &lt;br /&gt;
&lt;br /&gt;
== Addon Modules ==&lt;br /&gt;
&lt;br /&gt;
* [[Wifi]] - A Simple Account Management Front-end&lt;br /&gt;
&lt;br /&gt;
== PHP ==&lt;br /&gt;
&lt;br /&gt;
* [https://github.com/JamesStallings/EgressWFE EgressWFE] - Web Interface for stock ROBUST-based OpenSimulator Grids (get OpenSimulator here: [http://opensimulator.org/ OpenSimulator]). Extensive grid management for operators, user account management for users. Needs additional work, but is very functional. BSD Licensed. By James G. Stallings II aka Hiro Protagonist, [http://SimHost.com SimHost.com], and others. Note that Egress is written using the Codeigniter 2.0 PHP Framework.&lt;br /&gt;
* [https://github.com/JamesStallings/gainsayWFE gainsayWFE] - Extremely Minimalist Web Interface for stock ROBUST-based OpenSimulator Grids (get OpenSimulator here: [http://opensimulator.org/ OpenSimulator]). Web-based account requests, Userspace request management scripts to review, approve, or delete avatar account requests made over the web. BSD Licensed. By James G. Stallings II aka Hiro Protagonist, [http://SimHost.com SimHost.com], and others.&lt;br /&gt;
* [http://www.nsl.tuis.ac.jp/xoops/modules/xpwiki/?XoopenSim%20(E) XoopenSim] - Web Interface for [http://xoopscube.org/ Xoops Cube]. v1.50 supports MySQL Data Base of 0.6.7,0.6.8,0.6.9 and 0.7, 0.7.1Dev, and it includes flotsam group function, osprofile, ossearch, mute list and login screen function. &lt;br /&gt;
* [http://www.nsl.tuis.ac.jp/xoops/modules/xpwiki/?Modlos%20%28E%29 Modlos] - Web Interface for [http://moodle.org/ Moodle]. This software is sister application of XoopenSim. Modlos has same functions with XoopenSim and supports cooperation with [http://www.sloodle.org Sloodle]. &lt;br /&gt;
* [http://forge.opensimulator.org/gf/project/opensimwi/ OpenSimulator Web Interface] This is a PHP Web Interface for OpenSimulator (Open Simulator Project), it allows grid citizens to create User Accounts to access the grid. Grid Owners can also manage all users for the grid, with a very powerful CMS system included. (Beta Release for 0.7.x is in Branches) &lt;br /&gt;
* [http://d4os.org D4os] - A set of [http://drupal.org Drupal] modules to control a grid.&lt;br /&gt;
* [http://openmetaverse.googlecode.com/ SimianGridFrontend] - The PHP-based web interface that accompanies SimianGrid. SimianGridFrontend is based on the CodeIgniter PHP MVC framework. &lt;br /&gt;
* [http://lab.newworldgrid.com/Wiki/index.php/Rest_Ajax_Manager/ Nwg Rest Ajax Manager] - A remote console using php &amp;amp;amp; ajax to user with RestConsole system. &lt;br /&gt;
* [http://lab.newworldgrid.com/Wiki/index.php/Ajax_Map/ Nwg Ajax Map] - A dynamic map of the grid using ajax with a reservation system. &lt;br /&gt;
* [http://code.google.com/p/openmetaverse/wiki/SimianGrid SimianGrid] - A scalable, extensible, light-weight, open source persistence layer for MMOs and virtual worlds, written in PHP. Also provides the frontend mentioned above and WebDAV access to inventory. &lt;br /&gt;
* [http://sourceforge.net/apps/trac/unga/wiki/WikiStart unga] - Both an UGAIM (User, Grid, Assets, Inventory, Messaging) server system and a backend for configuring that servers. Also, its modular architecture allows to create (or plug) specialized modules created in standard PHP. &lt;br /&gt;
* [http://www.jopensim.com/ jOpenSim] - Joomla! component for interacting with an OpenSimulator server and 2 modules (grid status and friends online) and a plugin (jOpenSimRegister). The component is developed and designed with opensimulator starting from V 0.7.3.1 running in grid or standalone mode with MySQL as storage engine.&lt;br /&gt;
&lt;br /&gt;
=== Optional modules ===&lt;br /&gt;
&lt;br /&gt;
* [http://code.google.com/p/flotsam/wiki/XmlRpcGroups XmlRpcGroups] - A set of xmlrpc methods to manage groups in opensim. See [[Groups|this page]] for how to configure it. &lt;br /&gt;
* [http://forge.opensimulator.org/gf/project/ossearch ossearch] - A set of xmlrpc methods to manage search, events and classifieds. See [[OpenSimSearch|this page]] for how to configure it. &lt;br /&gt;
* [http://forge.opensimulator.org/gf/project/osprofile osprofile] - A set of xmlrpc methods to manage persistent profile. &lt;br /&gt;
* [http://forge.opensimulator.org/gf/project/webassets/ webassets] - A script to render assets pictures to display on a website.&lt;br /&gt;
&lt;br /&gt;
== Python ==&lt;br /&gt;
&lt;br /&gt;
* [https://github.com/phrearch/hwios HWIOS] - Websocket CMS with experimental OpenSimulator support. HWIOS includes OpenSimulator user management, region management with interactive scalable maps, distributed service management(start/stop/kill service + remote websocket consoles), IAR/OAR sharing through teknon webdav shares, websocket chat, a realtime distributed wiki(hyki) and a simple collaborative drawing application. HWIOS is currently compatible with OpenSimulator 0.7.1 and webkit browsers(Chrome/Chromium 8+, Safari and FF4 to some degree). For more information, check out the [http://hwios.blogspot.com HWIOS Blog] &lt;br /&gt;
* [https://github.com/phrearch/teknon Teknon] - A Twisted TCP daemon, capable of communicating over a persistent connection between local services and HWIOS websockets through subprocess pipes. HWIOS uses teknon for distributed service management and remote consoles.&lt;br /&gt;
&lt;br /&gt;
[[Category:Development]]&lt;/div&gt;</summary>
		<author><name>FoTo50</name></author>	</entry>

	<entry>
		<id>http://opensimulator.org/wiki/Webinterface</id>
		<title>Webinterface</title>
		<link rel="alternate" type="text/html" href="http://opensimulator.org/wiki/Webinterface"/>
				<updated>2011-09-11T09:07:54Z</updated>
		
		<summary type="html">&lt;p&gt;FoTo50: updated jOpenSim Link&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__ {{Quicklinks}} {{thirdparty}} &lt;br /&gt;
&lt;br /&gt;
== Addon Modules  ==&lt;br /&gt;
&lt;br /&gt;
*[[Wifi]] - A Simple Account Management Front-end&lt;br /&gt;
&lt;br /&gt;
== PHP  ==&lt;br /&gt;
&lt;br /&gt;
*[http://www.nsl.tuis.ac.jp/xoops/modules/xpwiki/?XoopenSim%20(E) XoopenSim] - Web Interface for [http://xoopscube.org/ Xoops Cube]. v1.50 supports MySQL Data Base of 0.6.7,0.6.8,0.6.9 and 0.7, 0.7.1Dev, and it includes flotsam group function, osprofile, ossearch, mute list and login screen function. &lt;br /&gt;
*[http://www.nsl.tuis.ac.jp/xoops/modules/xpwiki/?Modlos%20%28E%29 Modlos] - Web Interface for [http://moodle.org/ Moodle]. This software is sister application of XoopenSim. Modlos has same functions with XoopenSim and supports cooperation with [http://www.sloodle.org Sloodle]. &lt;br /&gt;
*[http://forge.opensimulator.org/gf/project/opensimwi/ OpenSim Web Interface] This is a PHP Web Interface for OpenSim (Open Simulator Project), it allows grid citizens to create User Accounts to access the grid. Grid Owners can also manage all users for the grid, with a very powerful CMS system included. (Beta Release for 0.7.x is in Branches) &lt;br /&gt;
*[http://d4os.org D4os] - A set of [http://drupal.org Drupal] modules to control a grid. (actually in alpha stage using OpenSim 0.6.8/9 and 0.7.0.2) &lt;br /&gt;
*[http://openmetaverse.googlecode.com/ SimianGridFrontend] - The PHP-based web interface that accompanies SimianGrid. SimianGridFrontend is based on the CodeIgniter PHP MVC framework. &lt;br /&gt;
*[http://lab.newworldgrid.com/Wiki/index.php/Rest_Ajax_Manager/ Nwg Rest Ajax Manager] - A remote console using php &amp;amp;amp; ajax to user with RestConsole system. &lt;br /&gt;
*[http://lab.newworldgrid.com/Wiki/index.php/Ajax_Map/ Nwg Ajax Map] - A dynamic map of the grid using ajax with a reservation system. &lt;br /&gt;
*[http://code.google.com/p/openmetaverse/wiki/SimianGrid SimianGrid] - A scalable, extensible, light-weight, open source persistence layer for MMOs and virtual worlds, written in PHP. Also provides the frontend mentioned above and WebDAV access to inventory. &lt;br /&gt;
*[http://sourceforge.net/apps/trac/unga/wiki/WikiStart unga] - Both an UGAIM (User, Grid, Assets, Inventory, Messaging) server system and a backend for configuring that servers. Also, its modular architecture allows to create (or plug) specialized modules created in standard PHP. &lt;br /&gt;
*[http://www.foto50.com/ jOpenSim] - Joomla! component for interacting with an OpenSimulator server and 2 modules (grid status and friends online). The component is developed and designed with opensimulator starting from V 0.7.0.1 running in grid mode with MySQL as storage engine, but also can work with standalone mode.&lt;br /&gt;
&lt;br /&gt;
=== Optional modules  ===&lt;br /&gt;
&lt;br /&gt;
*[http://code.google.com/p/flotsam/wiki/XmlRpcGroups XmlRpcGroups] - A set of xmlrpc methods to manage groups in opensim. See [[Groups|this page]] for how to configure it. &lt;br /&gt;
*[http://forge.opensimulator.org/gf/project/ossearch ossearch] - A set of xmlrpc methods to manage search, events and classifieds. See [[OpenSimSearch|this page]] for how to configure it. &lt;br /&gt;
*[http://forge.opensimulator.org/gf/project/osprofile osprofile] - A set of xmlrpc methods to manage persistent profile. &lt;br /&gt;
*[http://forge.opensimulator.org/gf/project/webassets/ webassets] - A script to render assets pictures to display on a website.&lt;br /&gt;
&lt;br /&gt;
== Python  ==&lt;br /&gt;
&lt;br /&gt;
*[https://github.com/phrearch/hwios HWIOS] - Websocket CMS with experimental OpenSimulator support. HWIOS includes OpenSimulator user management, region management with interactive scalable maps, distributed service management(start/stop/kill service + remote websocket consoles), IAR/OAR sharing through teknon webdav shares, websocket chat, a realtime distributed wiki(hyki) and a simple collaborative drawing application. HWIOS is currently compatible with OpenSimulator 0.7.1 and webkit browsers(Chrome/Chromium 8+, Safari and FF4 to some degree). For more information, check out the [http://hwios.blogspot.com HWIOS Blog] &lt;br /&gt;
*[https://github.com/phrearch/teknon Teknon] - A Twisted TCP daemon, capable of communicating over a persistent connection between local services and HWIOS websockets through subprocess pipes. HWIOS uses teknon for distributed service management and remote consoles.&lt;br /&gt;
&lt;br /&gt;
[[Category:Development]]&lt;/div&gt;</summary>
		<author><name>FoTo50</name></author>	</entry>

	</feed>