Jump to content

LogenOne

Resident
  • Posts

    8
  • Joined

  • Last visited

Everything posted by LogenOne

  1. I starting my first account in 2007 and have played for 11 years. I am kind frustrated these days about the lack of any one reading or looking in the folders when they buy things. I have known of this issue for years and it's not new I know, but it seems worst then ever these days. I sell a simple mermaid AO and in the box I offer a free single prim meter that has 0 set outside of wearing it. It simply awards points for visiting water Sims or being in the SL ocean (active), I give out a cash prizes at the end of each month last one 10,000L$. I sell a fair amount of AOs a day meaning I should see many people trying out the free meter included in the box, last month I had 4 people out of 400 buyers in a months time take part of the contest that I gave away 10,000L$ .This month only 5 people are using the HUD keep in mind so far this month 140 people have bought the AO , I can see in my websites database the names and scores of the players on a daily log in.I have a website, have events, a huge free ocean place to visit and yet no one seems to have any intrust in wearing a free,single, no set up object to posibly win some great prizes. I can only figure no one reads the adds or the notecards at all any more and they do not even know what their missing out on.Also the meter dose not send marketing adds or messages and its a simple star fish prim you wear ...has It come to a point you can not even offer a prize 10,000L$ to get any one to read a notecard after they already spend their money on a product.So confused these days...
  2. We looking for players that enjoy mermaid activities to try our free mermaid meter we give away in the mermaid AO we sell on the marketplace, live music events Aug 31st as well as a top mermaid EX meter points 10,000L$ give away.More information at www.sltreeoflife.info you can find the meter at https://marketplace.secondlife.com/p/Sea-Treats-Mermaid-AO/4306454
  3. Beta tester and proud! Nothing like any other game in SL!
  4. Market place is a sea of the same clothing designer kits in different colors or textures.I stopped shopping years ago and only wear what I make and only sell a very few so my av is unique looking.That was done out of force as I use too enjoy shopping, but hate the wild goose chase it has become.
  5. ohhhh Shiny things.....
  6. I placed it in a text file named testpage.php. I got the information from http://wiki.secondlife.com/wiki/HTTP_Post_request_to_a_PHP_server. but i get a failed meg error when I open the link,from what i understaood it should have typed the listt data from the in world prim to the sites php page, but it just fails msg every time,any clue where i can learn to simple send object uuids to a php page and have them print it inthe body of that page?
  7. I am trying to make a php page I can send simple object uuids too. For testig I made a prim with this inside integer SECRET_NUMBER=69; string SECRET_STRING="**bleep**"; key http_request_id; list uu; xrequest(string url, list l) { integer i; string body; integer len=llGetListLength(l) & 0xFFFE; // make it even for (i=0;i<len;i+=2) { string varname=llList2String(l,i); string varvalue=llList2String(l,i + 1); if (i>0) body+="&"; body+=llEscapeURL(varname)+"="+llEscapeURL(varvalue); } string hash=llMD5String(body+llEscapeURL(SECRET_STRING),SECRET_NUMBER); http_request_id = llHTTPRequest(url+"?hash="+hash,[HTTP_METHOD,"POST",HTTP_MIMETYPE,"application/x-www-form-urlencoded"],body); } default { state_entry() { } touch_start(integer total_number) { xrequest(" site url",["testpage.php",123,"test","2"]); } } I Edit the site url as I do not want any one to see the location atm . I used this file in my severs main html folder where i store my normal site info. <?php // this function tweak slightly urlencode to make it behave exactly like llEscapeURL in Second Life. function llEscapeURL($s) { $s=str_replace( array(" ","+","-",".","_"), array("%20","%20","%2D","%2E","%5F"), urlencode($s)); return $s; } // this my main SL page XML-RPC page function checkHash() { global $body; $hash=$_GET["hash"]; $body=""; $cpt=0; $SECRET_NUMBER=123456789; $SECRET_STRING="abcdefghi"; foreach ($_POST as $name => $value) { if ($cpt++>0) $body.="&"; if (get_magic_quotes_gpc()) { // $name = stripslashes($name); not a good idea though $value = stripslashes($value); $_POST[$name]=$value; } $body.=llEscapeURL($name)."=".llEscapeURL($value); } $calcHash=md5($body.$SECRET_STRING.':'.$SECRET_NUMBER); if ($hash!=$calcHash) { sleep(2); // slow down the requests echo "result=FAIL\nMSG=Invalid request."; die; } } checkHash(); // You can use the parameters here by simply using $_POST["parameter_name"] echo "OK"; ?>
×
×
  • Create New...