From 3331e631bc44af31e31a430aa886fc390f657925 Mon Sep 17 00:00:00 2001 From: Carsten Rose <carsten.rose@math.uzh.ch> Date: Wed, 11 May 2016 15:57:45 +0200 Subject: [PATCH] DB Connection: initialize. E.g. 'set names utf8' - Administator Manual updated --- extension/Documentation/AdministratorManual/Index.rst | 3 +++ 1 file changed, 3 insertions(+) diff --git a/extension/Documentation/AdministratorManual/Index.rst b/extension/Documentation/AdministratorManual/Index.rst index 8b25d6090..a255c268b 100644 --- a/extension/Documentation/AdministratorManual/Index.rst +++ b/extension/Documentation/AdministratorManual/Index.rst @@ -88,6 +88,8 @@ Setup a *report* to manage all *forms*: Create a Typo3 page and insert a content +------------------------+----------------------------------+----------------------------------------------------------------------------+ | DB_NAME_TEST | DB_NAME_TEST=qfq_db_test | Used during development of QFQ | +------------------------+----------------------------------+----------------------------------------------------------------------------+ +| DB_INIT | DB_INIT=set names utf8 | Global init for using the database. | ++------------------------+----------------------------------+----------------------------------------------------------------------------+ | SESSION_NAME | SESSION_NAME=qfq | PHP Session name, by default 'qfq' | +------------------------+----------------------------------+----------------------------------------------------------------------------+ | SQL_LOG | SQL_LOG=sql.log | Filename to log SQL commands: relative to <ext_dir> or absolute. | @@ -114,6 +116,7 @@ Example: *<ext_dir>/config.ini* DB_PASSWORD = 12345678 DB_NAME = qfq_db DB_NAME_TEST = qfq_db_test + DB_INIT = set names utf8 SESSION_NAME = qfq SQL_LOG = sql.log SHOW_DEBUG_INFO = auto -- GitLab