clarification

This commit is contained in:
Marc Delisle
2002-07-23 16:05:58 +00:00
parent 7e0490c909
commit 7fc0577e55

View File

@@ -570,11 +570,12 @@ $cfg['PmaAbsoluteUri'] = (!empty($_SERVER['HTTPS']) ? 'https' : 'http') . '://'
create a new database for phpmyadmin:<br />
<tt>&nbsp;&nbsp;CREATE DATABASE phpmyadmin;</tt><br />
Note that &quot;controluser&quot; must have
<tt>SELECT, INSERT</tt> and <tt>DELETE</tt> privileges on the
bookmark table. Here is a query to set up those privileges
(using &quot;pma&quot; as the controluser):<br />
<tt>SELECT, INSERT</tt> and <tt>DELETE</tt> privileges on this
database. Here is a query to set up those privileges
(using &quot;phpmyadmin&quot; as the database name, and
&quot;pma&quot; as the controluser):<br />
<tt>
&nbsp;&nbsp;GRANT SELECT,INSERT,DELETE ON &lt;pmadb&gt; to 'pma'@localhost;
&nbsp;&nbsp;GRANT SELECT,INSERT,DELETE ON phpmyadmin.* to 'pma'@localhost;
</tt><br />
do <b>not</b> give any other user rights on this database.
</li>