Jump to content

MartinRJ Fayray

Resident
  • Posts

    550
  • Joined

  • Last visited

Everything posted by MartinRJ Fayray

  1. Same answer as in your other post: have you tried a different browser?
  2. Hello Lucky Fonda, have you tried a different browser?
  3. Hello Felicia, please be aware that the Answers forums are residents-only forums, if you want an answer from a Linden Lab representative, please go to http://support.secondlife.com/contact-support and contact support directly. If some of your items were removed from marketplace, they were either flagged or there was a DMCA-takedown-request. In both cases - as far as I can tell - you should have received a notice via email.
  4. Hello, see here for a description about trading limits: https://secondlife.com/my/lindex/describe-limits.php You can still use third-party services to trade L$, like www.virwox.com.
  5. Hello, you should contact billing about issues with payment options. From https://support.secondlife.com/billing-support/ : Have billing issues? Give us a call. Note that phone support is for billing issues only. If you're having technical issues, please use technical support. Billing support phone numbers Toll-Free (US/Canada) 800.294.1067 Long-Distance 703.286.6277 Our Billing team is available 24 hours a day, seven days a week. Local Toll-Free numbers France: 0805.101.490 Germany: 0800.664.5510 Japan: 0066.33.132.830 Brazil: 0800.762.1132 Spain: 800.300.560 UK: 0800.048.4646 Support is in English Only
  6. Hello, you will have to follow the steps from the link you've provided to clear your cache and relog. This will probably fix the issue for you, once you've logged in after following these steps, and let your inventory fully load. Good luck!
  7. Hello, you'll need to contact support to fix this: http://support.secondlife.com/contact-support
  8. I suggest to inform support about that, I've seen it in several profiles of friends, and afaik only support can fix it: http://support.secondlife.com/contact-support
  9. Hello Larissa, when you're logged in to Second Life, press the shortcut CTRL+ALT+D, then type into the 'DEBUG SETTINGS' textfield: "RenderHideGroupTitle" and set it to TRUE by clicking the radio button. ETA: The above guide will hide your group title for you forever, others can still see it. You can also set another group as your active group (or none) if you press CTRL+SHIFT+G and rightclick 'None' and select 'Activate' (or any other group). When you rightclick one of the group -names and select 'View Info' you can choose another group title from the dropdown (if the group has more than one group titles).
  10. Hello Benitalio, if you can login to your account, the info is here: https://secondlife.com/my/account/contact.php? If you cannot, you can use this link to reset your password: https://secondlife.com/my/account/request.php If that doesn't work you need to contact support here: https://support.secondlife.com/contact-support ETA: Here is more information about the password-protection: https://wiki.secondlife.com/wiki/Linden_Lab_Official:Password_Protection
  11. Be careful when you copy-paste code from here, the first line (the URL) gets shortened by the forum software, I don't know a workaround for that. Try this: http://pastebin.com/ABhtrnJH
  12. I don't know why you'd start assaulting me, I didn't post faulty code, and in fact it's still the same code now as the original code, just with a view improvements due to feedback from other forum members. Please let's try not to attack each other in the forums. Btw. this was just meant as a guide for a workaround to the vwrsearch issue, not as a working program. I think everyone who needs to program his own Name2Key script will have the resources to solve issues and glitches himself. If this code offends you, I can delete it, and share it only with friends. Thank you.
  13. Hello, this is (I explained that earlier in this thread) because the max-body-length is set to 2048 by default, so sometimes when LL posts advertisements on the results page, the result is not received, because it's not in the first 2048 bytes of the page. Therefore I updated my example yesterday, to allow longer body-lengths. Also (I also explained that earlier) the llOwnerSay output doesn't reflect what gets sent to the http_response, because output from llOwnerSay is capped at 1024 bytes. Please use the updated version of the function (see my first post). I can find your key with it.
  14. Hello, you should request a region restart: http://support.secondlife.com/create-case (fill in Land & Region -> "Report an offline region" from the dropdowns). If you take a look at the 'Memory Allocated' value in the statistics bar (can be opened with the shortcut CTRL+SHIFT+1), what does it say there (see https://wiki.secondlife.com/wiki/Simulator_Physics_Statistics for information on how to find the value)? If the physics memory goes beyond a certain limit, the simulator refuses to rezz any new objects.
  15. You can change the default max bodylength of the http-request (see also https://wiki.secondlife.com/wiki/HTTP_BODY_MAXLENGTH ). This works, even with the advertisings on that page: EDIT Please use the version here: http://pastebin.com/ABhtrnJH because the forum-software automatically shortens the url of my code-example, if you like to copy-paste the code. string sUrl = "http://anonymouse.org/cgi-bin/anon-www.cgi/http://search.secondlife.com/client_search.php?s=people&session=00000000-0000-0000-0000-000000000000&mat=7&q=";string sSearchString = "http://world.secondlife.com/resident/";integer iKeyLength = 36;string sMessage = "Please say the name in chat!";string sMessageSearching = "Searching for: ";string sMessageResult = "Result: ";float fTime = 20;integer iListen;default{ touch_start(integer total_number) { llSetTimerEvent(fTime); iListen = llListen(PUBLIC_CHANNEL, "", llDetectedKey(0), ""); llSay(PUBLIC_CHANNEL, sMessage); } timer() { llListenRemove(iListen); llSetTimerEvent(0); } listen(integer channel, string name, key id, string message) { if(llToLower(llGetSubString(message,-8,-1)) == "resident") { message = llGetSubString(message,0,-9); } llListenRemove(iListen); llSay(PUBLIC_CHANNEL, sMessageSearching + message); llSetTimerEvent(0); llHTTPRequest(sUrl + llEscapeURL(message), [HTTP_BODY_MAXLENGTH,16384], ""); } http_response(key request_id, integer status, list metadata, string body) { string sResultKey = ""; integer iResultPos = llSubStringIndex(body, sSearchString); if (iResultPos != -1) { iResultPos = iResultPos + llStringLength(sSearchString); sResultKey = llGetSubString(body, iResultPos, iResultPos + iKeyLength-1); } llSay(PUBLIC_CHANNEL, sMessageResult + sResultKey); }}
  16. The searched person is always the first result, btw, if the name was correct (and the person doesn't hide their profile from search).
  17. Better use another proxy, it seems that anonymouse.org sometimes displays ads, just like you said, or use an off-world PHP script/relay. I get a result when I search for these avatars directly, so they didn't hide their profiles from search.
  18. Hi, I created a search filter for you: http://search.secondlife.com/?query_term=&collection_chosen=land&isLeftColOpen=true&sort=land_price_asc&purchase_type=Sale&area_low=&area_high=512&type=main_fullregion&price_low=&price_high= Next time just navigate to search.secondlife.com and click on 'Land & Rentals' and then on 'View all Land & Rentals'. Good luck finding a new home:)
  19. Still you can search your own chat logs (if you have some) for messages like "xy paid you ..L$", or "you paid xy ..L$", as there is always a chat message when you pay someone or get paid.
  20. I am pretty sure that you're not hitting the limit, but instead you are looking up profiles of residents who hide their info from search. You will not be able to find someone who chooses to hide their profile from search, with this script. Can you show me an example where it fails?
  21. @Dahlia: the llOwnerSay() function truncates the chat message at 1024 characters, the chat output doesn't reflect what gets sent to the http_response. The body of the http_response is truncated at 2048 characters, which is sufficient. Also note that I set the maturity rating to mat=7, which means ALL results: http://anonymouse.org/cgi-bin/anon-www.cgi/http://search.secondlife.com/client_search.php?s=people&session=00000000-0000-0000-0000-000000000000 &mat=7&q= Give it a try:) I've successfully tested it numerous times.
  22. Please be aware that this method won't work if the resident chose to hide their profile from search!
×
×
  • Create New...