From: Banana Date: Sun, 12 Jun 2022 11:54:29 +0000 (+0200) Subject: fixed install docs and updated default account data X-Git-Tag: v2.8~2 X-Git-Url: http://91.132.146.200/gitweb/?a=commitdiff_plain;h=6e5f07588d1fae9a4361ee44176d2c06e962450c;p=insipid.git fixed install docs and updated default account data --- diff --git a/ChangeLog b/ChangeLog index 80e3240..3dcc785 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +version 2.8 - Wastelands () + + + Fixed documentation + version 2.7 - Sacred Grove (2022-06-12) + Fixed bug #12. Missing translation key diff --git a/VERSION b/VERSION index a481f67..c97a553 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2.7 - Sacred Grove +2.8 - Wastelands diff --git a/documentation/installation.txt b/documentation/installation.txt index eedc620..b93ccb1 100644 --- a/documentation/installation.txt +++ b/documentation/installation.txt @@ -18,13 +18,13 @@ Create your config file. Copy webroot/config.default.php to webroot/config.php Modify at least the following settings in this file: -- define('DB_HOST','127.0.0.1'); <= The database server hostname you are using -- define('DB_USERNAME','user'); <= The database username you are using -- define('DB_PASSWORD','test'); <= The database password you are using -- define('DB_NAME','insipid'); <= Database name on your database server -- define('FRONTEND_USERNAME','luke'); <= The frontend username. Please change the default -- define('FRONTEND_PASSWORD','father'); <= The frontend password. Please change the default -- define('ABSOLUTE_PATH', '/path/to/insipid/on/your/webserver'); <= Absolute path where insipid is located in your webserver +- const DB_HOST = '127.0.0.1; <= The database server hostname you are using +- const DB_USERNAME = 'user' <= The database username you are using +- const DB_PASSWORD = 'test; <= The database password you are using +- const DB_NAME = 'insipid' <= Database name on your database server +- const FRONTEND_USERNAME = 'han'; <= The frontend username. Please change the default +- const FRONTEND_PASSWORD = 'solo'; <= The frontend password. Please change the default +- const ABSOLUTE_PATH = '/path/to/insipid/on/your/webserver'; <= Absolute path where insipid is located in your webserver 5. Prepare SQL file Copy and modify documentation/insipid-edit-me.sql and replace the placeholder. diff --git a/webroot/config.default.php b/webroot/config.default.php index 43d307d..1c0cb00 100644 --- a/webroot/config.default.php +++ b/webroot/config.default.php @@ -34,8 +34,8 @@ const DB_NAME = 'insipid'; # Database name on your database server const DB_PREFIX = 'insipid'; # a _ is added automatically as separation # user config -const FRONTEND_USERNAME = 'luke'; -const FRONTEND_PASSWORD = 'father'; +const FRONTEND_USERNAME = 'han'; +const FRONTEND_PASSWORD = 'solo'; # absolute path of webroot const ABSOLUTE_PATH = '/path/to/insipid/webroot';