From 44a02420d5db1c3a23defff5eeacdea24b8bc8e3 Mon Sep 17 00:00:00 2001
From: Sebastian Mendel
+ libraries/config.default.php.
The parameters which relate to design (like colors) are placed in themes/themename/layout.inc.php. You might also want to create config.footer.inc.php and config.header.inc.php files to add your site specific code to be included on start and end of each page.
@@ -732,14 +732,17 @@ GRANT ALL PRIVILEGES ON user_base.* TO 'real_user'@localhost IDENTIFIED BY 'real The keys can be numeric or character.So generally use '_' to split up mimetype and subtype, and '__' to provide a +
So generally use '_' to split up mimetype and subtype, and '__' to provide a transform function.
-All filenames containing no '__' in themselves are not shown as valid transform +
All filenames containing no '__' in themselves are not shown as valid transform functions in the dropdown.
-Please see the libraries/transformations/TEMPLATE file for adding your own transform +
Please see the libraries/transformations/TEMPLATE file for adding your own transform function. See the libraries/transformations/TEMPLATE_MIMETYPE for adding a mimetype without a transform function. Also note the introduction of a function description in the language files. For each function a $strTransformation_[filename without .inc.php] has to exist.
-You can use the template generator to generate new functions and entries in the +
You can use the template generator to generate new functions and entries in the language file.
-To create a new transform function please see +
To create a new transform function please see libraries/transformations/template_generator.sh. To create a new, empty mimetype please see libraries/transformations/template_generator_mimetype.sh.
-A transform function always gets passed three variables:
+A transform function always gets passed three variables:
In php.ini, set mysql.max_links higher than 1.
- This is most likely because in php.ini, your file_uploads - parameter is not set to "on". -
+ 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".
- This happens because the MySQL directive lower_case_table_names + 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 your my.ini file that should be located in your Windows
- directory and add the following line to the group [mysqld]:
- set-variable = 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';
-
set-variable = 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';
- This is a - PHP 4.2.3 bug. -
+ Some characters are being truncated in my queries, or I + get characters randomly added. I am running PHP 4.2.3. + +This is a PHP 4.2.3 bug. +
- A tip from Jose Fandos: put a comment on the following two lines
- in httpd.conf, like this:
- # mod_gzip_item_include file \.php$
- # mod_gzip_item_include mime "application/x-httpd-php.*"
- as this version of mod_gzip on Apache (Windows) has problems handling
- PHP scripts. Of course you have to restart Apache.
-
A tip from Jose Fandos: put a comment on the following two lines + in httpd.conf, like this:
+ ++# mod_gzip_item_include file \.php$ +# mod_gzip_item_include mime "application/x-httpd-php.*" ++ +
as this version of mod_gzip on Apache (Windows) has problems handling + PHP scripts. Of course you have to restart Apache.
- This is a permission problem. Right-click on the phpmyadmin folder + +
This is a permission problem. Right-click on the phpmyadmin folder and choose properties. Under the tab Security, click on "Add" and select the user "IUSR_machine" from the list. Now set his - permissions and it should work. -
+ permissions and it should work.- This is a PHP bug that occur when + db_details_structure.php with plenty of tables). + +
This is a PHP bug that occur when GZIP output buffering is enabled. If you turn off it (by $cfg['OBGzip'] = false - in config.inc.php), it should work. This bug will be fixed in PHP 5.0.0. -
+ in config.inc.php), it should work. This bug will be fixed in + PHP 5.0.0.- This can happen due to a MySQL bug when having database / table names with + My MySQL server sometimes refuses queries and returns the + message 'Errorcode: 13'. What does this mean? + +
This can happen due to a MySQL bug when having database / table names with upper case characters although lower_case_table_names is set to 1. To fix this, turn off this directive, convert all database and table names to lower case and turn it on again. Alternatively, there's a bug-fix - available starting with MySQL 3.23.56 / 4.0.11-gamma. -
+ available starting with MySQL 3.23.56 / 4.0.11-gamma.
- It is possible to configure Apache in such a way that PHP has problems
- interpreting .php files.
-
- The problems occur when two different (and conflicting) set of directives
- are used:
-
-
- SetOutputFilter PHP
- SetInputFilter PHP
-
- and
-
-
- AddType application/x-httpd-php .php
-
-
- In the case we saw, one set of directives was in
+ and the fields are duplicated.
+
+
It is possible to configure Apache in such a way that PHP has problems + interpreting .php files.
+ +The problems occur when two different (and conflicting) set of directives + are used:
+ ++SetOutputFilter PHP +SetInputFilter PHP ++ +
and
+ +AddType application/x-httpd-php .php+ +
In the case we saw, one set of directives was in
/etc/httpd/conf/httpd.conf, while
the other set was in /etc/httpd/conf/addon-modules/php.conf.
The recommended way is with AddType, so just comment out
- the first set of lines and restart Apache:
-
-
- #SetOutputFilter PHP
- #SetInputFilter PHP
-
-
+#SetOutputFilter PHP +#SetInputFilter PHP +
- This problem is known to happen when the server is running Turck MMCache - but upgrading MMCache to version 2.3.21 solves the problem. -
+ +This problem is known to happen when the server is running Turck MMCache + but upgrading MMCache to version 2.3.21 solves the problem.
- Yes.
-
+
+
Yes.
However, phpMyAdmin needs to be backwards compatible to php4. This is why
you won't be able to run phpMyAdmin having enabled E_STRICT in your
- error_reporting settings.
-
- Yes. This procedure was tested with phpMyAdmin 2.6.1, PHP 4.3.9 in ISAPI + +
Yes. This procedure was tested with phpMyAdmin 2.6.1, PHP 4.3.9 in ISAPI mode under IIS 5.1.
-Yes. This problem affects phpMyAdmin ("Call to undefined function pma_reloadnavigation"), so upgrade your PHP to the next version.