Re: [tw5] setting up tiddlywiki with save working on Apache

2018-08-09 Thread Ivan Aparicio
I've attached the file

On Wednesday, August 8, 2018 at 3:23:07 PM UTC+1, Lost Admin wrote:
>
>
>
> On Tuesday, August 7, 2018 at 3:45:22 PM UTC-4, Ivan Aparicio wrote:
>>
>> ...
>>
>> I can post the PHP file working on PHP 7 if anyone is interested.
>>
>
> I am interested. I don't use the PHP saver anymore since I've got a 
> working Apache WebDAV server but I ran the PHP server for quite a while and 
> make a few improvements of my own. 
>

-- 
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/1fb42a32-be2c-4fda-a62e-191936414577%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
<>


Re: [tw5] setting up tiddlywiki with save working on Apache

2018-08-08 Thread Lost Admin


On Tuesday, August 7, 2018 at 3:45:22 PM UTC-4, Ivan Aparicio wrote:
>
> ...
>
> I can post the PHP file working on PHP 7 if anyone is interested.
>

I am interested. I don't use the PHP saver anymore since I've got a working 
Apache WebDAV server but I ran the PHP server for quite a while and make a 
few improvements of my own. 

-- 
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/32b8dea3-d46e-4305-907e-5155eb6c876b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw5] setting up tiddlywiki with save working on Apache

2018-08-07 Thread Ivan Aparicio
YES! Thanks Mark. I had a look at the log, and it was complaining about the 
'split()'. After reading a bit online I used preg_split instead. So here is 
the code I ended up with:

*// get options*

*foreach*($optionArr as $o) {

list($key, $value) = preg_split('~=~', $o);

$options[$key] = $value;

}


I put '~' characters around the '=' because I was getting an error that 
said that the '=' didn't have a delimiter, and I read on a stack overflow 
post 

 that 
it was the thing to do.

I can post the PHP file working on PHP 7 if anyone is interested.

On Sunday, August 5, 2018 at 10:38:31 PM UTC+1, Mark S. wrote:
>
> Are you getting messages about "split" ? Down in the code there's a set of 
> lines:
>
> / get options
> foreach($optionArr as $o) {
> list($key, $value) = split('=', $o);
> $options[$key] = $value;
> }
>
> My understanding is that "split" has been deprecated and might need to be 
> fixed with "explode". One report in the forum said that they were able to 
> simply remove the lines, which suggests that they might never get invoked 
> in some circumstances.
>
> -- Mark
>
> On Sunday, August 5, 2018 at 11:20:38 AM UTC-7, Ivan Aparicio wrote:
>>
>> Do you know what changes are needed? I had a great little setup with 
>> store.php on apache until I upgraded my PHP to update nextcloud :(. Now I 
>> don't have access to my tiddlywiki
>>
>> On Tuesday, June 12, 2018 at 5:50:40 PM UTC+1, Mark S. wrote:
>>>
>>> Re Store.php, you need to make a small code change to accommodate the 
>>> latest PHP You may also need to adjust max upload/download sizes in the 
>>> store.php file and perhaps in the php.ini file.
>>>
>>> -- Mark
>>>
>>>

-- 
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/f404ab12-4be3-4df0-869b-dfe4bcf24f34%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw5] setting up tiddlywiki with save working on Apache

2018-08-05 Thread 'Mark S.' via TiddlyWiki
Are you getting messages about "split" ? Down in the code there's a set of 
lines:

/ get options
foreach($optionArr as $o) {
list($key, $value) = split('=', $o);
$options[$key] = $value;
}

My understanding is that "split" has been deprecated and might need to be 
fixed with "explode". One report in the forum said that they were able to 
simply remove the lines, which suggests that they might never get invoked 
in some circumstances.

-- Mark

On Sunday, August 5, 2018 at 11:20:38 AM UTC-7, Ivan Aparicio wrote:
>
> Do you know what changes are needed? I had a great little setup with 
> store.php on apache until I upgraded my PHP to update nextcloud :(. Now I 
> don't have access to my tiddlywiki
>
> On Tuesday, June 12, 2018 at 5:50:40 PM UTC+1, Mark S. wrote:
>>
>> Re Store.php, you need to make a small code change to accommodate the 
>> latest PHP You may also need to adjust max upload/download sizes in the 
>> store.php file and perhaps in the php.ini file.
>>
>> -- Mark
>>
>>

-- 
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/e4020991-a112-4dcd-b686-8fd0388facec%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw5] setting up tiddlywiki with save working on Apache

