Browse Source

FSyncMS v010
======
MYSQL Support

balu 12 years ago
parent
commit
93cf483ce1
3 changed files with 649 additions and 599 deletions
  1. 21 4
      README
  2. 12 3
      settings.php
  3. 616 592
      weave_storage.php

+ 21 - 4
README

@@ -1,19 +1,36 @@
+FSyncMS
+=======
+
+PHP Sync Server für Firefox Sync
+Eine erweiterung des Weave-Minimal Server (dessen Support leider eingestellt wurde).
+
+Die derzeit aktuelle Versionen,
+sowie alte Versionen und Anleitungen sind hier:
+
+https://www.ohnekontur.de/category/technik/sync/fsyncms/
+
+zu finden.
+Ein Umzug zu Github sowie weitere Erweiterungen sind in Planung.
+Stay tuned.
+
+
 Visit http://www.ohnekontur.de/2011/07/24/how-to-install-fsyncms-firefox-sync-eigener-server/ for install instructions
 Visit http://www.ohnekontur.de for the newest version
 
+FSyncMS v010
+======
+MYSQL Support
 
 FSyncMS v 09
-
+======
 Change Password now supported 
 working with firefox 12 (and lower)
 
 Changelog:
 Added change Password feature
 
--------------------------------
-
 FSyncMS v 08
-
+======
 Should be working with firefox 11 and lower (tested with 11)
 
 Changelog:

+ 12 - 3
settings.php

@@ -3,12 +3,21 @@
     // by setting ENABLE_REGISTER to false
     //
     //
-    define("ENABLE_REGISTER",false);
-    //define("ENABLE_REGISTER", true);
+    //define("ENABLE_REGISTER",false);
+    define("ENABLE_REGISTER", true);
 
 
     //pleas set the URL where firefox clients find the root of 
     // firefox sync server
     // this should end with a /
-    define("FSYNCMS_ROOT","https://www.your.domain/sync/");
+    //
+    define("FSYNCMS_ROOT","https://DOMAIN.de/Folder_und_ggf_/index.php/");
+
+    //MYSQL Params
+    define("MYSQL_ENABLE", false);
+    define("MYSQL_HOST","localhost");
+    define("MYSQL_DB","databaseName");
+    define("MYSQL_USER", "databaseUserName");
+    define("MYSQL_PASSWORD", "databaseUserPW");
+
 ?>

File diff suppressed because it is too large
+ 616 - 592
weave_storage.php


Some files were not shown because too many files changed in this diff