Re: [tw] Re: A little help for Saving on a PHP Server

2017-09-19 Thread 'Mark S.' via TiddlyWiki
I don't know if this helps or matters, but I ended up with this in the 
PHP.ini file:

upload_max_filesize = 8M
post_max_size=10M
max_execution_time=240

and this in the htaccess file (called .htaccess on some systems)

php_value upload_max_filesize 4M
php_value post_max_size 6M

I would definitely start my tests with a smaller file, in case size matters.

Good luck,
Mark

On Tuesday, September 19, 2017 at 11:57:48 AM UTC-7, Antonio Mikulić wrote:
>
> Hi,
>
> I also have some issues with autosaving on selfhosted TW.
> I uploaded 2 files ( store.php and index.html) on the server. 
> In saving my setup looks like:
> Wikiname: Usernameisetinphpstore
> Password: PasswordIsetinphpstore
> ServerURL: wiki.hostname.xyz/store.php 
>
> As I press Save, it says: Starting to save wiki
> but nothing happens afterwards.
>
> I set permissions 777 to folder and these 2 files ( I am aware of security 
> concerns, this is just testing VPS), and put max_upload_size to 20MB in 
> php.ini.
> Do you have any other suggestion?
>
>
> On Monday, 18 September 2017 19:03:29 UTC+2, Lost Admin wrote:
>>
>>
>>
>> On Thursday, January 8, 2015 at 4:40:44 PM UTC-5, RichShumaker wrote:
>>>
>>> ...
>>> I changed the permissions on my server folder to 777(probably overkill 
>>> and not wise should only need a change to the store.php file).
>>> Once I changed permissions it worked and boom goes the dynamite I am up 
>>> and running.
>>> ...
>>>
>>
>> And in a little while, boom goes the hacker as they take over your server.
>>
>> The store.php file should be readable by the system user account that you 
>> web server runs under (typically www). In most cases it should not need to 
>> be executable (but might be needed if PHP is being picky). It should most 
>> definitely NOT be writable by the www user.
>>
>> The directory that you put the tiddlywiki file in needs to be both 
>> readable and writable by the system user account that your web server run 
>> under. This allows store.php to actually write the file. It will also allow 
>> store.php (or any other process run under that user account) to write any 
>> file at all to that directory.
>>
>> In theory, you could make only the specific tiddlywiki file (and the 
>> backup directory that store.php keeps old versions) writable but not the 
>> directory that the main file is actually stored in. I haven't tried this.
>>
>>

-- 
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/ece8ce4c-ef43-4baf-9027-ed58f2792b5f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Re: A little help for Saving on a PHP Server

2017-09-19 Thread Antonio Mikulić
Hi,

I also have some issues with autosaving on selfhosted TW.
I uploaded 2 files ( store.php and index.html) on the server. 
In saving my setup looks like:
Wikiname: Usernameisetinphpstore
Password: PasswordIsetinphpstore
ServerURL: wiki.hostname.xyz/store.php 

As I press Save, it says: Starting to save wiki
but nothing happens afterwards.

I set permissions 777 to folder and these 2 files ( I am aware of security 
concerns, this is just testing VPS), and put max_upload_size to 20MB in 
php.ini.
Do you have any other suggestion?


On Monday, 18 September 2017 19:03:29 UTC+2, Lost Admin wrote:
>
>
>
> On Thursday, January 8, 2015 at 4:40:44 PM UTC-5, RichShumaker wrote:
>>
>> ...
>> I changed the permissions on my server folder to 777(probably overkill 
>> and not wise should only need a change to the store.php file).
>> Once I changed permissions it worked and boom goes the dynamite I am up 
>> and running.
>> ...
>>
>
> And in a little while, boom goes the hacker as they take over your server.
>
> The store.php file should be readable by the system user account that you 
> web server runs under (typically www). In most cases it should not need to 
> be executable (but might be needed if PHP is being picky). It should most 
> definitely NOT be writable by the www user.
>
> The directory that you put the tiddlywiki file in needs to be both 
> readable and writable by the system user account that your web server run 
> under. This allows store.php to actually write the file. It will also allow 
> store.php (or any other process run under that user account) to write any 
> file at all to that directory.
>
> In theory, you could make only the specific tiddlywiki file (and the 
> backup directory that store.php keeps old versions) writable but not the 
> directory that the main file is actually stored in. I haven't tried this.
>
>

-- 
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/a181448e-e6ed-49c9-9454-38bd513e02e4%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Re: A little help for Saving on a PHP Server

