Re: [tw5] Re: Re-installing TiddlyWiki

2019-10-02 Thread Adrian Holbrook
I have now followed all your instructions using the 
"example-settings-quick.json" and eventually worked out that I have to put 
my TiddlyWiki in a folder called webroot at the same level as the Tiddly 
server installation. I have done that and when I browse to 
http:\\127.0.0.1:8080 I get a page that has my Wiki but also has various 
other things. I am sorry if this is covered in the documentation but, as 
yet, i have not managed to find it.

There is a Login button. What do I do with this?  

There is also an upload file and create directory which I am assuming are 
there in case I want to add multiple Wikis in different directories. Is 
this correct?

Then there is a "Fix Putsaver Bookmarklet" and "Updated Put Saver" which I 
have clicked on but nothing seems to happen.

Finally I have made a folder in the same folder as the webroot folder and 
called it backups but I am not sure if this is correct and how I set up the 
backup process. 

I apologise for asking so many very basic questions and if you could point 
me to where the documentation covers them I would be very grateful. 

Thanks 

Adrian

On Saturday, September 7, 2019 at 5:27:09 AM UTC+1, Arlen Beiler wrote:
>
> Just thought I'd take a minute to chime in here. I apologize that 
> TiddlyServer appears so complex to get started with. I'm quite sure it is 
> much simpler than the other options you've mentioned above, especially IIS 
> and WebDAV. So here's how to get started. 
>
> https://github.com/Arlen22/TiddlyServer/releases/tag/2.1.3
>
> Open that page, and scroll down to the bottom. Download your source 
> archive zip or tar.gz, whichever you prefer. Here's a screenshot of what 
> I'm referring to.
>
> [image: Screenshot 2019-09-07 00.23.07.png]
>
> Extract it to an empty folder so you don't risk merging with an existing 
> folder. Once you extract it you can move it wherever you want it to be. 
>
> https://nodejs.org/en/
>
> Go to NodeJS.org and download the LTS version of Node, which currently is 
> 10.x, and install it on the computer you will be running TiddlyServer on. 
> It's pretty straightforward, and the default options should work fine. 
>
> You don't actually need to install the whole thing, you can also just 
> download a zip file and extract node.exe into the TiddlyServer folder to 
> make a portable install. Since you're working with IIS I'm sure you have 
> enough computer experience know what I'm talking about, but if I'm not 
> making myself clear, just install NodeJS like I described above. 
>
> Now, here's the part that most people find tricky. Copy 
> example-settings.json and name it settings.json. Then open it in your 
> favorite editor and read the comments in it. You can leave the comments 
> there, just uncomment one of the lines inside the bindInfo object according 
> to your particular use case. I'm guessing it would probably be the first or 
> second of the three options. Here's what it looks like.
>
>   "bindInfo": {
> // V V V V Uncomment one of the following V V V V 
>
> //bind to localhost only (you can specify any other ip address in 
> this array, and it will bind to all available addresses)
> // "bindAddress": ["127.0.0.1"],
>
> //bind to 0.0.0.0
> // "bindWildcard": true
>
> //workaround for android devices (bind to all available private ip 
> addresses on startup)
> // "bindWildcard": false, "bindAddress": ["192.168.0.0/16", "
> 10.0.0.0/8", "172.31.0.0/16"], "filterBindAddress": true,
>   },
>
> The entire documentation for the settings.json file is at 
> https://arlen22.github.io/tiddlyserver/docs/serverconfig.html and the 
> tree property is the first item on the page. Here's a really simple example 
> to get you started. 
>
> "tree": {
> "myfolder": "../personal",
> "workstuff": "../work",
> "user": "~/Desktop/random",
> "projects_group": {
> "tiddlyserver": "~/Desktop/Github/TiddlyServer",
> "material-theme": "~/Dropbox/Material Theme"
> }
> }
>
>
> And that's all there is to it. Once you have your settings.json file 
> setup, just run "node server.js" to start the server. 
>
> I made TiddlyServer simple because I want it to be simple for me to use 
> every day :) I'm just really bad at communicating that sometimes. 
>
> Hope that helps 
> Arlen
>
> On Mon, Jun 24, 2019 at 3:55 AM Adrian Holbrook  > wrote:
>
>> I thought I had sorted out my problems with saving TWs but I have had a 
>> few PC problems and after a complete reinstall I am back into trying to 
>> sort out the problem again. I cannot seem to get TWCloud to work now and I 
>> am thinking of trying out IIS and WebDAV. Can I still keep my TW files in 
>> my Dropbox folder on the PC or do I have to locate them on the C: Drive? My 
>> dropbox folder is located on a separate Hard Drive - not C:
>>
>> On Sunday, April 14, 2019 at 7:09:45 AM UTC+1, PMario wrote:
>>>
>>> Hi,
>>>
>>> since you use win10, WebDav could be an option. I did create 3 short 
>>> videos, how to activate it.
>>> How to use TiddlyWiki with IIS 