2018-08-05 Thread Ivan Aparicio
Do you know what changes are needed? I had a great little setup with 
store.php on apache until I upgraded my PHP to update nextcloud :(. Now I 
don't have access to my tiddlywiki

On Tuesday, June 12, 2018 at 5:50:40 PM UTC+1, Mark S. wrote:
>
> Re Store.php, you need to make a small code change to accommodate the 
> latest PHP You may also need to adjust max upload/download sizes in the 
> store.php file and perhaps in the php.ini file.
>
> -- Mark
>
>

-- 
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/ba6a3624-4e7c-48c4-bb94-3d64e250222a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw5] setting up tiddlywiki with save working on Apache

2018-06-14 Thread J
Thank you all for the assist.  I would not have been able to write the 
document below.  I hope this helps others in the future.

http://jtw5.tiddlyspot.com/#building_your_own_tiddlywiki_server

Regards,
j

-- 
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/8ef39c96-4441-4f78-9006-487ac58ab304%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw5] setting up tiddlywiki with save working on Apache

2018-06-12 Thread Lost Admin
Now that I can get to my server, here is a very quick and dirty explanation 
of the Apache HTTPD config file for WebDAV:

http://thelostadmin.tiddlyspot.com/#Apache%20HTTPD%20with%20WebDAV

On Monday, June 11, 2018 at 7:12:51 PM UTC-4, J wrote:
>
> Hi All!
>
> I have been trying to find a setup document for TW5 with save working on 
> Apache.  I have pieced together what I have learned from reading various 
> posts but my setup is not working properly.  Can someone point me to a doc 
> please?  
>
> Any help would be appreciated.
>
> Thank you in advance.
>
> Regards,
> j
>

-- 
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/2b36ec6e-e6fa-4ec4-bc28-e8edde2d3015%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw5] setting up tiddlywiki with save working on Apache

2018-06-12 Thread 'Mark S.' via TiddlyWiki
Re Store.php, you need to make a small code change to accommodate the 
latest PHP You may also need to adjust max upload/download sizes in the 
store.php file and perhaps in the php.ini file.

-- Mark

-- 
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/265de77f-32de-4962-9701-dc83c89f807e%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw5] setting up tiddlywiki with save working on Apache

2018-06-12 Thread Lost Admin


On Tuesday, June 12, 2018 at 11:36:28 AM UTC-4, J wrote:
>
> Lost Admin,
>
> Here are my answers to your questions.
>
> "You want either WebDAV or PHP for TiddlyWiki. Not both."
> Which ever of the two that support remote saves (i.e. access tiddlywiki 
> from another machine and save edits or creates).  My current setup seems to 
> download the new version of the wiki after performing a save.  It will 
> intermittently save remotely.
>

They both support remote saves.
 

> ...
>
 

> "I don't see the DAV On directive to enable WebDAV; nor do I see any 
> authentication. That would mean anyone who can see the server over the 
> network can store whatever they want on that server. Are you sure that's 
> what you want?"
> Here are the DAV directives I have.  They are also the defaults when I 
> install Apache and libphodav.
> LoadModule dav_module modules/mod_dav.so
> LoadModule dav_fs_module modules/mod_dav_fs.so
> LoadModule dav_lock_module modules/mod_dav_lock.so
>
> I purposely did not put any authentication as I intend to limit this using 
> the "Require ip" directive.  However, if the authentication is required, 
> then I shall oblige.
>

You can run WebDAV without authentication. Require IP is better than 
nothing. If you trust everyone who could possibly come from the source IP 
address(es)  you are requiring, it's probably safer than username/password 
authentication.

I don't (currently) have access to my server to check the config, but try 
this:


DocumentRoot "/data/tiddlywiki"
DavLockDB "/tmp/DavLock"

*DAV On*
Options +Indexes +FollowSymLinks
AllowOverride None



 

>
> Thank you for taking the time to share your wisdom.  :)
>
> Regards,
> j
>

-- 
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/611c421c-3410-428b-b1cb-978cefed2852%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw5] setting up tiddlywiki with save working on Apache

2018-06-12 Thread J
Don't worry.  I intend to create an end to end doc that I shall share with 
everyone when I get a working configuration.  :)

Regards,
j