2017-09-18 Thread Lost Admin


On Thursday, January 8, 2015 at 4:40:44 PM UTC-5, RichShumaker wrote:
>
> ...
> I changed the permissions on my server folder to 777(probably overkill and 
> not wise should only need a change to the store.php file).
> Once I changed permissions it worked and boom goes the dynamite I am up 
> and running.
> ...
>

And in a little while, boom goes the hacker as they take over your server.

The store.php file should be readable by the system user account that you 
web server runs under (typically www). In most cases it should not need to 
be executable (but might be needed if PHP is being picky). It should most 
definitely NOT be writable by the www user.

The directory that you put the tiddlywiki file in needs to be both readable 
and writable by the system user account that your web server run under. 
This allows store.php to actually write the file. It will also allow 
store.php (or any other process run under that user account) to write any 
file at all to that directory.

In theory, you could make only the specific tiddlywiki file (and the backup 
directory that store.php keeps old versions) writable but not the directory 
that the main file is actually stored in. I haven't tried this.

-- 
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/566e60cf-f92a-46ab-a442-3febe645876c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Re: A little help for Saving on a PHP Server

2017-09-18 Thread Ivan Aparicio
I also found that changing permissions (of both the tiddlywiki and 
store.php files) to 777 fixed this issue

On Thursday, January 8, 2015 at 9:40:44 PM UTC, RichShumaker wrote:
>
> SOLUTION!!!
> and as I have said on the GitHub thread I owe Tobias a keg of beer(if he 
> drinks beer).
> This is a permissions issue if you get the error I received.
> I changed the permissions on my server folder to 777(probably overkill and 
> not wise should only need a change to the store.php file).
> Once I changed permissions it worked and boom goes the dynamite I am up 
> and running.
>
> Below is an image of my TW 5.1.7 configuration as the autofill confused me 
> at first.
>
> Thanks again Tobias.
>
> Rich Shumaker
>
>
> 
>

-- 
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/76cae3ea-87b3-4cec-ba82-4dcedf297e80%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Re: A little help for Saving on a PHP Server

2015-01-08 Thread RichShumaker
SOLUTION!!!
and as I have said on the GitHub thread I owe Tobias a keg of beer(if he 
drinks beer).
This is a permissions issue if you get the error I received.
I changed the permissions on my server folder to 777(probably overkill and 
not wise should only need a change to the store.php file).
Once I changed permissions it worked and boom goes the dynamite I am up and 
running.

Below is an image of my TW 5.1.7 configuration as the autofill confused me 
at first.

Thanks again Tobias.

Rich Shumaker



-- 
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 http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Re: A little help for Saving on a PHP Server

2015-01-07 Thread RichShumaker
Did you ever get a solution to this?
I am having this exact problem and was researching another issue with 
reference links to images on the server and came across this.
I posted in the Dev site and was surprised when I came across this on the 
TW side, pleasantly until I got to the dead end.

Let me know as I wanted to use the BidiX PHP 1.6.1 store.php script on the 
Raspberry Pi and ran into an error when saving.
Here is the Dev Post I started 
.  I am 
going to have to jump to the Node.js deep end right away if I can't find a 
solution using this simple PHP script.
Which is a shame as it only takes 10 minutes for me to set up a simple Web 
Server on the Pi using BerryBoot Server with PHP.
Then I can upload the PHP Script with passwords and I could have people up 
and running in minutes using TW5 on a Raspberry Pi.

Thanks everyone for your help.

Rich Shumaker


On Monday, April 28, 2014 5:10:17 AM UTC-7, Vincent wrote:
>
> Thanks Mans
> Yes I'm already using version :1.6.1
> A friend of mine, more competent is going to have a look later this week
> I hope we're going to find where the problem is
>
>
> 2014-04-28 13:59 GMT+02:00 Måns >:
>
>> Hi Vincent
>>
>> Is it the correct store.php file you are using? Bidix has a "fallback" 
>> document also called store.php which is what
>> is shown if someone tries to open the store.php file with usernames and 
>> passwords..
>>
>> I've attached my store.php file to this message - in case you want to try 
>> it out.
>>
>> These are hardcoded usernames and passwords, which you would change:(You 
>> can add as many users as you need..)
>>
>> ! User settings
>> Edit these lines according to your need
>> ***/
>> //{{{
>> $AUTHENTICATE_USER = true; // true | false
>> $USERS = array(
>> 'username1'=>'password1', 
>> 'username2'=>'password2', 
>>  'tester'=>'tester'); // set usernames and strong passwords
>>
>> Cheers Måns Mårtensson
>>
>> Den mandag den 28. april 2014 12.33.51 UTC+2 skrev Vincent:
>>>
>>> Unfortunately it's not better
>>> I keep trying
>>>
>>>
>>> 2014-04-28 12:25 GMT+02:00 Måns :
>>>
>>> Hi Vincent

 Change the directory (+ subdirectories and files) permissions to 777
 and see if it help..

 Cheers Måns 

 Den mandag den 28. april 2014 12.16.31 UTC+2 skrev Vincent:
