From 07e1954d7d71e9ed0368cea85de01e7cca289e46 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Wed, 27 Feb 2002 22:04:36 +0000 Subject: [PATCH] new FAQ --- ChangeLog | 3 +++ Documentation.html | 16 +++++++++++++++- 2 files changed, 18 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 03bc11fff..e76a4138a 100755 --- a/ChangeLog +++ b/ChangeLog @@ -5,6 +5,9 @@ phpMyAdmin - Changelog $Id$ $Source$ +2002-02-27 Marc Delisle + * Documentation.html: new faq about letting users create their dbs + 2002-02-27 Loïc Chapeaux * libraries/common.lib.php3, lines 146-164: back to previous version. * db_stats, lines 227.243: "SHOW TABLE STATUS" requires MySQL 3.23.03+. diff --git a/Documentation.html b/Documentation.html index 2c596576c..8294d7e9f 100755 --- a/Documentation.html +++ b/Documentation.html @@ -1182,7 +1182,7 @@ is limited by the system administrator, and time limit is enforced.

-

[ISPs]

+

[ISPs, multi-user installations ]

I'm an ISP. Can I setup one central copy of phpMyAdmin or do I need to install it for each customer? @@ -1250,7 +1250,21 @@ phpMyAdmin's authentication, so remove it. +

+

+ Is it possible to let users create their own databases? +
+ Yes, but currently (phpMyAdmin 2.2.4) there is no visual way + to do this in our user management page. For example, let's say users + should be able to create databases with a name starting like their + username, type this in a query box: +
+
+ + GRANT SELECT, INSERT, UPDATE, DELETE, CREATE, DROP, INDEX, ALTER + ON `username%`.* TO 'username'@localhost; +

[Browsers or client OS]