diff --git a/ChangeLog b/ChangeLog index 66036330d..eb4978970 100755 --- a/ChangeLog +++ b/ChangeLog @@ -5,6 +5,10 @@ phpMyAdmin - Changelog $Id$ $Source$ +2002-09-10 Alexander M. Turek + * Documentation.html: Added an FAQ entry about lower_case_table_names on + Windows machines. + 2002-09-09 Alexander M. Turek * lang/hindi-utf-8.inc.php3: Updates, thanks again to Girish Nair (girish_nair). diff --git a/Documentation.html b/Documentation.html index 8e1648de3..fa761173c 100755 --- a/Documentation.html +++ b/Documentation.html @@ -1757,13 +1757,28 @@ $cfg['PmaAbsoluteUri'] = (!empty($_SERVER['HTTPS']) ? 'https' : 'http') . '://'

- [1.22] I don't see the "Location of text file" field, so + [1.22] I don't see the "Location of text file" field, so I cannot upload.
This is most likely because in php.ini, your file_uploads parameter is not set to "on".

+

+ [1.23] I'm running MySQL on a Win32 machine. Each time I create a new + table the table and field names are changed to lowercase! +
+ This happens because the MySQL directive lower_case_table_names + defaults to 1 (ON) in the Win32 version of MySQL. You can change + this behavior by simply changing the directive to 0 (OFF):
+ Just edit you my.ini file that should be located in your Windows + directory and add the following line:
+ lower-case-table-names=0
+ Next, save the file and restart the MySQL service. You can always check the + value of this directive using the query
+ SHOW VARIABLES LIKE 'lower_case_table_names'; +

+

[2. Configuration]

@@ -2332,13 +2347,13 @@ $cfg['PmaAbsoluteUri'] = (!empty($_SERVER['HTTPS']) ? 'https' : 'http') . '://' Validator itself, is © 2001 Upright Database Technology. We utilize it as free XML-SOAP service.
- The overload module is crucial to the functionality of the validator + The overload module is crucial to the functionality of the validator service.

[6.15] I want to add a BLOB field and put an index on it, but MySQL - says "BLOB column '...' used in key specification without a key + says "BLOB column '...' used in key specification without a key length".
The right way to do this, is to create the field without any indexes, @@ -2347,7 +2362,7 @@ $cfg['PmaAbsoluteUri'] = (!empty($_SERVER['HTTPS']) ? 'https' : 'http') . '://' set a size to the index, which is the condition to create an index on a BLOB field.
-

+

[7. phpMyAdmin project]