From 784bd8c7cc02c15bb1e136a2bba22767d0bb69d4 Mon Sep 17 00:00:00 2001 From: Wikinaut Date: Fri, 11 May 2018 01:10:33 +0200 Subject: [PATCH] Update settings.json.template harmonizing the database name. "store" is the table name - not to be used here! Database name must not contain "-", but can contain "_". See https://github.com/ether/etherpad-lite/wiki/How-to-use-Etherpad-Lite-with-MySQL --- settings.json.template | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/settings.json.template b/settings.json.template index 699880bd..b5b1ccfb 100644 --- a/settings.json.template +++ b/settings.json.template @@ -45,12 +45,14 @@ }, /* An Example of MySQL Configuration + See https://github.com/ether/etherpad-lite/wiki/How-to-use-Etherpad-Lite-with-MySQL + "dbType" : "mysql", "dbSettings" : { "user" : "root", "host" : "localhost", "password": "", - "database": "store", + "database": "etherpad_lite_db", "charset" : "utf8mb4" }, */