Re: [tw5] Re: Re-installing TiddlyWiki

2019-09-09 Thread Mohammad Rahmani
Thanks Arlen for your clarification!
I recommend to add this into your documentation site also!


Best wishes
Mohammad


On Mon, Sep 9, 2019 at 10:06 PM Arlen Beiler  wrote:

> You can put anything you want inside the webroot folder. Then set the tree
> property to the folder path. Relative paths are relative to the
> settings.json file, so "tree": "../webroot", would expect it one folder
> up.
>
> On Sat, Sep 7, 2019 at 9:24 AM Mohammad Rahmani <
> mohammad.rahm...@gmail.com> wrote:
>
>> Hi Arlen,
>>  Very clear explanation!
>> As a newbie in using Tiddlyserver what should go in webroot folder?
>> I followed your instruction step by step and I was successful to setup
>> Tiddlyserver, but then
>> I had nothing inside webroot!
>>
>> Furthermore, how about other wiki if I want to load them through
>> TiddlyServer?
>>
>> I am sure you have already given answer to all these questions, but as a
>> newbie I wish to follow up the instruction and be able to setup
>> TiddlyServer  + working Wikis.
>>
>>
>>
>>
>> Best wishes
>> Mohammad
>>
>>
>> On Sat, Sep 7, 2019 at 8:57 AM Arlen Beiler  wrote:
>>
>>> Just thought I'd take a minute to chime in here. I apologize that
>>> TiddlyServer appears so complex to get started with. I'm quite sure it is
>>> much simpler than the other options you've mentioned above, especially IIS
>>> and WebDAV. So here's how to get started.
>>>
>>> https://github.com/Arlen22/TiddlyServer/releases/tag/2.1.3
>>>
>>> Open that page, and scroll down to the bottom. Download your source
>>> archive zip or tar.gz, whichever you prefer. Here's a screenshot of what
>>> I'm referring to.
>>>
>>> [image: Screenshot 2019-09-07 00.23.07.png]
>>>
>>> Extract it to an empty folder so you don't risk merging with an existing
>>> folder. Once you extract it you can move it wherever you want it to be.
>>>
>>> https://nodejs.org/en/
>>>
>>> Go to NodeJS.org and download the LTS version of Node, which currently
>>> is 10.x, and install it on the computer you will be running TiddlyServer
>>> on. It's pretty straightforward, and the default options should work fine.
>>>
>>> You don't actually need to install the whole thing, you can also just
>>> download a zip file and extract node.exe into the TiddlyServer folder to
>>> make a portable install. Since you're working with IIS I'm sure you have
>>> enough computer experience know what I'm talking about, but if I'm not
>>> making myself clear, just install NodeJS like I described above.
>>>
>>> Now, here's the part that most people find tricky. Copy
>>> example-settings.json and name it settings.json. Then open it in your
>>> favorite editor and read the comments in it. You can leave the comments
>>> there, just uncomment one of the lines inside the bindInfo object according
>>> to your particular use case. I'm guessing it would probably be the first or
>>> second of the three options. Here's what it looks like.
>>>
>>>   "bindInfo": {
>>> // V V V V Uncomment one of the following V V V V
>>>
>>> //bind to localhost only (you can specify any other ip address in
>>> this array, and it will bind to all available addresses)
>>> // "bindAddress": ["127.0.0.1"],
>>>
>>> //bind to 0.0.0.0
>>> // "bindWildcard": true
>>>
>>> //workaround for android devices (bind to all available private ip
>>> addresses on startup)
>>> // "bindWildcard": false, "bindAddress": ["192.168.0.0/16", "
>>> 10.0.0.0/8", "172.31.0.0/16"], "filterBindAddress": true,
>>>   },
>>>
>>> The entire documentation for the settings.json file is at
>>> https://arlen22.github.io/tiddlyserver/docs/serverconfig.html and the
>>> tree property is the first item on the page. Here's a really simple example
>>> to get you started.
>>>
>>> "tree": {
>>> "myfolder": "../personal",
>>> "workstuff": "../work",
>>> "user": "~/Desktop/random",
>>> "projects_group": {
>>> "tiddlyserver": "~/Desktop/Github/TiddlyServer",
>>> "material-theme": "~/Dropbox/Material Theme"
>>> }
>>> }
>>>
>>>
>>> And that's all there is to it. Once you have your settings.json file
>>> setup, just run "node server.js" to start the server.
>>>
>>> I made TiddlyServer simple because I want it to be simple for me to use
>>> every day :) I'm just really bad at communicating that sometimes.
>>>
>>> Hope that helps
>>> Arlen
>>>
>>> On Mon, Jun 24, 2019 at 3:55 AM Adrian Holbrook <
>>> adrian.holbr...@gmail.com> wrote:
>>>
 I thought I had sorted out my problems with saving TWs but I have had a
 few PC problems and after a complete reinstall I am back into trying to
 sort out the problem again. I cannot seem to get TWCloud to work now and I
 am thinking of trying out IIS and WebDAV. Can I still keep my TW files in
 my Dropbox folder on the PC or do I have to locate them on the C: Drive? My
 dropbox folder is located on a separate Hard Drive - not C:

 On Sunday, April 14, 2019 at 7:09:45 AM UTC+1, PMario wrote:
