> i'd like to be able to export the tiddlers
> as an actual file on my webhost. can i
> do this SaveTiddlerToFile?
nope. SaveTiddlerToFile uses **filesystem** functions to directly
read/write to your local hard drive. To do something similar for
server-side storage simply cannot occur without some kind of *server-
side script* functionality to which the data can be sent.
That is what SendTiddlerPlugin does... it packages up the tiddler data
as an http:// POST message that it sends to a server-side script for
remote storage. Without such a script, there is nothing on the server-
side to 'catch' the data.
Still, there may be a way for you to use SendTiddlerPlugin, even
though you don't know how to program the server-side: it *might* be
possible to use the "store.php" script from BidiX's UploadPlugin as
the remote 'catcher' for SendTiddlerPlugin... IF we can figure out the
proper SendTiddlerConfig definition to feed to BidiX's script...
-e