|
Kahiro Watanabe
Registered User
Join date: 28 Sep 2007
Posts: 572
|
03-13-2008 12:03
But a field in the object like the used for name and description is not a huge field, let's say something like 256 chars. Instead of that they decided to reduce the description field so now many script that used this field must be changed and find another way to store its data. 
|
|
Laurence Corleone
Registered User
Join date: 12 Oct 2006
Posts: 126
|
03-13-2008 17:05
From: Hewee Zetkin There IS a hybrid solution: use external storage for the key of your server alone. That only requires 36 characters of external web storage (or less--whatever; point being a very small amount of constant data, not storage/bandwith that must scale dramatically with use), and it doesn't really have to be scripted or dynamic web server content (you can copy the key yourself when it changes and upload it to a static text file). This should easily allow you to use free hosting to get SOME of the benefits of a full external storage solution. I have been trying to do exactly this. I have the servers UUID stored and can retrieve it no problem but when I try to use it in the address of an email it doesn't seem to work. http_response(key request_id, integer status, list metadata, string body) { if (request_id == requestid) llOwnerSay(body); llEmail(body + "@lsl.secondlife.com", subject, message; } If instead I store my email username and change the code to reflect my email address it works. http_response(key request_id, integer status, list metadata, string body) { if (request_id == requestid) llOwnerSay(body); llEmail(body + "@myisp.com", subject, message; } I have tried storing [email]UUID@lsl.secondlife.com[/email] and changing the code to reflect that and it doesn't work either. What am I doing wrong?
_____________________
There are no stupid questions, just stupid people.
|
|
Hewee Zetkin
Registered User
Join date: 20 Jul 2006
Posts: 2,702
|
03-13-2008 23:12
From: Laurence Corleone What am I doing wrong? Hmm. Using buggy SL e-mail? Heh.  But really, I'm not sure. Maybe try e-mailing from different sims? Try from the one the server is in, try from a few others, try from mainland vs. private island. I haven't done much with in-world e-mail lately...for SOME reason.
|
|
Laurence Corleone
Registered User
Join date: 12 Oct 2006
Posts: 126
|
03-14-2008 05:37
I was able to make it work by storing and returning [email]UUID@lsl.secondlife.com[/email] which is just as easy, but just for curiosity's sake I would still like to know why it didn't work the other way 
_____________________
There are no stupid questions, just stupid people.
|