Преглед изворни кода

Mention that the database user must have the "CREATE VIEW and TRIGGER" privileges for the setup to work fine.

git-svn-id: http://svn.code.sf.net/p/itop/code/trunk@1063 a333f486-631f-4898-b8df-5754b55c2be0
dflaven пре 14 година
родитељ
комит
9e512c624e
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      setup/index.php

+ 1 - 1
setup/index.php

@@ -784,7 +784,7 @@ function DatabaseServerSelection(SetupWebPage $oP, $aParamValues, $iCurrentStep)
 		$aForm[] = array('label' => "Server name$sRedStar:", 'input' => "<input id=\"db_server\" type=\"text\" name=\"db_server\" value=\"{$aParamValues['db_server']}\">",
 						'help' => 'E.g. "localhost", "dbserver.mycompany.com" or "192.142.10.23"');
 		$aForm[] = array('label' => "User name$sRedStar:", 'input' => "<input id=\"db_user\" type=\"text\" name=\"db_user\" value=\"{$aParamValues['db_user']}\">",
-						'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' => "<input id=\"db_pwd\" type=\"password\" name=\"db_pwd\" value=\"{$aParamValues['db_pwd']}\">");
 		$oP->form($aForm);
 		$oP->add("</fieldset>\n");