From 74dfeea08b0697284d59667d15baaa807bfc2266 Mon Sep 17 00:00:00 2001 From: Tim Zandbergen Date: Fri, 10 Dec 2021 23:10:27 +0100 Subject: [PATCH] Add note to db-password containing % causes error Closes #1154. --- docs/install.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/install.rst b/docs/install.rst index 771b7edb..6f29dc29 100644 --- a/docs/install.rst +++ b/docs/install.rst @@ -26,7 +26,7 @@ To change these values correctly, only update the second parameter of the functi define('PSM_DB_HOST', 'db_host'); define('PSM_DB_NAME', 'db_name'); define('PSM_DB_USER', 'db_user'); - define('PSM_DB_PASS', 'db_user_password'); + define('PSM_DB_PASS', 'db_user_password'); NOTE: password containing '%' will cause an error. define('PSM_DB_PORT', 'most likely 3306, may also be empty'); For example: to change your username you should ONLY change the 'db\_user' part.