>
> Hi,
>
> since you use win10, WebDav could be an option. I 

Re: [tw5] Re: Re-installing TiddlyWiki

2019-09-09 Thread Arlen Beiler
You can put anything you want inside the webroot folder. Then set the tree
property to the folder path. Relative paths are relative to the
settings.json file, so "tree": "../webroot", would expect it one folder up.

On Sat, Sep 7, 2019 at 9:24 AM Mohammad Rahmani 
wrote:

> Hi Arlen,
>  Very clear explanation!
> As a newbie in using Tiddlyserver what should go in webroot folder?
> I followed your instruction step by step and I was successful to setup
> Tiddlyserver, but then
> I had nothing inside webroot!
>
> Furthermore, how about other wiki if I want to load them through
> TiddlyServer?
>
> I am sure you have already given answer to all these questions, but as a
> newbie I wish to follow up the instruction and be able to setup
> TiddlyServer  + working Wikis.
>
>
>
>
> Best wishes
> Mohammad
>
>
> On Sat, Sep 7, 2019 at 8:57 AM Arlen Beiler  wrote:
>
>> Just thought I'd take a minute to chime in here. I apologize that
>> TiddlyServer appears so complex to get started with. I'm quite sure it is
>> much simpler than the other options you've mentioned above, especially IIS
>> and WebDAV. So here's how to get started.
>>
>> https://github.com/Arlen22/TiddlyServer/releases/tag/2.1.3
>>
>> Open that page, and scroll down to the bottom. Download your source
>> archive zip or tar.gz, whichever you prefer. Here's a screenshot of what
>> I'm referring to.
>>
>> [image: Screenshot 2019-09-07 00.23.07.png]
>>
>> Extract it to an empty folder so you don't risk merging with an existing
>> folder. Once you extract it you can move it wherever you want it to be.
>>
>> https://nodejs.org/en/
>>
>> Go to NodeJS.org and download the LTS version of Node, which currently is
>> 10.x, and install it on the computer you will be running TiddlyServer on.
>> It's pretty straightforward, and the default options should work fine.
>>
>> You don't actually need to install the whole thing, you can also just
>> download a zip file and extract node.exe into the TiddlyServer folder to
>> make a portable install. Since you're working with IIS I'm sure you have
>> enough computer experience know what I'm talking about, but if I'm not
>> making myself clear, just install NodeJS like I described above.
>>
>> Now, here's the part that most people find tricky. Copy
>> example-settings.json and name it settings.json. Then open it in your
>> favorite editor and read the comments in it. You can leave the comments
>> there, just uncomment one of the lines inside the bindInfo object according
>> to your particular use case. I'm guessing it would probably be the first or
>> second of the three options. Here's what it looks like.
>>
>>   "bindInfo": {
>> // V V V V Uncomment one of the following V V V V
>>
>> //bind to localhost only (you can specify any other ip address in
>> this array, and it will bind to all available addresses)
>> // "bindAddress": ["127.0.0.1"],
>>
>> //bind to 0.0.0.0
>> // "bindWildcard": true
>>
>> //workaround for android devices (bind to all available private ip
>> addresses on startup)
>> // "bindWildcard": false, "bindAddress": ["192.168.0.0/16", "
>> 10.0.0.0/8", "172.31.0.0/16"], "filterBindAddress": true,
>>   },
>>
>> The entire documentation for the settings.json file is at
>> https://arlen22.github.io/tiddlyserver/docs/serverconfig.html and the
>> tree property is the first item on the page. Here's a really simple example
>> to get you started.
>>
>> "tree": {
>> "myfolder": "../personal",
>> "workstuff": "../work",
>> "user": "~/Desktop/random",
>> "projects_group": {
>> "tiddlyserver": "~/Desktop/Github/TiddlyServer",
>> "material-theme": "~/Dropbox/Material Theme"
>> }
>> }
>>
>>
>> And that's all there is to it. Once you have your settings.json file
>> setup, just run "node server.js" to start the server.
>>
>> I made TiddlyServer simple because I want it to be simple for me to use
>> every day :) I'm just really bad at communicating that sometimes.
>>
>> Hope that helps
>> Arlen
>>
>> On Mon, Jun 24, 2019 at 3:55 AM Adrian Holbrook <
>> adrian.holbr...@gmail.com> wrote:
>>
>>> I thought I had sorted out my problems with saving TWs but I have had a
>>> few PC problems and after a complete reinstall I am back into trying to
>>> sort out the problem again. I cannot seem to get TWCloud to work now and I
>>> am thinking of trying out IIS and WebDAV. Can I still keep my TW files in
>>> my Dropbox folder on the PC or do I have to locate them on the C: Drive? My
>>> dropbox folder is located on a separate Hard Drive - not C:
>>>
>>> On Sunday, April 14, 2019 at 7:09:45 AM UTC+1, PMario wrote:

 Hi,

 since you use win10, WebDav could be an option. I did create 3 short
 videos, how to activate it.
 How to use TiddlyWiki with IIS and WebDAV
 

 have fun!
 mario

 --