On Tuesday, June 12, 2018 at 8:13:46 AM UTC-7, Lost Admin wrote:
>
> I can't even find my old instructions. (do we have a face-palm emoji?)
>
> I'll try to post my current config with some explanation around it after I 
> get home, tonight.
>
> On Tuesday, June 12, 2018 at 10:37:35 AM UTC-4, J wrote:
>>
>> Lost Admin,
>>
>> Please share your steps or at least the URL for the WebDAV instructions.  
>> I am assuming this is WebDAV and Apache.
>>
>> Thank you in advance.
>>
>> Regards,
>> j
>>
>> On Tuesday, June 12, 2018 at 6:22:31 AM UTC-7, Lost Admin wrote:
>>>
>>> I previously had TW working with store.php on Apache and currently have 
>>> it running fine on WebDAV (burried in this forum you will find my steps). 
>>> I'm working on better instructions in my spare time.
>>>
>>> On Monday, June 11, 2018 at 7:12:51 PM UTC-4, J wrote:

 Hi All!

 I have been trying to find a setup document for TW5 with save working 
 on Apache.  I have pieced together what I have learned from reading 
 various 
 posts but my setup is not working properly.  Can someone point me to a doc 
 please?  

 Any help would be appreciated.

 Thank you in advance.

 Regards,
 j

>>>
> P.S. when I set-up WebDAV on my Apache server I had to go through several 
> tutorials, man pages, and assorted documentation too. I never did find a 
> clean and easy to follow set of instructions that actually got me a basic, 
> working WebDAV server.
>  
>

-- 
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/d9dd3c03-609b-4abf-bef6-f59e43cddd2f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw5] setting up tiddlywiki with save working on Apache

2018-06-12 Thread J
Lost Admin,

Here are my answers to your questions.

"You want either WebDAV or PHP for TiddlyWiki. Not both."
Which ever of the two that support remote saves (i.e. access tiddlywiki 
from another machine and save edits or creates).  My current setup seems to 
download the new version of the wiki after performing a save.  It will 
intermittently save remotely.

"The last time I tried store.php, it didn't work with PHP 7. I had to use 
PHP 5."
I seem to have a feeling that this is the case since my setup is not 
working properly.  Hence, I reached out to this forum hoping that the TW 
gods will grace me with their wisdom.  :)

"I don't see the mod_php setup for using store.php."
Here are the rest of the php setup.  These are default when I installed 
PHP.  I figured that if a phpinfo page is working in the same location as 
the wiki, then I assumed that it is all i needed.

  
LoadModule php7_module modules/libphp7.so
  




  
 LoadModule php7_module modules/libphp7-zts.so
  



Require all denied


AddType text/html .php

DirectoryIndex index.php


  
SetEnvIfNoCase ^Authorization$ "(.+)" HTTP_AUTHORIZATION=$1


SetHandler "proxy:unix:/run/php-fpm/www.sock|fcgi://localhost"

  




SetHandler application/x-httpd-php



php_value session.save_handler "files"
php_value session.save_path"/var/lib/php/session"
php_value soap.wsdl_cache_dir  "/var/lib/php/wsdlcache"



"I don't see the DAV On directive to enable WebDAV; nor do I see any 
authentication. That would mean anyone who can see the server over the 
network can store whatever they want on that server. Are you sure that's 
what you want?"
Here are the DAV directives I have.  They are also the defaults when I 
install Apache and libphodav.
LoadModule dav_module modules/mod_dav.so
LoadModule dav_fs_module modules/mod_dav_fs.so
LoadModule dav_lock_module modules/mod_dav_lock.so

I purposely did not put any authentication as I intend to limit this using 
the "Require ip" directive.  However, if the authentication is required, 
then I shall oblige.

Thank you for taking the time to share your wisdom.  :)

Regards,
j




