Hi Mynor If you want to use TiddlyWiki5 with serverside saving there are two options:
1) Use a server that provides a TiddlyWeb-compatible HTTP interface for storing and retrieving individual tiddlers. TiddlyWeb itself is written (mostly) in Python, and there is also a compatible implementation within TiddlyWiki5 itself. The TW5 server is written to store data to the file system, but it certainly could be extended to store data in MySQL. It would be also be possible to write PHP code that implements this TiddlyWeb-compatible interface. 2) Alternatively, TiddlyWiki5 can save the entire HTML file back to the server when using an UploadPlugin-compatible server such as TiddlySpot. (The PHP script required by the UploadPlugin is here: http://tiddlywiki.bidix.info/#store.php). Going down this route means that whenever you save changes the entire file containing all tiddlers is transmitted back to the server, which can give poor performance. The advantage is that the serverside code is much simpler than in the first case. TiddlyWiki is presented as a self-contained application, and isn't currently packaged in a form that makes it easy to embed as a component in other applications. But, at it's heart it's just a JS library and it could be incorporated into another application. Best wishes Jeremy On Wed, Jul 24, 2013 at 11:47 PM, Mynor Perez <[email protected]> wrote: > I just came across this, and I'd like to know if node.js is the only way > to save the tiddlers. I would like to integrate this onto a note taking > website I want to create but I'd just have to style it differently. Is it > possible to use this in conjunction with MySQL database? I've been trying > to figure out the note taking with php but I'd like to use this and it > seems I need to use js. How do I go about using this and plugging it into a > separate site? I was just confused on the site and I downloaded the demos > but my tiddllers dont save. > > -- > You received this message because you are subscribed to the Google Groups > "TiddlyWikiDev" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To post to this group, send email to [email protected]. > Visit this group at http://groups.google.com/group/tiddlywikidev. > For more options, visit https://groups.google.com/groups/opt_out. > > > -- Jeremy Ruston mailto:[email protected] -- You received this message because you are subscribed to the Google Groups "TiddlyWikiDev" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/tiddlywikidev. For more options, visit https://groups.google.com/groups/opt_out.