>>> You received this message because you are subscribed to the Google
>>> Groups "TiddlyWiki" group.
>>> To 

Re: [tw5] Re: Re-installing TiddlyWiki

2019-09-07 Thread Mohammad Rahmani
Hi Arlen,
 Very clear explanation!
As a newbie in using Tiddlyserver what should go in webroot folder?
I followed your instruction step by step and I was successful to setup
Tiddlyserver, but then
I had nothing inside webroot!

Furthermore, how about other wiki if I want to load them through
TiddlyServer?

I am sure you have already given answer to all these questions, but as a
newbie I wish to follow up the instruction and be able to setup
TiddlyServer  + working Wikis.




Best wishes
Mohammad


On Sat, Sep 7, 2019 at 8:57 AM Arlen Beiler  wrote:

> Just thought I'd take a minute to chime in here. I apologize that
> TiddlyServer appears so complex to get started with. I'm quite sure it is
> much simpler than the other options you've mentioned above, especially IIS
> and WebDAV. So here's how to get started.
>
> https://github.com/Arlen22/TiddlyServer/releases/tag/2.1.3
>
> Open that page, and scroll down to the bottom. Download your source
> archive zip or tar.gz, whichever you prefer. Here's a screenshot of what
> I'm referring to.
>
> [image: Screenshot 2019-09-07 00.23.07.png]
>
> Extract it to an empty folder so you don't risk merging with an existing
> folder. Once you extract it you can move it wherever you want it to be.
>
> https://nodejs.org/en/
>
> Go to NodeJS.org and download the LTS version of Node, which currently is
> 10.x, and install it on the computer you will be running TiddlyServer on.
> It's pretty straightforward, and the default options should work fine.
>
> You don't actually need to install the whole thing, you can also just
> download a zip file and extract node.exe into the TiddlyServer folder to
> make a portable install. Since you're working with IIS I'm sure you have
> enough computer experience know what I'm talking about, but if I'm not
> making myself clear, just install NodeJS like I described above.
>
> Now, here's the part that most people find tricky. Copy
> example-settings.json and name it settings.json. Then open it in your
> favorite editor and read the comments in it. You can leave the comments
> there, just uncomment one of the lines inside the bindInfo object according
> to your particular use case. I'm guessing it would probably be the first or
> second of the three options. Here's what it looks like.
>
>   "bindInfo": {
> // V V V V Uncomment one of the following V V V V
>
> //bind to localhost only (you can specify any other ip address in
> this array, and it will bind to all available addresses)
> // "bindAddress": ["127.0.0.1"],
>
> //bind to 0.0.0.0
> // "bindWildcard": true
>
> //workaround for android devices (bind to all available private ip
> addresses on startup)
> // "bindWildcard": false, "bindAddress": ["192.168.0.0/16", "
> 10.0.0.0/8", "172.31.0.0/16"], "filterBindAddress": true,
>   },
>
> The entire documentation for the settings.json file is at
> https://arlen22.github.io/tiddlyserver/docs/serverconfig.html and the
> tree property is the first item on the page. Here's a really simple example
> to get you started.
>
> "tree": {
> "myfolder": "../personal",
> "workstuff": "../work",
> "user": "~/Desktop/random",
> "projects_group": {
> "tiddlyserver": "~/Desktop/Github/TiddlyServer",
> "material-theme": "~/Dropbox/Material Theme"
> }
> }
>
>
> And that's all there is to it. Once you have your settings.json file
> setup, just run "node server.js" to start the server.
>
> I made TiddlyServer simple because I want it to be simple for me to use
> every day :) I'm just really bad at communicating that sometimes.
>
> Hope that helps
> Arlen
>
> On Mon, Jun 24, 2019 at 3:55 AM Adrian Holbrook 
> wrote:
>
>> I thought I had sorted out my problems with saving TWs but I have had a
>> few PC problems and after a complete reinstall I am back into trying to
>> sort out the problem again. I cannot seem to get TWCloud to work now and I
>> am thinking of trying out IIS and WebDAV. Can I still keep my TW files in
>> my Dropbox folder on the PC or do I have to locate them on the C: Drive? My
>> dropbox folder is located on a separate Hard Drive - not C:
>>
>> On Sunday, April 14, 2019 at 7:09:45 AM UTC+1, PMario wrote:
>>>
>>> Hi,
>>>
>>> since you use win10, WebDav could be an option. I did create 3 short
>>> videos, how to activate it.
>>> How to use TiddlyWiki with IIS and WebDAV
>>> 
>>>
>>> have fun!
>>> mario
>>>
>>> --
>> You received this message because you are subscribed to the Google Groups
>> "TiddlyWiki" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to tiddlywiki+unsubscr...@googlegroups.com.
>> To post to this group, send email to tiddlywiki@googlegroups.com.
>> Visit this group at https://groups.google.com/group/tiddlywiki.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/tiddlywiki/53aca5d8-ecf6-48da-aef9-f96aa98fd483%40googlegroups.com
>> 

