On the server, all in the same directory, and with all permissions set temporarily to 777 (including the directory itself):
- index.html (a copy of the empty TiddlyWiki)
- store.php
I have edited the user list in store.php, and checked that the store.php page loads in the browser without errors.
$USERS = array(
'myuser'=>'mypass',
'UserName2'=>'Password2',
'UserName3'=>'Password3');
And set the following in the Control Pannel "Saving" tab:
- Wiki Name:
myuser
- Password:
mypass
- Server URL:
http://myhostnoerrors/my_dir/store.php
- Upload Directory:
.
- Backup Directory:
.
When I click the save button (or try to create a new Tiddler), I see the badge "Starting to save wiki" in the upper right, but the save icon stays red, and the file is not updated on my server (even if I refresh).
The "Network" Web Developer Tool in Firefox shows that the POST request is going to the right location and with the right information, but returns a 403 Forbidden error.
What am I doing wrong? Has anyone been able to use store.php successfully with version 5.1.7?
Multipart parsing error (init): Multipart: Invalid boundary in C-T (malformed)
. Simultaneously I get a hit in my access log showing the 403 error for the POST request. – Immesh./
as the upload directory, not simply.
? – Marsupiumhttps
my mistake was issuing aServer URL
withhttp
instead ofhttps
. Now it woks fine. – Kattie