diff --git a/ChangeLog b/ChangeLog index d1153e5b6..b13b47f4a 100755 --- a/ChangeLog +++ b/ChangeLog @@ -5,6 +5,9 @@ phpMyAdmin - Changelog $Id$ $Source$ +2001-07-12 Marc Delisle + * Documentation.html: added a FAQ entry about upload errors + 2001-07-12 Loïc Chapeaux * tbl_properties.php3: fixed an IE5.0 display bug and an other one with Mozilla. diff --git a/Documentation.html b/Documentation.html index fbfdeaeb1..0aa3a3d65 100755 --- a/Documentation.html +++ b/Documentation.html @@ -692,6 +692,16 @@ So, you must have PHP4 >= 4.0.4 and Zlib support (--with-zlib).

+

+ I try to upload a file and I get:
+ Error MySQL said: The file '/tmp/phpkvpp60' must be in the database directory or be readable by all
+
+ Your uploaded file is saved by PHP in the "upload dir", as defined in php.ini by the variable upload_tmp_dir (usually the system default is /tmp). If this directory is not readable by all, the MySQL server (which must be running on the same machine) cannot open the file (except if running as root, which is not recommended). +
+ The system administrator can do a "chmod 777 /tmp" to enable uploads. +

+ +