Re: [tw5] Re: Re-installing TiddlyWiki

2019-09-07 Thread TonyM
Arlen

Than you for this helpful documentation. A quick point is however at least 
windows users will be unfamiliar with the use of tilde ~ in the paths. Could 
you add something to explain that and a note that ../ refers to the folder 
above or parent folder relative the where tiddlyserver is installed.

Regards
Tony

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/04e7eb57-9494-483d-951b-84f1be97574d%40googlegroups.com.


Re: [tw5] Re: Re-installing TiddlyWiki

2019-09-06 Thread Arlen Beiler
Just thought I'd take a minute to chime in here. I apologize that
TiddlyServer appears so complex to get started with. I'm quite sure it is
much simpler than the other options you've mentioned above, especially IIS
and WebDAV. So here's how to get started.

https://github.com/Arlen22/TiddlyServer/releases/tag/2.1.3

Open that page, and scroll down to the bottom. Download your source archive
zip or tar.gz, whichever you prefer. Here's a screenshot of what I'm
referring to.

[image: Screenshot 2019-09-07 00.23.07.png]

Extract it to an empty folder so you don't risk merging with an existing
folder. Once you extract it you can move it wherever you want it to be.

https://nodejs.org/en/

Go to NodeJS.org and download the LTS version of Node, which currently is
10.x, and install it on the computer you will be running TiddlyServer on.
It's pretty straightforward, and the default options should work fine.