>
> Thank you for your concern Mans !
>
> When I trie to join your website, I can reach it but I've a 
> Internal JavaScript Error
> Well, this is embarrassing. It is recommended that you restart 
> TiddlyWiki by refreshing your browser
> ReferenceError: Components is not defined
> Even with the TiddlyFox extension for Firefox 1.0alpha18
>
> Store.php and index.html has 644 permissions 
>
> I've oder tools on my host (Owncloud, TinyTiny, etc...) so it's 
> probably not a problem of accepting php-files
>
> I keep searching
>
>
>
> 2014-04-28 12:07 GMT+02:00 Måns :
>
>>
>> - or maybe it's a matter of setting the file permissions right?
>>
>> Den mandag den 28. april 2014 11.28.31 UTC+2 skrev Måns:
>>
>>> Hi Vin
>>>
>>> I just tested it - a store.php file in a dir on my server host - and 
>>> it worked as expected.
>>>
>>> http://xn--mns-ula.dk/hutudu/
>>>
>>> user: tester
>>> pswd: tester
>>>
>>> Try it out.
>>>
>>> Maybe safe:mode is on at your hosting service - then it won't accept 
>>> using php-files (as I understand it...)
>>>
>>> Cheers Måns Mårtensson 
>>>
>>> Den søndag den 27. april 2014 20.56.12 UTC+2 skrev vin1...@gmail.com
>>> :

 Unfortunately, nothing is saved (even the preferences)
 I've the version 5.0.10-beta



 Le dimanche 27 avril 2014 20:40:35 UTC+2, Måns a écrit :
>
> Hi
>
> Have you tested if your changes were actually saved even if it 
> says "Error while saving:" ?
>
> When I save back via Bidix's store.php file - I get this:
>
> "Error while saving:
>
> 0 - File successfully loaded in ./index.html
> destfile:./index.html 
> backupfile:./index.20140427.203546.html
> mtime:1398623746"
>
> And my changes are saved - despite of the errormessage. (Only 
> tested with TW ver. 5.06)
>
> Cheers Måns Mårtensson
>
>
>
> ...

  -- 
>> You received this message because you are subscribed to a topic in 
>> the Google Groups "TiddlyWiki" group.
>> To unsubscribe from this topic, visit https://groups.google.com/d/to
>> pic/tiddlywiki/dOBmCvFVawU/unsubscribe.
>>  To unsubscribe from this group and all its topics, send an email to 
>> tiddlywiki+...@googlegroups.com.
>> To post to this group, send email to tiddl...@googlegroups.com.
>>>

Re: [tw] Re: A little help for Saving on a PHP Server

2014-05-06 Thread vin100vin
Hi Mans, I'm back ;-)
We found the solution for installing TW on a web server.
But not the solution for making it private.
We create .htpasswd &.htaccess but then no more opportunity to save anymore
Do you have any experience about that ?


Le lundi 28 avril 2014 14:10:17 UTC+2, Vincent a écrit :
>
> Thanks Mans
> Yes I'm already using version :1.6.1
> A friend of mine, more competent is going to have a look later this week
> I hope we're going to find where the problem is
>
>
> 2014-04-28 13:59 GMT+02:00 Måns <>:
>
>> Hi Vincent
>>
>> Is it the correct store.php file you are using? Bidix has a "fallback" 
>> document also called store.php which is what
>> is shown if someone tries to open the store.php file with usernames and 
>> passwords..
>>
>> I've attached my store.php file to this message - in case you want to try 
>> it out.
>>
>> These are hardcoded usernames and passwords, which you would change:(You 
>> can add as many users as you need..)
>>
>> ! User settings
>> Edit these lines according to your need
>> ***/
>> //{{{
>> $AUTHENTICATE_USER = true; // true | false
>> $USERS = array(
>> 'username1'=>'password1', 
>> 'username2'=>'password2', 
>>  'tester'=>'tester'); // set usernames and strong passwords
>>
>> Cheers Måns Mårtensson
>>
>> Den mandag den 28. april 2014 12.33.51 UTC+2 skrev Vincent:
>>>
>>> Unfortunately it's not better
>>> I keep trying
>>>
>>>
>>> 2014-04-28 12:25 GMT+02:00 Måns :
>>>
>>> Hi Vincent

 Change the directory (+ subdirectories and files) permissions to 777
 and see if it help..

 Cheers Måns 

 Den mandag den 28. april 2014 12.16.31 UTC+2 skrev Vincent:
