From 9053a4a90d82d64eb64f9934bb7dd787826c71dc Mon Sep 17 00:00:00 2001
From: "Alexander M. Turek"
- [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';
+
[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.
-