From f9312291a77242b9a5e2542d60df728e6cc76a8c Mon Sep 17 00:00:00 2001 From: "Alexander M. Turek" Date: Sun, 5 Jan 2003 23:36:41 +0000 Subject: [PATCH] FAQ 3.4 --- ChangeLog | 3 +++ Documentation.html | 27 ++++++++++++++++++++++++++- 2 files changed, 29 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index acf3901ff..8db1b5a33 100755 --- a/ChangeLog +++ b/ChangeLog @@ -5,6 +5,9 @@ phpMyAdmin - Changelog $Id$ $Source$ +2003-01-05 Alexander M. Turek + * Documentation.html: Added a note about "bug" #662602 (FAQ 3.4). + 2003-01-03 Marc Delisle * lang/estonian*, malay*: remove control M * lang/romanian: update, thanks to Valics Lehel diff --git a/Documentation.html b/Documentation.html index 46ee35dc4..efdc9399b 100755 --- a/Documentation.html +++ b/Documentation.html @@ -335,7 +335,7 @@ Then each of the true users should be granted a set of privileges on a set of particular databases. Normally you shouldn't give global privileges to an ordinary user, unless you understand - the impact of those privileges (for example, you are creating + the impact of those privileges (for example, you are creating a superuser).
For example, to grant the user real_user with all privileges on the database user_base:
@@ -1962,6 +1962,31 @@ $cfg['PmaAbsoluteUri'] = (!empty($_SERVER['HTTPS']) ? 'https' : 'http') . '://' mind that phpMyAdmin as of version 2.3.0 does not support InnoDB.

+

+ [3.4] I am unable to import dumps I created with the mysqldump tool + bundled with the MySQL server distribution. +
+ The problem is that mysqldump creates invalid comments like this:
+

+ -- MySQL dump 8.22
+ --
+ -- Host: localhost Database: database
+ ---------------------------------------------------------
+ -- Server version 3.23.54
+
+ The invalid part of the code is the horizontal line made of dashes that + appears once in every dump created with mysqldump. If you want to run your + dump you have to turn it into valid MySQL. This means, you have to add a + whitespace after the first to dashes of the line or add a # before it:
+ + -- -------------------------------------------------------
+
+ or
+ + #--------------------------------------------------------- + +

+

[4. ISPs, multi-user installations ]