>
> Thank you for your concern Mans !
>
> When I trie to join your website, I can reach it but I've a 
> Internal JavaScript Error
> Well, this is embarrassing. It is recommended that you restart 
> TiddlyWiki by refreshing your browser
> ReferenceError: Components is not defined
> Even with the TiddlyFox extension for Firefox 1.0alpha18
>
> Store.php and index.html has 644 permissions 
>
> I've oder tools on my host (Owncloud, TinyTiny, etc...) so it's 
> probably not a problem of accepting php-files
>
> I keep searching
>
>
>
> 2014-04-28 12:07 GMT+02:00 Måns :
>
>>
>> - or maybe it's a matter of setting the file permissions right?
>>
>> Den mandag den 28. april 2014 11.28.31 UTC+2 skrev Måns:
>>
>>> Hi Vin
>>>
>>> I just tested it - a store.php file in a dir on my server host - and 
>>> it worked as expected.
>>>
>>> http://xn--mns-ula.dk/hutudu/
>>>
>>> user: tester
>>> pswd: tester
>>>
>>> Try it out.
>>>
>>> Maybe safe:mode is on at your hosting service - then it won't accept 
>>> using php-files (as I understand it...)
>>>
>>> Cheers Måns Mårtensson 
>>>
>>> Den søndag den 27. april 2014 20.56.12 UTC+2 skrev vin1...@gmail.com
>>> :

 Unfortunately, nothing is saved (even the preferences)
 I've the version 5.0.10-beta



 Le dimanche 27 avril 2014 20:40:35 UTC+2, Måns a écrit :
>
> Hi
>
> Have you tested if your changes were actually saved even if it 
> says "Error while saving:" ?
>
> When I save back via Bidix's store.php file - I get this:
>
> "Error while saving:
>
> 0 - File successfully loaded in ./index.html
> destfile:./index.html 
> backupfile:./index.20140427.203546.html
> mtime:1398623746"
>
> And my changes are saved - despite of the errormessage. (Only 
> tested with TW ver. 5.06)
>
> Cheers Måns Mårtensson
>
>
>
> ...

  -- 
>> You received this message because you are subscribed to a topic in 
>> the Google Groups "TiddlyWiki" group.
>> To unsubscribe from this topic, visit https://groups.google.com/d/to
>> pic/tiddlywiki/dOBmCvFVawU/unsubscribe.
>>  To unsubscribe from this group and all its topics, send an email to 
>> tiddlywiki+...@googlegroups.com.
>> To post to this group, send email to tiddl...@googlegroups.com.
>>
>> Visit this group at http://groups.google.com/group/tiddlywiki.
>> For more options, visit https://groups.google.com/d/optout.
>>
>
>  -- 
 You received this message because you are subscribed to a topic in the 
 Google Groups "TiddlyWiki" group.
 To unsubscribe from this topic, visit https://groups.google.com/d/
 topic/tiddlywiki/dOBmCvFVawU/unsubscribe.
 To unsubscribe from this group and all its topics, send an email to 
 tiddlywiki+...@googlegroups.com.
 To post to this group, send email to tiddl...@googlegroups.com.
 Visit this group at http://groups.google.com/group/tiddlywiki.
 For more options, visit https://groups.google.com/d

Re: [tw] Re: A little help for Saving on a PHP Server

2014-04-28 Thread Vincent
Thanks Mans
Yes I'm already using version :1.6.1
A friend of mine, more competent is going to have a look later this week
I hope we're going to find where the problem is


2014-04-28 13:59 GMT+02:00 Måns :

