Browse Source

Modifications for the new setup file

Stefan Fischer 12 years ago
parent
commit
872a1ff0f2
1 changed files with 32 additions and 1 deletions
  1. 32 1
      README.md

+ 32 - 1
README.md

@@ -10,13 +10,44 @@ 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.
+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 v011
+======
+Added dedicated setup script, which will create the database and the config file: settings.php
+
+~~~~~~~~~ settings.php start ~~~~~~~~~~~~~~
+<?php
+    //you can disable registration to the firefox sync server here,
+    // by setting ENABLE_REGISTER to false
+    //
+    //
+    //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://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");
+
+?>
+~~~~~~~~~ settings.php end ~~~~~~~~~~
+
+
 FSyncMS v010
 ======
 MYSQL Support