Jump to content

Search the Community

Showing results for 'login'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • Important News
    • Announcements
  • People Forum
    • Your Avatar
    • Make Friends
    • Lifestyles and Relationships
    • Role Play
    • General Discussion Forum
    • Forums Feedback
    • Second Life Education and Nonprofits
  • Places and Events Forum
    • Favorite Destinations
    • Upcoming Events and Activities
    • Games in Second Life
  • Official Contests, Events & Challenges
    • Challenges
    • Contests
  • Creation Forum
    • Fashion
    • Art, Music and Photography
    • Animation Forum
    • Bakes on Mesh
    • Environmental Enhancement Project
    • Machinima Forum
    • Building and Texturing Forum
    • Mesh
    • LSL Scripting
    • Experience Tools Forum
  • Technology Forum
    • Second Life Server
    • Second Life Viewer
    • Second Life Web
    • General Second Life Tech Discussion
    • Mobile
  • Commerce Forum
    • Merchants
    • Inworld Employment
    • Wanted
  • Land Forum
    • General Discussion
    • Mainland
    • Linden Homes
    • Wanted
    • Regions for Sale
    • Regions for Rent
  • International Forum
    • Deutsches Forum
    • Foro en español
    • Forum in italiano
    • Forum français
    • 日本語フォーラム
    • 한국어 포럼
    • Fórum em português
    • Forum polskie
    • المنتدى العربي
    • Türkçe Forum
    • Форум по-русски
  • Answers
    • Abuse and Griefing
    • Account
    • Avatar
    • Creation
    • Inventory
    • Getting Started
    • Controls
    • Land
    • Linden Dollars (L$)
    • Shopping
    • Technical
    • Viewers
    • Everything Else
    • International Answers

Blogs

  • Commerce
  • Featured News
  • Inworld
  • Tools and Technology
  • Tips and Tricks
  • Land
  • Community News

