From 3d8ffba2fa0344bc560351720be58596592cec75 Mon Sep 17 00:00:00 2001 From: Denis Flaven Date: Thu, 3 Feb 2011 09:41:32 +0000 Subject: [PATCH] Mention that the database user must have the "CREATE VIEW and TRIGGER" privileges for the setup to work fine. SVN:trunk[1063] --- setup/index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup/index.php b/setup/index.php index e434f8341..6abccc902 100644 --- a/setup/index.php +++ b/setup/index.php @@ -784,7 +784,7 @@ function DatabaseServerSelection(SetupWebPage $oP, $aParamValues, $iCurrentStep) $aForm[] = array('label' => "Server name$sRedStar:", 'input' => "", 'help' => 'E.g. "localhost", "dbserver.mycompany.com" or "192.142.10.23"'); $aForm[] = array('label' => "User name$sRedStar:", 'input' => "", - 'help' => 'The account must have the following privileges: SELECT, INSERT, UPDATE, DELETE, CREATE, ALTER'); + 'help' => 'The account must have the following privileges on the database: SELECT, INSERT, UPDATE, DELETE, CREATE, ALTER, CREATE VIEW, TRIGGER'); $aForm[] = array('label' => 'Password:', 'input' => ""); $oP->form($aForm); $oP->add("\n");