duplicate field names bug

This commit is contained in:
Marc Delisle
2003-03-05 10:50:35 +00:00
parent 01c447a2d3
commit 7a33231818
2 changed files with 37 additions and 1 deletions

View File

@@ -5,6 +5,9 @@ phpMyAdmin - Changelog
$Id$
$Source$
2003-03-05 Marc Delisle <lem9@users.sourceforge.net>
* Documentation.html, faq 1.29 about the "duplicate field names" problem
2003-03-03 Alexander M. Turek <rabus@users.sourceforge.net>
* tbl_replace_fields.php3: Bugfix: User was unable to insert values
containing quotes.

View File

@@ -2218,6 +2218,39 @@ To create a new, empty mimetype please see libraries/transformations/template_ge
available starting with MySQL&nbsp;3.23.56 / 4.0.11-gamma.
</p>
<a name="faq-1-29"></a>
<h4>
[1.29] When I create a table or modify a field, I get an error
and the fields are duplicated.
</h4>
<p>
The default configuration of Apache of some Linux distributions,
for example Redhat 8, has a wrong way of interpreting .php files.
<br /><br />
It uses two different (and conflicting) set of directives:
<br /><br />
<tt>
SetOutputFilter PHP<br />
SetInputFilter PHP<br />
</tt>
<br />
and
<br />
<tt>
AddType application/x-httpd-php .php
</tt>
<br /><br />
In the case we saw, one set of directives was in httpd.conf, the other
set was in php.conf.<br />
The recommended way is with <tt>AddType</tt>, so just put comments
on the first set of lines and restart Apache:
<br /><br />
<tt><b>
#SetOutputFilter PHP<br />
#SetInputFilter PHP<br /></b>
</tt>
</p>
<a name="faqconfig"></a><br />
<h3>[2. Configuration]</h3>
@@ -3254,4 +3287,4 @@ Original Credits of Version 2.1.0
</p>
</body>
</html>
</html>