On Tuesday, June 12, 2018 at 8:12:19 AM UTC-7, Lost Admin wrote:
>
>
>
> On Tuesday, June 12, 2018 at 10:32:28 AM UTC-4, J wrote:
>>
>> Mark,
>>
>> Here is my current specs.  I have both webdav and store.php.  If this is 
>> wrong, I just didnt know better as I was trying to put things together 
>> without an end to end doc.  ;)
>>
>
> You want either WebDAV or PHP for TiddlyWiki. Not both.
>  
>
>>
>> Fedora 28
>> Apache 2.4.33
>> PHP 7.2.6
>> TiddlyWiki 5.1.17
>> TiddlyHome 0.1.3
>>
>
> The last time I tried store.php, it didn't work with PHP 7. I had to use 
> PHP 5.
>  
>
>>
>> Here is my apache config for my VirtualHost.
>>
>> 
>> DocumentRoot "/data/tiddlywiki"
>> DavLockDB "/tmp/DavLock"
>> 
>> Options +Indexes +FollowSymLinks
>> AllowOverride None
>> 
>> 
>>
>
> I don't see the mod_php setup for using store.php.
>
> I don't see the DAV On directive to enable WebDAV; nor do I see any 
> authentication. That would mean anyone who can see the server over the 
> network can store whatever they want on that server. Are you sure that's 
> what you want?
>  
>
>>
>> The files in the directory contains.
>>
>> backup
>> store.php
>> tw_updated.html -> upload/index.html
>> upload
>>
>> Here are my settings in TiddlySpot Saver.
>>
>> Upload Filename: index.html
>> Upload Directory:  ./upload/
>> Backup Directory: ./backup/
>>
>> Regards,
>> j
>>
>> On Monday, June 11, 2018 at 5:04:07 PM UTC-7, Mark S. wrote:
>>>
>>> How are you trying to save on Apache? Store.php? WebDav?
>>>
>>> -- Mark 
>>>
>>> On Monday, June 11, 2018 at 4:12:51 PM UTC-7, J wrote:

 Hi All!

 I have been trying to find a setup document for TW5 with save working 
 on Apache.  I have pieced together what I have learned from reading 
 various 
 posts but my setup is not working properly.  Can someone point me to a doc 
 please?  

 Any help would be appreciated.

 Thank you in advance.

 Regards,
 j

>>>
>

-- 
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/4393e160-e0f2-4a1b-b460-480aadd54cca%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw5] setting up tiddlywiki with save working on Apache

2018-06-12 Thread Lost Admin
I can't even find my old instructions. (do we have a face-palm emoji?)

I'll try to post my current config with some explanation around it after I 
get home, tonight.

On Tuesday, June 12, 2018 at 10:37:35 AM UTC-4, J wrote:
>
> Lost Admin,
>
> Please share your steps or at least the URL for the WebDAV instructions.  
> I am assuming this is WebDAV and Apache.
>
> Thank you in advance.
>
> Regards,
> j
>
> On Tuesday, June 12, 2018 at 6:22:31 AM UTC-7, Lost Admin wrote:
>>
>> I previously had TW working with store.php on Apache and currently have 
>> it running fine on WebDAV (burried in this forum you will find my steps). 
>> I'm working on better instructions in my spare time.
>>
>> On Monday, June 11, 2018 at 7:12:51 PM UTC-4, J wrote:
>>>
>>> Hi All!
>>>
>>> I have been trying to find a setup document for TW5 with save working on 
>>> Apache.  I have pieced together what I have learned from reading various 
>>> posts but my setup is not working properly.  Can someone point me to a doc 
>>> please?  
>>>
>>> Any help would be appreciated.
>>>
>>> Thank you in advance.
>>>
>>> Regards,
>>> j
>>>
>>

-- 
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/040fb650-fb14-43ff-a500-522b466e6c82%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw5] setting up tiddlywiki with save working on Apache

2018-06-12 Thread Lost Admin


On Tuesday, June 12, 2018 at 10:32:28 AM UTC-4, J wrote:
>
> Mark,
>
> Here is my current specs.  I have both webdav and store.php.  If this is 
> wrong, I just didnt know better as I was trying to put things together 
> without an end to end doc.  ;)
>

You want either WebDAV or PHP for TiddlyWiki. Not both.
 

>
> Fedora 28
> Apache 2.4.33
> PHP 7.2.6
> TiddlyWiki 5.1.17
> TiddlyHome 0.1.3
>

The last time I tried store.php, it didn't work with PHP 7. I had to use 
PHP 5.
 

>
> Here is my apache config for my VirtualHost.
>
> 
> DocumentRoot "/data/tiddlywiki"
> DavLockDB "/tmp/DavLock"
> 
> Options +Indexes +FollowSymLinks
> AllowOverride None
> 
> 
>

I don't see the mod_php setup for using store.php.

I don't see the DAV On directive to enable WebDAV; nor do I see any 
authentication. That would mean anyone who can see the server over the 
network can store whatever they want on that server. Are you sure that's 
what you want?
 

>
> The files in the directory contains.
>
> backup
> store.php
> tw_updated.html -> upload/index.html
> upload
>
> Here are my settings in TiddlySpot Saver.
>
> Upload Filename: index.html
> Upload Directory:  ./upload/
> Backup Directory: ./backup/
>
> Regards,
> j
>
> On Monday, June 11, 2018 at 5:04:07 PM UTC-7, Mark S. wrote:
>>
>> How are you trying to save on Apache? Store.php? WebDav?
>>
>> -- Mark 
>>
>> On Monday, June 11, 2018 at 4:12:51 PM UTC-7, J wrote:
>>>
>>> Hi All!
>>>
>>> I have been trying to find a setup document for TW5 with save working on 
>>> Apache.  I have pieced together what I have learned from reading various 
>>> posts but my setup is not working properly.  Can someone point me to a doc 
>>> please?  
>>>
>>> Any help would be appreciated.
>>>
>>> Thank you in advance.
>>>
>>> Regards,
>>> j
>>>
>>

