[Opensim-dev] [RegionReady] login_disable - Default changed in 0.7.3?
James Hughes
jamesh at bluewallgroup.com
Fri Mar 23 01:18:32 UTC 2012
Thanks!
Another note. The settings are defined in the OpenSimDefaults.ini and
may be copied over to your OpenSim.ini for modification. As logins are
enabled, a message is sent to the lsl chat channel defined in the
settings. And a location may be set with he "alert_uri" to receive JSON
alerts. Here is a simple php handler to recieve them ...
<?php
$method = $_SERVER["PATH_INFO"];
if ($method == "/alert/")
{
$msg = json_decode($HTTP_RAW_POST_DATA, true);
$alert = $msg['alert'];
$login = $msg['login'];
$region = $msg['region_name'];
$id = $msg['region_id'];
$file = fopen("/tmp/login_alerts.txt",'a');
fwrite($file,"*******************************\n".
"ALERT: ".$alert.
" REGION: ".$region.
" LOGIN STATUS: ".$login."\n".
"REGION ID: ".$id."\n");
fclose($file);
}
?>
-BlueWall
On Thu, 2012-03-22 at 11:52 -0400, Fleep Tuque wrote:
> Ahh, that makes perfect sense. Thanks for the additional information
> and I took the liberty of adding a bullet point to the 0.7.3 release
> notes under the General Simulator section:
>
>
> During simulator startup, default setting now disables logins to the
> simulator until scripts finish compiling to reduce performance issues.
>
>
> I hope that's the appropriate section heading and language, but if not
> let me know.
>
>
> Thanks again!
>
>
>
>
> - Chris/Fleep
>
>
>
>
> Chris M. Collins (SL/OS: Fleep Tuque)
> Center for Simulations & Virtual Environments Research (UCSIM)
> UCIT Instructional & Research Computing
> University of Cincinnati
> 406A Zimmer Hall
> 315 College Drive
> PO BOX 210088
> Cincinnati, OH 45221-0088
> chris.collins at uc.edu
> (513) 556-3018
>
>
> http://ucsim.uc.edu
>
> On Thu, Mar 22, 2012 at 10:47 AM, R.Gunther <rigun at rigutech.nl> wrote:
> With the new opensim versions scripts get compiled first,
> until that is done region logins are disable for stability.
> Thats why you see the logins disabled message. And offcorse it
> can take longer before you can login if you have more scripts.
> In the past avatars that did a login while scripts where not
> done with compileing, some strange side effects happend then
> sometimes.
>
> --------------------------
>
>
> On 2012-03-21 05:12, Fleep Tuque wrote:
> > Hi all,
> >
> >
> > I noticed when I upgraded to 0.7.3 this evening that I
> > couldn't log in for quite some time after a restart with a
> > message I'd never seen before on the client, that logins
> > were disabled.
> >
> >
> > After some googling, I see that the opensimdefaults.ini has
> > a [RegionReady] section that I'd never messed with before (I
> > don't think), and comparing the 0.7.2 version to the 0.7.3
> > version, it appears the default setting for login_disable
> > was false in 0.7.2 but is set to true in 0.7.3.
> >
> > I didn't see this documented in the 0.7.3 release notes, can
> > anyone else verify? If this default has been changed, the
> > 0.7.3 release notes should probably reflect that, and if the
> > change wasn't intended, thought I should mention it in any
> > case.
> >
> >
> > It's a minor thing, but it was momentarily confusing, I
> > thought something was wrong with my upgrade..
> >
> >
> > Of course it's still possible that I changed something and
> > don't remember it too, so if so, apologies in advance for my
> > utter confusion. ;)
> >
> >
> >
> >
> > - Chris/Fleep
> >
> >
> > Chris M. Collins (SL/OS: Fleep Tuque)
> > Center for Simulations & Virtual Environments Research
> > (UCSIM)
> > UCIT Instructional & Research Computing
> > University of Cincinnati
> > 406A Zimmer Hall
> > 315 College Drive
> > PO BOX 210088
> > Cincinnati, OH 45221-0088
> > chris.collins at uc.edu
> > (513) 556-3018
> >
> >
> > http://ucsim.uc.edu
> >
> >
> >
> > _______________________________________________
> > Opensim-dev mailing list
> > Opensim-dev at lists.berlios.de
> > https://lists.berlios.de/mailman/listinfo/opensim-dev
>
>
>
> _______________________________________________
> Opensim-dev mailing list
> Opensim-dev at lists.berlios.de
> https://lists.berlios.de/mailman/listinfo/opensim-dev
>
>
> _______________________________________________
> Opensim-dev mailing list
> Opensim-dev at lists.berlios.de
> https://lists.berlios.de/mailman/listinfo/opensim-dev
More information about the Opensim-dev
mailing list