Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
titleURI-List
String SETTINGS_GENERAL = "General";
String SETTINGS_UI = "User_Interface";
String SETTINGS_NETWORK = "Network";
String SETTINGS_DYN_DNS = "DynDNS";
String SETTINGS_EXPERT = "Expert";
String SETTINGS_DIALOG = "Dialogs";
String SETTINGS_PLUGIN = "Plugins";
String SETTINGS_INFO = "Information";
String PROBLEM_UNSYNCED_FOLDER = "Unsynchronized-Folder";
String PROBLEM_FOLDER_DATABASE = "Folder-Database";
String PROBLEM_DEVICE_DISCONNECTED = "Disconnected-Device";
String PROBLEM_DUPLICATE_FILENAME = "Duplicate-Filename";
String PROBLEM_ILLEGAL_END_CHARS = "Illegal-End-Chars";
String PROBLEM_ILLEGAL_CHARS = "Illegal-Chars";
String PROBLEM_RESERVED_WORD = "Reserved-Word";
String PROBLEM_FILENAME_TOO_LONG = "File-Name-Too-Long";
String PROBLEM_NO_CONFLICT_DETECTION_POSSIBLE = "Version_Conflict_With_Old_Client";
String PROBLEM_NO_OWNER = "No-Owner";
String PROBLEM_FILE_CONFLICT = "Conflict_handling";
String SCRIPT_EXECUTION = "Script_execution";
String DEFAULT_FOLDER = "Default_Folder";
String TRANSFER_MODES = "Transfer_Modes";
String SECURITY_PERMISSION = "Security_Permissions";
String SERVER_CLIENT_DEPLOYMENT = "Server_client_deployment";
String UI_LOCK = "User-interface-lock";
String SYSTEM_SERVICE = "System_Service";
String EXCLUDING_FILES_FROM_SYNCHRONIZATION = "Excluding_Files_from_Synchronization";
String MEMORY_CONFIGURATION = "Memory_configuration";
String LIMITED_CONNECTIVITY = "Limited_connectivity";
String WEBDAV = "WebDAV";


An For example the users are given for transfer mode a help link after clicking (question)

Image Added


In the code there is the following URI as string encoded:

Code Block
String TRANSFER_MODES = "Transfer_Modes";


There are two ways to handle these URIs:

After creating this article a server administrator can create a redirect in the Apache (.htaccess) file as:

Code Block
RewriteRule "^Transfer_Mode" "https://wiki.powerfolder.com/spaces/PF/pages/302081/Transfer+Mode+Configuration" 


  • Redirecting all the URIs to the main Wiki as:
Code Block
RewriteRule "^Transfer_Mode" "https://wiki.powerfolder.com/$1" 


(warning) There is no global rule to redirect all the URIs, all the URIs should have to be redirected individually in the Apache dealing the Wiki-Webserver.