-- 
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/13ce3cdb-674a-41a6-96c1-fd1a5147997b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw5] setting up tiddlywiki with save working on Apache

2018-06-12 Thread J
Lost Admin,

Please share your steps or at least the URL for the WebDAV instructions.

Thank you in advance.

Regards,
j

On Tuesday, June 12, 2018 at 6:22:31 AM UTC-7, Lost Admin wrote:
>
> I previously had TW working with store.php on Apache and currently have it 
> running fine on WebDAV (burried in this forum you will find my steps). I'm 
> working on better instructions in my spare time.
>
> On Monday, June 11, 2018 at 7:12:51 PM UTC-4, J wrote:
>>
>> Hi All!
>>
>> I have been trying to find a setup document for TW5 with save working on 
>> Apache.  I have pieced together what I have learned from reading various 
>> posts but my setup is not working properly.  Can someone point me to a doc 
>> please?  
>>
>> Any help would be appreciated.
>>
>> Thank you in advance.
>>
>> Regards,
>> j
>>
>

-- 
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/b3e7f6c3-2e26-48eb-89fc-da6b10ac9013%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw5] setting up tiddlywiki with save working on Apache

2018-06-12 Thread J
Mark,

Here is my current specs.  I have both webdav and store.php.  If this is 
wrong, I just didnt know better as I was trying to put things together 
without an end to end doc.  ;)

Fedora 28
Apache 2.4.33
PHP 7.2.6
TiddlyWiki 5.1.17
TiddlyHome 0.1.3

Here is my apache config for my VirtualHost.


DocumentRoot "/data/tiddlywiki"
DavLockDB "/tmp/DavLock"

Options +Indexes +FollowSymLinks
AllowOverride None



The files in the directory contains.

backup
store.php
tw_updated.html -> upload/index.html
upload

Here are my settings in TiddlySpot Saver.

Upload Filename: index.html
Upload Directory:  ./upload/
Backup Directory: ./backup/

Regards,
j

On Monday, June 11, 2018 at 5:04:07 PM UTC-7, Mark S. wrote:
>
> How are you trying to save on Apache? Store.php? WebDav?
>
> -- Mark 
>
> On Monday, June 11, 2018 at 4:12:51 PM UTC-7, J wrote:
>>
>> Hi All!
>>
>> I have been trying to find a setup document for TW5 with save working on 
>> Apache.  I have pieced together what I have learned from reading various 
>> posts but my setup is not working properly.  Can someone point me to a doc 
>> please?  
>>
>> Any help would be appreciated.
>>
>> Thank you in advance.
>>
>> Regards,
>> j
>>
>

-- 
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/84307ae0-c011-4b83-b84b-7d4f34b3350c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw5] setting up tiddlywiki with save working on Apache

2018-06-12 Thread Lost Admin
I previously had TW working with store.php on Apache and currently have it 
running fine on WebDAV (burried in this forum you will find my steps). I'm 
working on better instructions in my spare time.

On Monday, June 11, 2018 at 7:12:51 PM UTC-4, J wrote:
>
> Hi All!
>
> I have been trying to find a setup document for TW5 with save working on 
> Apache.  I have pieced together what I have learned from reading various 
> posts but my setup is not working properly.  Can someone point me to a doc 
> please?  
>
> Any help would be appreciated.
>
> Thank you in advance.
>
> Regards,
> j
>

-- 
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/7d16ef3b-0d86-4418-8405-6f8b784aab64%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw5] setting up tiddlywiki with save working on Apache

2018-06-11 Thread 'Mark S.' via TiddlyWiki
How are you trying to save on Apache? Store.php? WebDav?

-- Mark 

On Monday, June 11, 2018 at 4:12:51 PM UTC-7, J wrote:
>
> Hi All!
>
> I have been trying to find a setup document for TW5 with save working on 
> Apache.  I have pieced together what I have learned from reading various 
> posts but my setup is not working properly.  Can someone point me to a doc 
> please?  
>
> Any help would be appreciated.
>
> Thank you in advance.
>
> Regards,
> j
>

-- 
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/e510bafc-b1b4-4d7d-9abd-272e2d3f6ec7%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.