|
Donkixotis Mastroianni
Registered User
Join date: 18 May 2007
Posts: 3
|
11-07-2007 05:56
Hi all...
i know i am a newbie and blablabla...
i really need one tip if possible...
i want to know if it is possible to have a wall that visitors can add comments or a feedback of the place and exportit to a database or wiki on the internet...
does anyone know how to do it \???
how can this be done???
thanks a lot in advance
|
|
nand Nerd
Flexi Fanatic
Join date: 4 Oct 2005
Posts: 427
|
11-07-2007 06:58
It certainly can be done, I for one have a guestbook people can sign from my location in-world and the entries can be read from the same object or from a webpage. I have also seen scripted bulletin board objects which allow people to leave behind a message though I've never investigated them.
If you are looking to script your own the most important part is how to store the data. In my case this is an outside webserver with PHP and MySQL using HTTPRequest (llHTTPReques) for communications. Other options involve storing the data in scripts and manually transferring them into notecards for long-term storage. With this option you need to be wary of your scripts memory limits.
In addition to that you'll need an interface with which to leave the message, either a listen (llListen, listen() event) or a notecard (llGetNotecardLine, dataserver() event), together with some filtering.
Leaving these messages wouldn't make sense unless there was some way to review them so you'll need an output too, be it chat (llSay, llWhisper etc), SetText (llSetText), xyText (search these forums) or a web-based viewer. You would also need an interface by which to navigate through the entries, this could be some touch buttons or a dialog box (llDialog).
This would be a large task for someone fresh to scripting unless they had a firm grounding in another programming language (and some PHP/MySQL knowledge if going down that route). I would recommend searching for a pre-built/scripted system for sale or perhaps an open source or freebie system on which to build your own.
_____________________
www.nandnerd.info http://ordinalmalaprop.com/forum - Ordinal Malaprop's Scripting Forum
|
|
Tyken Hightower
Automagical
Join date: 15 Feb 2006
Posts: 472
|
11-07-2007 07:07
From: nand Nerd It certainly can be done, I for one have a guestbook people can sign from my location in-world and the entries can be read from the same object or from a webpage. I have also seen scripted bulletin board objects which allow people to leave behind a message though I've never investigated them.
If you are looking to script your own the most important part is how to store the data. In my case this is an outside webserver with PHP and MySQL using HTTPRequest (llHTTPReques) for communications. Other options involve storing the data in scripts and manually transferring them into notecards for long-term storage. With this option you need to be wary of your scripts memory limits.
In addition to that you'll need an interface with which to leave the message, either a listen (llListen, listen() event) or a notecard (llGetNotecardLine, dataserver() event), together with some filtering.
Leaving these messages wouldn't make sense unless there was some way to review them so you'll need an output too, be it chat (llSay, llWhisper etc), SetText (llSetText), xyText (search these forums) or a web-based viewer. You would also need an interface by which to navigate through the entries, this could be some touch buttons or a dialog box (llDialog).
This would be a large task for someone fresh to scripting unless they had a firm grounding in another programming language (and some PHP/MySQL knowledge if going down that route). I would recommend searching for a pre-built/scripted system for sale or perhaps an open source or freebie system on which to build your own. Less complicated: send out emails of each comment. As far as displaying them, it's simple to do llSetText or use something similar to show maybe the past few entries. Retrieving all of them gets hard.
|
|
Talia Beery
Registered User
Join date: 10 Feb 2008
Posts: 2
|
05-23-2008 18:38
From: Tyken Hightower Less complicated: send out emails of each comment.
As far as displaying them, it's simple to do llSetText or use something similar to show maybe the past few entries. Retrieving all of them gets hard. OK, so, I found this thread and am using the script on the page: /54/49/123025/1.htmlHOWEVER, I know nothing about scripting, and currently, it only sends an email rather than letting guests view the entries in-world. Any help would be much appreciated. Again, please, bear in mind, I know NOTHING about scripting.
|