> Hi Vincent
>
> Is it the correct store.php file you are using? Bidix has a "fallback"
> document also called store.php which is what
> is shown if someone tries to open the store.php file with usernames and
> passwords..
>
> I've attached my store.php file to this message - in case you want to try
> it out.
>
> These are hardcoded usernames and passwords, which you would change:(You
> can add as many users as you need..)
>
> ! User settings
> Edit these lines according to your need
> ***/
> //{{{
> $AUTHENTICATE_USER = true; // true | false
> $USERS = array(
> 'username1'=>'password1',
> 'username2'=>'password2',
> 'tester'=>'tester'); // set usernames and strong passwords
>
> Cheers Måns Mårtensson
>
> Den mandag den 28. april 2014 12.33.51 UTC+2 skrev Vincent:
>>
>> Unfortunately it's not better
>> I keep trying
>>
>>
>> 2014-04-28 12:25 GMT+02:00 Måns :
>>
>> Hi Vincent
>>>
>>> Change the directory (+ subdirectories and files) permissions to 777
>>> and see if it help..
>>>
>>> Cheers Måns
>>>
>>> Den mandag den 28. april 2014 12.16.31 UTC+2 skrev Vincent:

 Thank you for your concern Mans !

 When I trie to join your website, I can reach it but I've a
 Internal JavaScript Error
 Well, this is embarrassing. It is recommended that you restart
 TiddlyWiki by refreshing your browser
 ReferenceError: Components is not defined
 Even with the TiddlyFox extension for Firefox 1.0alpha18

 Store.php and index.html has 644 permissions

 I've oder tools on my host (Owncloud, TinyTiny, etc...) so it's
 probably not a problem of accepting php-files

 I keep searching



 2014-04-28 12:07 GMT+02:00 Måns :

>
> - or maybe it's a matter of setting the file permissions right?
>
> Den mandag den 28. april 2014 11.28.31 UTC+2 skrev Måns:
>
>> Hi Vin
>>
>> I just tested it - a store.php file in a dir on my server host - and
>> it worked as expected.
>>
>> http://xn--mns-ula.dk/hutudu/
>>
>> user: tester
>> pswd: tester
>>
>> Try it out.
>>
>> Maybe safe:mode is on at your hosting service - then it won't accept
>> using php-files (as I understand it...)
>>
>> Cheers Måns Mårtensson
>>
>> Den søndag den 27. april 2014 20.56.12 UTC+2 skrev vin1...@gmail.com:
>>>
>>> Unfortunately, nothing is saved (even the preferences)
>>> I've the version 5.0.10-beta
>>>
>>>
>>>
>>> Le dimanche 27 avril 2014 20:40:35 UTC+2, Måns a écrit :

 Hi

 Have you tested if your changes were actually saved even if it says
 "Error while saving:" ?

 When I save back via Bidix's store.php file - I get this:

 "Error while saving:

 0 - File successfully loaded in ./index.html
 destfile:./index.html
 backupfile:./index.20140427.203546.html
 mtime:1398623746"

 And my changes are saved - despite of the errormessage. (Only
 tested with TW ver. 5.06)

 Cheers Måns Mårtensson



 ...
>>>
>>>  --
> You received this message because you are subscribed to a topic in the
> Google Groups "TiddlyWiki" group.
> To unsubscribe from this topic, visit https://groups.google.com/d/to
> pic/tiddlywiki/dOBmCvFVawU/unsubscribe.
>  To unsubscribe from this group and all its topics, send an email to
> tiddlywiki+...@googlegroups.com.
> To post to this group, send email to tiddl...@googlegroups.com.
>
> Visit this group at http://groups.google.com/group/tiddlywiki.
> For more options, visit https://groups.google.com/d/optout.
>

  --
>>> You received this message because you are subscribed to a topic in the
>>> Google Groups "TiddlyWiki" group.
>>> To unsubscribe from this topic, visit https://groups.google.com/d/
>>> topic/tiddlywiki/dOBmCvFVawU/unsubscribe.
>>> To unsubscribe from this group and all its topics, send an email to
>>> tiddlywiki+...@googlegroups.com.
>>> To post to this group, send email to tiddl...@googlegroups.com.
>>> Visit this group at http://groups.google.com/group/tiddlywiki.
>>> For more options, visit https://groups.google.com/d/optout.
>>>
>>
>>  --
> You received this message because you are subscribed to a topic in the
> Google Groups "TiddlyWiki" group.
> To unsubscribe from this topic, visit
> https://groups.google.com/d/topic/tiddlywiki/dOBmCvFVawU/unsubscribe.
> To unsubscribe from this group and all its topics, send an email to
> tiddlywiki+unsubscr...@googlegroups.com.
> To post to this group, send email to tiddlywiki@googlegroups.com.
> Visit this group at http://groups.google.com/group/tiddlywik

Re: [tw] Re: A little help for Saving on a PHP Server

2014-04-28 Thread Måns
Hi Vincent

