I’m doing my first steps with the TiddlyWiki Node.js version . Although it’s rather easy to set up a new wiki I found out that converting a single-file-Wiki could be tricky.
Using the command
tiddlywiki --load ./SingleWiki.html --savewikifolder ./NodeWiki
is doing all conversion very well, but when it comes to save the new wiki with the mechanism Node.js should provide, I got stuck.
Right after the conversion it tries to save to a local file, not to the server.
This is the tiddlywiki.info file:
{
"languages": [
"de-AT",
"de-DE"
],
"plugins": [
"tiddlywiki/codemirror",
"tiddlywiki/codemirror-mode-css",
"tiddlywiki/codemirror-mode-htmlmixed",
"tiddlywiki/codemirror-mode-javascript",
"tiddlywiki/codemirror-mode-xml",
"tiddlywiki/comments",
"tiddlywiki/filesystem",
"tiddlywiki/help",
"tiddlywiki/highlight",
"tiddlywiki/internals",
"tiddlywiki/menubar",
"tiddlywiki/railroad"
],
"themes": [
"tiddlywiki/snowwhite",
"tiddlywiki/vanilla"
]
}
Compared to the newly created Wiki it seems to miss a plugin,
"plugins": [
"tiddlywiki/tiddlyweb",
"tiddlywiki/filesystem",
"tiddlywiki/highlight",
],
→ "tiddlywiki/tiddlyweb"
But after I added the line to the plugins of the converted Wiki, several error messages were shown:
Get Status Error: XMLHttpRequest Error-Code: 404
Error receiving “skinny” Tiddler list: XMLHttpRequest Error-Code: 404
Sync error while processing save of ‘$:/StoryList’: XMLHttpRequest Error-Code: 404
The last one shows a counter which increases.
[edit]Just noticed that the second message also shows an increasing counter. Not as fast as the third message, but also increasing.[/edit]
I’m pretty sure that I’m only missing some more configuration lines to solve the problem. Maybe it has to do with the build-configuration, which the other (working) Wiki has. But I didn’t catch the point and reading the help didn’t helped me further, unfortunately.
Could someone please point me into the right direction?