diff --git a/ChangeLog b/ChangeLog
index 20d2be104..8573e1718 100755
--- a/ChangeLog
+++ b/ChangeLog
@@ -5,6 +5,9 @@ phpMyAdmin - Changelog
$Id$
$Source$
+2003-03-05 Marc Delisle
+ The default configuration of Apache of some Linux distributions,
+ for example Redhat 8, has a wrong way of interpreting .php files.
+
+ It uses two different (and conflicting) set of directives:
+
+
+ SetOutputFilter PHP
+ SetInputFilter PHP
+
+
+ and
+
+
+ AddType application/x-httpd-php .php
+
+
+ In the case we saw, one set of directives was in httpd.conf, the other
+ set was in php.conf.
+ The recommended way is with AddType, so just put comments
+ on the first set of lines and restart Apache:
+
+
+ #SetOutputFilter PHP
+ #SetInputFilter PHP
+
+