Is it the correct store.php file you are using? Bidix has a "fallback" 
document also called store.php which is what
is shown if someone tries to open the store.php file with usernames and 
passwords..

I've attached my store.php file to this message - in case you want to try 
it out.

These are hardcoded usernames and passwords, which you would change:(You 
can add as many users as you need..)

! User settings
Edit these lines according to your need
***/
//{{{
$AUTHENTICATE_USER = true; // true | false
$USERS = array(
'username1'=>'password1', 
'username2'=>'password2', 
'tester'=>'tester'); // set usernames and strong passwords

Cheers Måns Mårtensson

Den mandag den 28. april 2014 12.33.51 UTC+2 skrev Vincent:
>
> Unfortunately it's not better
> I keep trying
>
>
> 2014-04-28 12:25 GMT+02:00 Måns >:
>
>> Hi Vincent
>>
>> Change the directory (+ subdirectories and files) permissions to 777
>> and see if it help..
>>
>> Cheers Måns 
>>
>> Den mandag den 28. april 2014 12.16.31 UTC+2 skrev Vincent:
>>>
>>> Thank you for your concern Mans !
>>>
>>> When I trie to join your website, I can reach it but I've a 
>>> Internal JavaScript Error
>>> Well, this is embarrassing. It is recommended that you restart 
>>> TiddlyWiki by refreshing your browser
>>> ReferenceError: Components is not defined
>>> Even with the TiddlyFox extension for Firefox 1.0alpha18
>>>
>>> Store.php and index.html has 644 permissions 
>>>
>>> I've oder tools on my host (Owncloud, TinyTiny, etc...) so it's probably 
>>> not a problem of accepting php-files
>>>
>>> I keep searching
>>>
>>>
>>>
>>> 2014-04-28 12:07 GMT+02:00 Måns :
>>>

 - or maybe it's a matter of setting the file permissions right?

 Den mandag den 28. april 2014 11.28.31 UTC+2 skrev Måns:

> Hi Vin
>
> I just tested it - a store.php file in a dir on my server host - and 
> it worked as expected.
>
> http://xn--mns-ula.dk/hutudu/
>
> user: tester
> pswd: tester
>
> Try it out.
>
> Maybe safe:mode is on at your hosting service - then it won't accept 
> using php-files (as I understand it...)
>
> Cheers Måns Mårtensson 
>
> Den søndag den 27. april 2014 20.56.12 UTC+2 skrev vin1...@gmail.com:
>>
>> Unfortunately, nothing is saved (even the preferences)
>> I've the version 5.0.10-beta
>>
>>
>>
>> Le dimanche 27 avril 2014 20:40:35 UTC+2, Måns a écrit :
>>>
>>> Hi
>>>
>>> Have you tested if your changes were actually saved even if it says 
>>> "Error while saving:" ?
>>>
>>> When I save back via Bidix's store.php file - I get this:
>>>
>>> "Error while saving:
>>>
>>> 0 - File successfully loaded in ./index.html
>>> destfile:./index.html 
>>> backupfile:./index.20140427.203546.html
>>> mtime:1398623746"
>>>
>>> And my changes are saved - despite of the errormessage. (Only tested 
>>> with TW ver. 5.06)
>>>
>>> Cheers Måns Mårtensson
>>>
>>>
>>>
>>> ...
>>
>>  -- 
 You received this message because you are subscribed to a topic in the 
 Google Groups "TiddlyWiki" group.
 To unsubscribe from this topic, visit https://groups.google.com/d/
 topic/tiddlywiki/dOBmCvFVawU/unsubscribe.
  To unsubscribe from this group and all its topics, send an email to 
 tiddlywiki+...@googlegroups.com.
 To post to this group, send email to tiddl...@googlegroups.com.

 Visit this group at http://groups.google.com/group/tiddlywiki.
 For more options, visit https://groups.google.com/d/optout.

>>>
>>>  -- 
>> You received this message because you are subscribed to a topic in the 
>> Google Groups "TiddlyWiki" group.
>> To unsubscribe from this topic, visit 
>> https://groups.google.com/d/topic/tiddlywiki/dOBmCvFVawU/unsubscribe.
>> To unsubscribe from this group and all its topics, send an email to 
>> tiddlywiki+...@googlegroups.com .
>> To post to this group, send email to tiddl...@googlegroups.com
>> .
>> Visit this group at http://groups.google.com/group/tiddlywiki.
>> 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 post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.
<>


Re: [tw] Re: A little help for Saving on a PHP Server