You don't actually need to install the whole thing, you can also just
download a zip file and extract node.exe into the TiddlyServer folder to
make a portable install. Since you're working with IIS I'm sure you have
enough computer experience know what I'm talking about, but if I'm not
making myself clear, just install NodeJS like I described above.

Now, here's the part that most people find tricky. Copy
example-settings.json and name it settings.json. Then open it in your
favorite editor and read the comments in it. You can leave the comments
there, just uncomment one of the lines inside the bindInfo object according
to your particular use case. I'm guessing it would probably be the first or
second of the three options. Here's what it looks like.

  "bindInfo": {
// V V V V Uncomment one of the following V V V V

//bind to localhost only (you can specify any other ip address in this
array, and it will bind to all available addresses)
// "bindAddress": ["127.0.0.1"],

//bind to 0.0.0.0
// "bindWildcard": true

//workaround for android devices (bind to all available private ip
addresses on startup)
// "bindWildcard": false, "bindAddress": ["192.168.0.0/16", "10.0.0.0/8",
"172.31.0.0/16"], "filterBindAddress": true,
  },

The entire documentation for the settings.json file is at
https://arlen22.github.io/tiddlyserver/docs/serverconfig.html and the tree
property is the first item on the page. Here's a really simple example to
get you started.

"tree": {
"myfolder": "../personal",
"workstuff": "../work",
"user": "~/Desktop/random",
"projects_group": {
"tiddlyserver": "~/Desktop/Github/TiddlyServer",
"material-theme": "~/Dropbox/Material Theme"
}
}


And that's all there is to it. Once you have your settings.json file setup,
just run "node server.js" to start the server.

I made TiddlyServer simple because I want it to be simple for me to use
every day :) I'm just really bad at communicating that sometimes.

Hope that helps
Arlen

On Mon, Jun 24, 2019 at 3:55 AM Adrian Holbrook 
wrote:

> I thought I had sorted out my problems with saving TWs but I have had a
> few PC problems and after a complete reinstall I am back into trying to
> sort out the problem again. I cannot seem to get TWCloud to work now and I
> am thinking of trying out IIS and WebDAV. Can I still keep my TW files in
> my Dropbox folder on the PC or do I have to locate them on the C: Drive? My
> dropbox folder is located on a separate Hard Drive - not C:
>
> On Sunday, April 14, 2019 at 7:09:45 AM UTC+1, PMario wrote:
>>
>> Hi,
>>
>> since you use win10, WebDav could be an option. I did create 3 short
>> videos, how to activate it.
>> How to use TiddlyWiki with IIS and WebDAV
>> 
>>
>> have fun!
>> mario
>>
>> --
> You received this message because you are subscribed to the Google Groups
> "TiddlyWiki" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to tiddlywiki+unsubscr...@googlegroups.com.
> To post to this group, send email to tiddlywiki@googlegroups.com.
> Visit this group at https://groups.google.com/group/tiddlywiki.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/tiddlywiki/53aca5d8-ecf6-48da-aef9-f96aa98fd483%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/CAJ1vdSTJMCJAp41-Tu36uL_yDd38_KY6k2AUTF9WJRcK54tWMA%40mail.gmail.com.


