mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-13 05:19:58 +00:00
80256b4dab
* Add string '.htm' to 'Saving with TiddlyIE' * Change external links to match locale with wiki language * Add instructions for use to 'Saving on Android' * Change string in 'task' * Change instructions for use in 'Saving on iPad/iPhone' * Add newline to 'TiddlyDesktop Releases' * Remove caption from 'Serving TW5 from Android' * Change link to external in tiddlers which tagged 'Editions' * Remove string 'index.html' from 'Some of the things you can do with TiddlyWiki' * Change link 'TiddlyWiki Groups' to 'Forums' in tiddlers which tagged 'Community' * Remove CamelCase link 'TiddlyWiki' from tiddlers tagged 'Community' * Change string 'done' to 'Upgrade' in 'UpgradeMechanism' * Change buttons to images in 'How to export tiddlers' * Add images about buttons to tiddlers * Add quotation mark to text 'edit' in 'Signing the Contributor License Agreement' * Rename 'UsingSVG' to 'Using SVG' * Change link 'TypedBlockWikiText' to 'Typed Blocks in WikiText' in 'Using SVG' * Add tiddler 'Using Stamp' * Add 'rel="noopener noreferrer"' to external links * Add description about 'rel="noreferrer"' to 'HTML in WikiText' * Add link of prerelease version about translators edition, and how to translate on Node.js, in 'Translate TiddlyWiki into your language' * Change string 'dropdown' to 'tab' in 'Installing a plugin from the plugin library' * Add download button to 'Empty Edition'
30 lines
1.7 KiB
Plaintext
30 lines
1.7 KiB
Plaintext
created: 20140111091844267
|
|
modified: 20160610082607695
|
|
tags: Saving
|
|
title: Saving on a PHP Server
|
|
type: text/vnd.tiddlywiki
|
|
|
|
The built-in TiddlySpot saver can also be used to save changes to a simple PHP script that you can run on most hosting providers.
|
|
|
|
//These are preliminary instructions that need verification//
|
|
|
|
# Download a copy of ''store.php'' from:
|
|
#* https://code.google.com/p/bidix/source/browse/trunk/TiddlyHome/_th/lib/store.php
|
|
# Edit your copy of ''store.php'' to add your username(s) and password(s). Find the line `$USERS = array( 'UserName1'=>'Password1', etc)` and replace Username1 and Password1 with your desired username and password
|
|
#* Make sure you leave all the punctuation and code, such as the single quotes, intact
|
|
# Save the file
|
|
# Using FTP or your web interface, upload ''store.php'' to your server. Make sure that the filename is correct
|
|
#* If you've uploaded the file correctly you should be able to view it in your browser (eg, http://example.com/store.php)
|
|
# In TiddlyWiki, go to the ''Saving'' tab of the ''control panel'' {{$:/core/images/options-button}} and enter the following information:
|
|
#* Your username as the wiki name
|
|
#* Your password
|
|
#* The URL of the ''store.php'' file (//''not'' the URL of the wiki, this must the full URL to the ''store.php'' file//)
|
|
|
|
The control panel ''Saving'' tab includes the following configuration options:
|
|
|
|
|!Name |!Description |
|
|
|Server URL |The full URL to the ''store.php'' file on your server |
|
|
|Upload filename |The filename used to save the TiddlyWiki (defaults to ''index.html'') |
|
|
|Upload directory |The relative path from ''store.php'' to the directory used for saving the file |
|
|
|Backup directory |The relative path from ''store.php'' to the directory used for backups |
|