2014-04-28 Thread Vincent
Unfortunately it's not better
I keep trying


2014-04-28 12:25 GMT+02:00 Måns :

> Hi Vincent
>
> Change the directory (+ subdirectories and files) permissions to 777
> and see if it help..
>
> Cheers Måns
>
> Den mandag den 28. april 2014 12.16.31 UTC+2 skrev Vincent:
>>
>> Thank you for your concern Mans !
>>
>> When I trie to join your website, I can reach it but I've a
>> Internal JavaScript Error
>> Well, this is embarrassing. It is recommended that you restart TiddlyWiki
>> by refreshing your browser
>> ReferenceError: Components is not defined
>> Even with the TiddlyFox extension for Firefox 1.0alpha18
>>
>> Store.php and index.html has 644 permissions
>>
>> I've oder tools on my host (Owncloud, TinyTiny, etc...) so it's probably
>> not a problem of accepting php-files
>>
>> I keep searching
>>
>>
>>
>> 2014-04-28 12:07 GMT+02:00 Måns :
>>
>>>
>>> - or maybe it's a matter of setting the file permissions right?
>>>
>>> Den mandag den 28. april 2014 11.28.31 UTC+2 skrev Måns:
>>>
 Hi Vin

 I just tested it - a store.php file in a dir on my server host - and it
 worked as expected.

 http://xn--mns-ula.dk/hutudu/

 user: tester
 pswd: tester

 Try it out.

 Maybe safe:mode is on at your hosting service - then it won't accept
 using php-files (as I understand it...)

 Cheers Måns Mårtensson

 Den søndag den 27. april 2014 20.56.12 UTC+2 skrev vin1...@gmail.com:
>
> Unfortunately, nothing is saved (even the preferences)
> I've the version 5.0.10-beta
>
>
>
> Le dimanche 27 avril 2014 20:40:35 UTC+2, Måns a écrit :
>>
>> Hi
>>
>> Have you tested if your changes were actually saved even if it says
>> "Error while saving:" ?
>>
>> When I save back via Bidix's store.php file - I get this:
>>
>> "Error while saving:
>>
>> 0 - File successfully loaded in ./index.html
>> destfile:./index.html
>> backupfile:./index.20140427.203546.html
>> mtime:1398623746"
>>
>> And my changes are saved - despite of the errormessage. (Only tested
>> with TW ver. 5.06)
>>
>> Cheers Måns Mårtensson
>>
>>
>>
>> ...
>
>  --
>>> You received this message because you are subscribed to a topic in the
>>> Google Groups "TiddlyWiki" group.
>>> To unsubscribe from this topic, visit https://groups.google.com/d/
>>> topic/tiddlywiki/dOBmCvFVawU/unsubscribe.
>>> To unsubscribe from this group and all its topics, send an email to
>>> tiddlywiki+...@googlegroups.com.
>>> To post to this group, send email to tiddl...@googlegroups.com.
>>>
>>> Visit this group at http://groups.google.com/group/tiddlywiki.
>>> For more options, visit https://groups.google.com/d/optout.
>>>
>>
>>  --
> You received this message because you are subscribed to a topic in the
> Google Groups "TiddlyWiki" group.
> To unsubscribe from this topic, visit
> https://groups.google.com/d/topic/tiddlywiki/dOBmCvFVawU/unsubscribe.
> To unsubscribe from this group and all its topics, send an email to
> tiddlywiki+unsubscr...@googlegroups.com.
> To post to this group, send email to tiddlywiki@googlegroups.com.
> Visit this group at http://groups.google.com/group/tiddlywiki.
> 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 post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Re: A little help for Saving on a PHP Server

2014-04-28 Thread Måns
Hi Vincent

Change the directory (+ subdirectories and files) permissions to 777
and see if it help..

Cheers Måns 