Categories

  • English
  • Deutsch
  • Français
  • Español
  • Português
  • 日本語
  • Italiano
  • Pусский
  • Türkçe

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Member Title

  1. Can't login any of my accounts. I changed the DNS servers but the problem persists. I can access my web dashboard, though. [EDIT] Of course that the message I get is the usual generic one, and there's nothing on the GSP about it so far.
  2. Ugh..current login screen message encourages you to go somewhere to experience "bots"!
  3. Yes there is ongoing "maintenance" on the login and inventory servers, it seems accounts are randomly (to us) but systematically (to LL) being checked and if necessary corrected. NB: This is little more than speculation on my part following some unexpected but entirely understandable account issues.
  4. I've been trying to log into SL for the last two days and I keep getting this error message. I don't know what happened. I didn't change any settings or anything. I was able to log in fine with no issues at all until 2 days ago. I've tried: Resetting the modem and router Changing the DNS settings to 8.8.8.8 and 8.8.4.4 Restarting my computer Checking my network and firewall settings Seriously, this is starting to upset me a great deal because it just happened so suddenly. Everything was fine up until 2 days ago. Please, help me. Anyone.
  5. I tried to respond on the feedback portal in support of the suggestion, but pressing the Login button on the page just sends me to knowledgebase article about how to login to the portal. I get sent around in a circle trying to login. Anyway, I fuilly agree that Zindra is half done. The gap in road between Kerano and Harriott a shocking example of a plan ended before completion. The value of land in Zindra and success of Horizons illustrates demand and is a good business argument to complete development
  6. ^Only encountered this recently, I am unable to login and always pop this error message. I've tried all the suggested way (cloudfare, clear cache, clear friendlist/grouptag with weird fonts, login to other location etc) but non of it worked... My alt account can login easily anywhere without this problem, in the same viewer. Anyone please enlighten me on this..
  7. /* * Demo the RFC 8628 OAuth2 Device Flow with LSL scripting * * (c) 2024 Kathrine Jansma * * SPDX-License-Identifier: MIT */ /* client_id as specified by OAuth2 spec */ /* Must be registered with the Azure Portal first or registered with Windows Powershell * You may need to allow Device-Flow explicitly. */ string client_id = "xxxxxxxx-yyyy-zzzz-aaaa-zzzzzzzzzzz"; /* AzureAD / Microsoft Entra Tenant ID, lets use the "consumers" tenant that has all Windows 10/11 users with a Microsoft Login included */ string tenant_id = "consumers"; /* Access Token to use for calling APIs */ string access_token; /* Refresh Token, if asking for 'offline_access' scope */ string refresh_token; /* expiry time for the token, as Unix Timestamp */ integer token_expiry; /* Device Code for the flow */ string device_code; /* Poll time for access code, defaults to 5 seconds */ float poll_time = 5.0; /* Device code expiry time as Unix Timestamp */ integer expires; /* Scopes to request, depends on the APIs to be called */ list scopes = ["openid", "profile", "offline_access"]; /* HTTP Request ID */ key request_id; /* User running the flow */ key request_user; /* Get the Devicecode to hand to the user */ get_devicecode() { /* Devicecode URL as specific for Azure AD / Microsoft Entry */ string devicecode_url = "https://login.microsoftonline.com/" + tenant_id + "/oauth2/v2.0/devicecode"; list parameters = [HTTP_METHOD, "POST", HTTP_MIMETYPE, "application/x-www-form-urlencoded"]; string body = "client_id="+client_id+"&scope=" + llEscapeURL(llDumpList2String(scopes, " ")); request_id = llHTTPRequest(devicecode_url, parameters, body); } /* Poll for the Access Token */ poll_access_token() { string token_url = "https://login.microsoftonline.com/" + tenant_id + "/oauth2/v2.0/token"; /* Body can be large, so expand it */ list parameters = [HTTP_METHOD, "POST", HTTP_MIMETYPE, "application/x-www-form-urlencoded", HTTP_BODY_MAXLENGTH, 16384]; string grant_type = "urn:ietf:params:oauth:grant-type:device_code"; string body = "grant_type="+llEscapeURL(grant_type) + "&client_id="+client_id+"&device_code="+device_code; request_id = llHTTPRequest(token_url, parameters, body); } default { state_entry() { llSay(0, "Please touch to start the auth flow."); } touch_start(integer total_number) { llSay(0, "Sending Call for DeviceCode."); request_user = llDetectedKey(0); get_devicecode(); } http_response(key request_id, integer status, list metadata, string body) { llSay(0, "HTTP Status: " + (string)status); if (status != 200) { llSay(0, "Failed: " + body); return; } llSay(0, "Body: " + body); string user_code = llJsonGetValue(body, ["user_code"]); device_code = llJsonGetValue(body, ["device_code"]); string verify_uri = llJsonGetValue(body, ["verification_uri"]); string msg = llJsonGetValue(body, ["message"]); poll_time = (float)llJsonGetValue(body, ["interval"]); expires = llGetUnixTime() + (integer)llJsonGetValue(body, ["expires_in"]); llSay(0, msg); llLoadURL(request_user, msg, verify_uri); state poll_token; } } state poll_token { state_entry() { llSay(0, "Polling for Access Token"); llSetTimerEvent(poll_time); request_id = NULL_KEY; } http_response(key req_id, integer status, list metadata, string body) { llSay(0, "HTTP Status: " + (string)status); request_id = NULL_KEY; if (status == 400) { /* See RFC 6749 5.2 && RFC 8628 3.5 */ string error_code = llJsonGetValue(body, ["error"]); string error_msg = llJsonGetValue(body, ["error_description"]); string error_url = llJsonGetValue(body, ["error_url"]); if (error_code == "authorization_pending") { /* expected, just retry */ llSay(0, "Auth pending"); llSetTimerEvent(poll_time); return; } else if (error_code == "slow_down") { /* need to slow down polling */ poll_time += 5.0; llSetTimerEvent(poll_time); return; } else if (error_code == "access_denied") { llSay(0, "User denied access: " + error_msg); llSay(0, "Aborting flow."); state default; } else if (error_code == "expired_token") { llSay(0, "Device code expired."); llSay(0, "Aborting flow."); state default; } else if (error_code == "invalid_grant") { } llSay(0, "Unexpected Error"); llSay(0, "CODE: " + error_code); llSay(0, "MSG: " + error_msg); llSay(0, "Aborting flow."); state default; return; } if (status != 200) { llSay(0, "Failed: " + body); return; } /* See RFC 6749 5.1 for format */ access_token = llJsonGetValue(body, ["access_token"]); string token_type = llJsonGetValue(body, ["token_type"]); llSay(0, "Got access token with type "+token_type); refresh_token = llJsonGetValue(body, ["refresh_token"]); token_expiry = llGetUnixTime() + (integer)llJsonGetValue(body, ["expires_in"]); state access; } timer() { if (llGetUnixTime() > expires) { llSay(0, "Device Code expired, please try again."); state default; } if (request_id == NULL_KEY) { llSay(0, "Polling for Access Token"); poll_access_token(); } } } state access { state_entry() { llSay(0, "Flow completed, have access token."); llSay(0, "Expires At: " + (string)token_expiry); /* Lets call the microsoft graph userinfo endpoint */ llSay(0, "Calling Userinfo Endpoint"); string userinfo_uri = "https://graph.microsoft.com/oidc/userinfo"; list parameters = [HTTP_METHOD, "GET", HTTP_BODY_MAXLENGTH, 16384, HTTP_CUSTOM_HEADER, "Authorization", "Bearer " + access_token ]; request_id = llHTTPRequest(userinfo_uri, parameters, ""); } http_response(key req_id, integer status, list metadata, string body) { llSay(0, "HTTP Status: " + (string)status); request_id = NULL_KEY; if (status == 400) { /* See RFC 6749 5.2 && RFC 8628 3.5 */ string error_code = llJsonGetValue(body, ["error"]); string error_msg = llJsonGetValue(body, ["error_description"]); string error_url = llJsonGetValue(body, ["error_url"]); llSay(0, "Unexpected Error"); llSay(0, "CODE: " + error_code); llSay(0, "MSG: " + error_msg); llSay(0, "Aborting flow."); return; } if (status != 200) { llSay(0, "Failed: " + body); return; } /* !!!!! Privacy, userinfo shows the name of the user that completes the flow !!!! */ /* llOwnerSay("Got Body: " + body); */ } } A little example how to run an OAuth2 Device Flow against Microsoft Entry ID / Azure AD to call APIs on the Microsoft Graph. References: RFC 8628 Device Grant RFC 6749 OAuth2 Microsoft identity platform and the OAuth 2.0 device authorization grant flow Microsoft Graph API
  8. Please, stop spreading FUD... There is no ”link” whatsoever between a viewer you would use and your payment info... As for the Cool VL Viewer specifically, it is probably the most respectful viewer regarding your data: it does not even use a custom web login panel page (like many other TPVs are doing), meaning that your IP address cannot even be known by a web server that would run such a custom page. It does not have either any auto-update feature that would log the version you are using together with your IP. I get absolutely zero feedback on who is using my viewer or not, what is their IP, OS, etc... Even the web site hosting it pertains to my ISP (meaning I do not even have access to the HTTP logs for it). There is not even an automatic crash log/dump upload feature like all other TPVs got... See ”Help” menu -> ”About” floater -> ”Usage policy” tab:
  9. "An error has occurred. Further information is available in the server log." immediately after login. But the Committee of the Mending Apparatus now came forward, and allayed the panic with well-chosen words. It confessed that the Mending Apparatus was itself in need of repair. The effect of this frank confession was admirable. “Of course,” said a famous lecturer — he of the French Revolution, who gilded each new decay with splendour — “of course we shall not press our complaints now. The Mending Apparatus has treated us so well in the past that we all sympathize with it, and will wait patiently for its recovery. In its own good time it will resume its duties. Meanwhile let us do without our beds, our tabloids, our other little wants. Such, I feel sure, would be the wish of the Machine.” "The Machine Stops", E. M Forster, 1909.
  10. For some reason for the past week the SL login webpage isn't loading at all. I can load secondlife.com but the minute I go to login it says the page can't be loaded? Also when I try to go in world it stops at requesting region capabilities? The only thing that has changed is we switched to a different internet provider (metronet) but that shouldn't cause issues with the login page not working?
  11. I've noticed that the login server for the beta grid is much slower than the one for the main grid. In my own viewer I often get login timeouts on the beta grid in Sharpview, which currently only has a 5 second timer. If I get a login timeout, the next attempt to log in may succeed but will usually not connect to a region, probably because there's a partially complete login that has to time out. So some beta grid problems may be beta grid login server overload.
  12. I suddenly can't log in to SL with any account, from two different PCs with different public IP addresses so I don't think it's local. Firefox Firestorm even clears the password field as if I've typed it wrong. Anyone else? Edit: not even through a VPN into the USA.
  13. One of those really obscure technical questions viewer developers sometimes need to know. Background: When logged into Second Life, the viewer is talking to one or more region simulators. It's always talking to the region your avatar is in , and it's usually talking to some nearby regions to see what's over there that needs to be shown on screen. This depends on draw distance. When you first log into Second Life, your viewer starts by talking to the login server. The login server decides if you get to log in, and if you do, it returns enough information to let you talk to your initial region. This includes the region handle (which is just the X,Y location of the region), the IP address and port of the region for UDP messages, and the "seed capability", which is a URL used for requesting more URLs from the region. The "seed capability" URL has a randomly generated field for security reasons and is only good for the duration of the login. That's the beginning of how things get started. On a teleport, there's an event, TeleportFinish, sent over the EventQueueGet HTTP connection, with similar information about the teleport destination region. (Yes, the wiki shows that as a UDP message, but it was moved to the event queue years ago.) So that's how the initial phase of simulator handoff works. Now, once you're connected to a SL region, you need to know about nearby regions so you can see them. So the main simulator your avatar is in sends EnableSimulator events telling you about nearby regions. These contain the region handle, the IP address, and port of the nearby region. For some reason, though, they don't contain the "seed capability" for the new region. So the viewer can't connect to the new region yet. There's probably some historical reason for this. So there's another event, EstablishAgentCommunication, which provides that info. But, in my Sharpview viewer, I'm not getting that message from SL simulators. So Sharpview can't connect to nearby regions. I get EnableSimulator events for all nearby regions, but no EstablishAgentCommunication messages. That's weird, getting one but not the other. EstablishAgentCommunication does show up in messages from the Other Simulator. Sharpview gets the info needed to connect to neighbor regions over there. There's code in the LL viewer to handle this message. It's shown on the SL wiki as coming in with EnableSimulator. So it ought to show up. The message sequence is documented for the Other Simulator. Probably works the same way for SL. Diagram from 2009. Sequence of events for a teleport in the Other Simulator for a region you can see. When a teleport fails, something in the above sequence didn't happen. This shows the process of discovering a neighbor region, making it visible, and then, later, going there via teleport. Note the EstablishAgentCommunication message. I am not receiving that from SL regions in Sharpview. Do I need to send something to get the simulator to send it?
  14. Oh dear, oh dear. Having just purchased the SnowRabbit W01X from the Skin Fair I couldn't help myself... I bought the Maitreya body for my new alt to go with it as well. It's a few months old now but I couldn't hold out any longer despite liking the Altamura a lot. I'm dropping this here because I still intend to keep the inventory levels low as I'm sticking with LaraX clothing only for this alt and intend on not going nuts on outfits (famous last words). Same old story. What starts as another alt due to the opportunities of seasonal gifts and giveaways with the intention of keeping things simple she turns into another fully fledged bells & whistles avatar. I love all my alts so it's not an issue, but the drop-down list of names at login is getting a bit cumbersome.
  15. can not log in to my account at al it attempts to log on but only gets half way in an just hangs there never logging my all the way in i totally uninstalled SL an reinstalled it an the same thing happened to me now i have no idea what else to do i can log into my dash board just fine which uses the same pw so its not that , could use some help please ,
  16. https://gyazo.com/cde02a96c370b0963292dd03e544b7a7 keep getting this message
  17. this is going on since the 30.12.2023. and i can not login and STILL CANT login. and no, it is not a problem of my router, dns or whatever this dumb page they link you to writes (because i restarted my pc+router etc.). it gets really annoying by now and i am not the onlyone in my region which cant login.
  18. So, a few weeks ago I added a few new Favorites to, well, my Favorites folder. The first time I tried one of the new Favorites, it didn't work, logged me in at the last place I had logged off from. I assumed it was a region restart thing. However, the next time I logged in, I was missing 3 of 5 my Favorites and now the two that did stay never work either. Whenever I use them, I get logged in wherever I logged out from and this is what it tells me each time: So, today I decided to finally try to fix it. Deleted my Login Account info, closed Firestorm, restarted it, entered my info, still shows the 2 broken(?) Favorites while not showing the full list of them Logged in and moved all my Favorites to a different folder so my Favorites folder is empty. Then fully cleared cache (following instructions here https://wiki.firestormviewer.org/fs_cache_clear ), still saw the 2 broken Favorites listed as login options. I deleted my saved login info Again, restarted again, those 2 still show. Logged in again and logged out thinking a fresh login after all that may help? Nope Is my Favorites folder just forever corrupted now? The LM links in question all work without issue inworld too, for the record. Also latest version of Firestorm (6.6.17.70368)
  19. Until recently, it was possible to run the Second Life viewer under Wine on Linux. That's no longer working. I hardly ever bother to run the SL viewer, but I'm working with someone who is trying to set up pathfinding with the SL viewer. They can't find the right menus. and the LL documentation has screenshots of totally different menus from the distant past. Fortunately, I can still run the Puppetry project viewer! So I don't have to fix LL's code. What seems to be broken is the "SL Version checker". That hasn't worked under Wine for years. Crashes because it wants some DLL Wine doesn't have. But until recently, that didn't matter. Now, for some reason, when it aborts, LLLogin::loginCoro fails with an unhandled C++ exception during login. Look at the code around line 232 of lllogin.cpp. It looks like if the login response has "wait_for_updater" set, it's forced down a path that requires updater success. I think. Also, media_plugin_cef.dll now fails. This is new. 2023-12-29T22:36:15Z WARNING #Plugin# llplugin/llplugininstance.cpp(106) LLPluginInstance::load : apr_dso_load of C:\Pro gram Files\SecondLifeViewer\llplugin\media_plugin_cef.dll failed with error -2146763645 , additional info string: Unknown error No, I'm not going to file a JIRA. I'll get the same "Linux is not supported" response as last time.
  20. In your viewer Preference settings, you should find a "Allow login to other grids" setting. In Firestorm, its found in the Preferences > Advanced. Without that setting enabled, you won't have a visible option on the login screen to select the Beta/Aditi grid when you next attempt a login.
  21. It's true though, I think a lot of us DO switch viewers, depending on the situation. I use Speedlight at work to send IM's, since I can't fully login for privacy reasons. I like the pics BD takes, but I don't know how to back up the settings, if I muck something up. FS DOES have a PBR Beta, which is working fine for me.
  22. On the past half an hour I've been experiencing login and teleport failures. And when I can login, then it takes ages connecting to regions (tried a few) and never does. I just can get in-world randomly, only one out of 10 attempts work. Connectivity issues? [EDIT] It happens both with Firestorm 6.6.14 (69596) and the Second Life Viewer's supposedly latest stable version. [EDIT 2] Maybe it's a temporary issue, as I just managed to get in-world twice in a row.
  23. Ok thx but I will say most updates have a pop up saying that I must update in order to login, not optional.
  24. More often than not, I'm using one of the LL project or candidate viewers to try out new features not yet available in TPVs. And that's not a rare occasion at all: I can't remember a time, ever, when there wasn't something being tested in a Linden viewer that wouldn't be available to test in a TPV for months yet. I mean, I wouldn't recommend newbies start with a project viewer but, dirty job that it is, somebody's gotta do it! I also use TPVs, although other than during this PBR transition, it's rarely Firestorm. It just takes so much longer to launch, which is an especially big deal when testing stuff that needs frequent fresh logins. Also, the menus are twice as deep and complex, which is of course necessary to offer all those features, but they're features I get along just fine without. Worse, if I grew accustomed to using them I'd lose the motor memory to do all the same things using the basic controls in all other viewers. Although the Linden viewer has picked up some TPV features in recent years (most usefully for me the Build Tool parameter copy-and-paste), there are some that I value still absent from the LL viewer. The one I value most seems usefully implemented only in Catznip, which unfortunately is now so far out of date I almost never have a login session where I can use it for what I plan to do. So when I'm not testing new features I do use TPVs but I often end up launching a Linden viewer as path of least resistance.
  25. I have been trying to login to SL since last night . I had dl the most recent firestorm viewer and it was working so I went back to the previous viewer. I did a clean dl, restarted my computer, restarted router., nothing works. I tried to contact sl support and it wouldn't let me send a ticket . I till get a window stating " Second cannot be accessed from this computer". I feel like I have been blocked by error . I am not a greifer and there are only less than a handful of people I actually see on there. What else can do to fix this?
×
×
  • Create New...