[tw5] Re: Re-installing TiddlyWiki

2019-06-24 Thread PMario
Hi, 

On Monday, June 24, 2019 at 9:55:56 AM UTC+2, Adrian Holbrook wrote:

> ...
>
 

> now and I am thinking of trying out IIS and WebDAV. Can I still keep my TW 
> files in my Dropbox folder on the PC or do I have to locate them on the C: 
> Drive? My dropbox folder is located on a separate Hard Drive - not C:
>

It is possible to configure the WebDav folder, that contains the wiki file. 
... BUT I didn't try it in combination with dropbox. ... 

-mario

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/b80cce9c-c19f-4415-b331-ef3280eaef0a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw5] Re: Re-installing TiddlyWiki

2019-06-24 Thread Adrian Holbrook
I thought I had sorted out my problems with saving TWs but I have had a few 
PC problems and after a complete reinstall I am back into trying to sort 
out the problem again. I cannot seem to get TWCloud to work now and I am 
thinking of trying out IIS and WebDAV. Can I still keep my TW files in my 
Dropbox folder on the PC or do I have to locate them on the C: Drive? My 
dropbox folder is located on a separate Hard Drive - not C:

On Sunday, April 14, 2019 at 7:09:45 AM UTC+1, PMario wrote:
>
> Hi,
>
> since you use win10, WebDav could be an option. I did create 3 short 
> videos, how to activate it.
> How to use TiddlyWiki with IIS and WebDAV 
> 
>
> have fun!
> mario
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/53aca5d8-ecf6-48da-aef9-f96aa98fd483%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw5] Re: Re-installing TiddlyWiki

2019-04-14 Thread Adrian Holbrook
Thanks again for all the suggestions. I have now implemented TWCloud and it 
seems to be working from an initial look. Will need to see if all the 
features work but since I have all my files and images in one directory I 
am hopeful.

Regards

Adrian

On Saturday, April 13, 2019 at 11:32:51 AM UTC+1, Adrian Holbrook wrote:
>
> I have used TiddlyWiki for the last couple of years with no major 
> problems. Unfortunately my PC died the other day and I am in the process of 
> reinstalling all my software. I blithely assumed that I could download 
> FireFox and install TiddlyFox and evetything would be OK. It wasn't. I have 
> now read reams of discussion about the problems with FireFox after 57 and 
> with suggestions about getting around this with a multitude of different 
> platforms, addins etc. I just want to get the simplest way to get my 
> Tiddlers back and be able to continue using TiddlyWiki. I use Windows 10. 
> Can someone tell me what the best, least complicated way forward for 
> someone without a degree in computer science?
>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/26edcbe7-38b7-47d9-8103-4af1ab6ccef1%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw5] Re: Re-installing TiddlyWiki

2019-04-14 Thread PMario
 Hi,

since you use win10, WebDav could be an option. I did create 3 short 
videos, how to activate it.
How to use TiddlyWiki with IIS and WebDAV 


have fun!
mario

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/9029cb36-dec3-4e92-918b-9b3ba1ed3c4b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw5] Re: Re-installing TiddlyWiki

2019-04-13 Thread Birthe C
Having your files on Dropbox you could try https://twcloud.github.io/ from 
Arlen Beiler. Very easy to use.


Birthe


lørdag den 13. april 2019 kl. 22.26.23 UTC+2 skrev Adrian Holbrook:
>
>
> Thanks for all the suggestions. They all seem to have 
> advantages/disadvantages. I currently keep my files on Dropbox so I could 
> change this and use Google drive instead and use tiddlydrive but PMarios 
> solution seems to be simpler but a bit put off by having to keep the files 
> in my download directory! I was thinking of using Tiddlyserver but when I 
> went on the download site was a bit confused by all the different versions. 
> Also it seemed quite involved to set up! At least I have a few options to 
> explore!
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/ac9c6ba0-4f77-44ff-ba8e-62d3b23bd50f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw5] Re: Re-installing TiddlyWiki

2019-04-13 Thread 'Mark S.' via TiddlyWiki

Yes, none of the choices we have today are as simple as two years ago. But 
don't we all feel so much more secure now, now that we don't have about 
10,000 of our favourite FF extensions? (what's the emoji for extreme 
sarcasm ?)