Den mandag den 28. april 2014 12.16.31 UTC+2 skrev Vincent:
>
> Thank you for your concern Mans !
>
> When I trie to join your website, I can reach it but I've a 
> Internal JavaScript Error
> Well, this is embarrassing. It is recommended that you restart TiddlyWiki 
> by refreshing your browser
> ReferenceError: Components is not defined
> Even with the TiddlyFox extension for Firefox 1.0alpha18
>
> Store.php and index.html has 644 permissions 
>
> I've oder tools on my host (Owncloud, TinyTiny, etc...) so it's probably 
> not a problem of accepting php-files
>
> I keep searching
>
>
>
> 2014-04-28 12:07 GMT+02:00 Måns >:
>
>>
>> - or maybe it's a matter of setting the file permissions right?
>>
>> Den mandag den 28. april 2014 11.28.31 UTC+2 skrev Måns:
>>
>>> Hi Vin
>>>
>>> I just tested it - a store.php file in a dir on my server host - and it 
>>> worked as expected.
>>>
>>> http://xn--mns-ula.dk/hutudu/
>>>
>>> user: tester
>>> pswd: tester
>>>
>>> Try it out.
>>>
>>> Maybe safe:mode is on at your hosting service - then it won't accept 
>>> using php-files (as I understand it...)
>>>
>>> Cheers Måns Mårtensson 
>>>
>>> Den søndag den 27. april 2014 20.56.12 UTC+2 skrev vin1...@gmail.com:

 Unfortunately, nothing is saved (even the preferences)
 I've the version 5.0.10-beta



 Le dimanche 27 avril 2014 20:40:35 UTC+2, Måns a écrit :
>
> Hi
>
> Have you tested if your changes were actually saved even if it says 
> "Error while saving:" ?
>
> When I save back via Bidix's store.php file - I get this:
>
> "Error while saving:
>
> 0 - File successfully loaded in ./index.html
> destfile:./index.html 
> backupfile:./index.20140427.203546.html
> mtime:1398623746"
>
> And my changes are saved - despite of the errormessage. (Only tested 
> with TW ver. 5.06)
>
> Cheers Måns Mårtensson
>
>
>
> ...

  -- 
>> You received this message because you are subscribed to a topic in the 
>> Google Groups "TiddlyWiki" group.
>> To unsubscribe from this topic, visit 
>> https://groups.google.com/d/topic/tiddlywiki/dOBmCvFVawU/unsubscribe.
>> To unsubscribe from this group and all its topics, send an email to 
>> tiddlywiki+...@googlegroups.com .
>> To post to this group, send email to tiddl...@googlegroups.com
>> .
>> Visit this group at http://groups.google.com/group/tiddlywiki.
>> 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 post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Re: A little help for Saving on a PHP Server

2014-04-28 Thread Vincent
Thank you for your concern Mans !

When I trie to join your website, I can reach it but I've a
Internal JavaScript Error
Well, this is embarrassing. It is recommended that you restart TiddlyWiki
by refreshing your browser
ReferenceError: Components is not defined
Even with the TiddlyFox extension for Firefox 1.0alpha18

Store.php and index.html has 644 permissions

I've oder tools on my host (Owncloud, TinyTiny, etc...) so it's probably
not a problem of accepting php-files

I keep searching



2014-04-28 12:07 GMT+02:00 Måns :

>
> - or maybe it's a matter of setting the file permissions right?
>
> Den mandag den 28. april 2014 11.28.31 UTC+2 skrev Måns:
>
>> Hi Vin
>>
>> I just tested it - a store.php file in a dir on my server host - and it
>> worked as expected.
>>
>> http://xn--mns-ula.dk/hutudu/
>>
>> user: tester
>> pswd: tester
>>
>> Try it out.
>>
>> Maybe safe:mode is on at your hosting service - then it won't accept
>> using php-files (as I understand it...)
>>
>> Cheers Måns Mårtensson
>>
>> Den søndag den 27. april 2014 20.56.12 UTC+2 skrev vin1...@gmail.com:
>>>
>>> Unfortunately, nothing is saved (even the preferences)
>>> I've the version 5.0.10-beta
>>>
>>>
>>>
>>> Le dimanche 27 avril 2014 20:40:35 UTC+2, Måns a écrit :

 Hi

 Have you tested if your changes were actually saved even if it says
 "Error while saving:" ?

 When I save back via Bidix's store.php file - I get this:

 "Error while saving:

 0 - File successfully loaded in ./index.html
 destfile:./index.html
 backupfile:./index.20140427.203546.html
 mtime:1398623746"

 And my changes are saved - despite of the errormessage. (Only tested
 with TW ver. 5.06)

 Cheers Måns Mårtensson



 ...
>>>
>>>  --
> You received this message because you are subscribed to a topic in the
> Google Groups "TiddlyWiki" group.
> To unsubscribe from this topic, visit
> https://groups.google.com/d/topic/tiddlywiki/dOBmCvFVawU/unsubscribe.
> To unsubscribe from this group and all its topics, send an email to
> tiddlywiki+unsubscr...@googlegroups.com.
> To post to this group, send email to tiddlywiki@googlegroups.com.
> Visit this group at http://groups.google.com/group/tiddlywiki.
> 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 post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.