On Arlen's site, the link you want is:

https://github.com/Arlen22/TiddlyServer/archive/2.0.14-fixed.zip

-- Mark

On Saturday, April 13, 2019 at 1:26:23 PM UTC-7, Adrian Holbrook wrote:
>
>
> Thanks for all the suggestions. They all seem to have 
> advantages/disadvantages. I currently keep my files on Dropbox so I could 
> change this and use Google drive instead and use tiddlydrive but PMarios 
> solution seems to be simpler but a bit put off by having to keep the files 
> in my download directory! I was thinking of using Tiddlyserver but when I 
> went on the download site was a bit confused by all the different versions. 
> Also it seemed quite involved to set up! At least I have a few options to 
> explore!
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/0efb36d3-884f-4e9e-9b3e-3c5902f5297f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw5] Re: Re-installing TiddlyWiki

2019-04-13 Thread Jed Carty
You could try Bob, if you get the BobEXE version you just start it and it 
works. https://github.com/OokTech/TW5-BobEXE/releases/tag/1.2.2r6

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/6ab1bb2b-e811-4c09-a93e-60c966995cfa%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw5] Re: Re-installing TiddlyWiki

2019-04-13 Thread Adrian Holbrook

Thanks for all the suggestions. They all seem to have 
advantages/disadvantages. I currently keep my files on Dropbox so I could 
change this and use Google drive instead and use tiddlydrive but PMarios 
solution seems to be simpler but a bit put off by having to keep the files 
in my download directory! I was thinking of using Tiddlyserver but when I 
went on the download site was a bit confused by all the different versions. 
Also it seemed quite involved to set up! At least I have a few options to 
explore!

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/50557e88-6307-40f4-b084-f1dcb5a9b696%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw5] Re: Re-installing TiddlyWiki

2019-04-13 Thread PMario
On Saturday, April 13, 2019 at 7:33:17 PM UTC+2, Mark S. wrote:
>
> If you don't mind putting your tw file in a download directory or 
> sub-directory, then Pmario's file-backup add-on is the way to go.


Here's the link: 
https://addons.mozilla.org/en-US/firefox/addon/file-backups/ .. There is 
video-link in the info. 

have fun!
mario

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/8c9d0ac2-bb18-4345-99b6-34b6c3e0aaf3%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw5] Re: Re-installing TiddlyWiki

2019-04-13 Thread passingby
I loved timmimi but it stopped supporting chrome, which I use, so now I use 
tiddlydrive. You have to add the tiddlydrive app to your google drive and 
then open a tiddlywiki stored in your google drive with tiddlydrive. This 
all has to be done in a browser and the file would open in a new tab, you 
could work on it and it would be automatically saved back to the location 
in google drive. So how this would work is:

1. Have a google drive account (you need not install google drive app on 
your local hard disk. You could just have it online)
2. Install tiddlydrive app to your google drive. I can't remember the exact 
steps but it can be found easily, just search,
3. Upload your tiddlywiki in your google drive
4. Access your google drive in the browser
5. Right click on the TW and choose Open with > Tiddlydrive.
6. It will ask for permissions, give them. 
7. The file shall open via tiddlydrive and you can work on it. It can be 
saved back to the original location. It can be set to be done automatically.



On Saturday, April 13, 2019 at 3:32:51 AM UTC-7, Adrian Holbrook wrote:
>
> I have used TiddlyWiki for the last couple of years with no major 
> problems. Unfortunately my PC died the other day and I am in the process of 
> reinstalling all my software. I blithely assumed that I could download 
> FireFox and install TiddlyFox and evetything would be OK. It wasn't. I have 
> now read reams of discussion about the problems with FireFox after 57 and 
> with suggestions about getting around this with a multitude of different 
> platforms, addins etc. I just want to get the simplest way to get my 
> Tiddlers back and be able to continue using TiddlyWiki. I use Windows 10. 
> Can someone tell me what the best, least complicated way forward for 
> someone without a degree in computer science?
>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/1860a34a-9a4e-4d3d-a5dc-6ec2d30526c1%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.