* added a faq entry about server crashes and output compression problems;

* changed the faq entry about "headers already sent by..." because users should also ensure the beginning of the config file is the php starting tag;
* fixed misc typos.
This commit is contained in:
Loïc Chapeaux
2001-09-22 10:25:31 +00:00
parent dff45e3079
commit 03404619ab
2 changed files with 31 additions and 8 deletions

View File

@@ -5,6 +5,14 @@ phpMyAdmin - Changelog
$Id$ $Id$
$Source$ $Source$
2001-09-22 Lo<4C>c Chapeaux <lolo@phpheaven.net>
* Documentation.html:
- added a faq entry about server crashes and output compression problems;
- changed the faq entry about "headers already sent by..." because users
should also ensure the beginning of the config file is the php starting
tag;
- misc typos.
2001-09-21 Marc Delisle <lem9@users.sourceforge.net> 2001-09-21 Marc Delisle <lem9@users.sourceforge.net>
* lang/slovak-iso.inc.php3 updates, thanks to Lubos Klokner. * lang/slovak-iso.inc.php3 updates, thanks to Lubos Klokner.
* lang/italian.inc.php3 updates, thanks to Pietro Danesi. * lang/italian.inc.php3 updates, thanks to Pietro Danesi.

View File

@@ -1,3 +1,4 @@
<?xml version="1.0" encoding="ISO-8859-1"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "DTD/xhtml1-transitional.dtd"> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US" lang="en-US"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US" lang="en-US">
<!-- $Id$ --> <!-- $Id$ -->
@@ -643,12 +644,26 @@
<h2>FAQ - Frequently Asked Questions</h2> <h2>FAQ - Frequently Asked Questions</h2>
<p>
<b>I'm running php 4+ and my server is crashing each time a specific action
is required or phpMyAdmin send a blank page to my browser, what can I
do?</b>
<br />
There is some known php bugs with output buffering and compression.<br />
Try to set the <tt>$cfgOBGzip</tt> directive to <tt>FALSE</tt> in your
<i>config.inc.php or .php3</i> file and the
<tt>zlib.output_compression</tt> directive to <tt>Off</tt> in your php
configuration file.
</p>
<p> <p>
<b>The error message "Warning: Cannot add header information - headers <b>The error message "Warning: Cannot add header information - headers
already sent by ..." is displayed, what's the problem?</b> already sent by ..." is displayed, what's the problem?</b>
<br /> <br />
Look at the end of your <i>config.inc.php or .php3</i> file, there must be Edit your <i>config.inc.php or .php3</i> file and ensure there is nothing
no blank lines or spaces after the <tt>?></tt>. (ie no blank lines, no spaces, no characters...) neither before the
<tt>&lt;?php</tt> tag at the beginning, neither after the <tt>?&gt;</tt>
tag at the end.
</p> </p>
<p> <p>
@@ -935,16 +950,16 @@
<p> <p>
<b>I have found a bug. How do I inform developpers?</b> <b>I have found a bug. How do I inform developpers?</b>
<br /> <br />
Our Bug Tracker is located at <a href="http://sourceforge.net/projects/phpmyadmin"> Our Bug Tracker is located at <a href="http://sourceforge.net/projects/phpmyadmin/">
http://sourceforge.net/projects/phpmyadmin</a> under the Bugs section. http://sourceforge.net/projects/phpmyadmin/</a> under the Bugs section.
<br /><br /> <br /><br />
But please first discuss your bug with other users: But please first discuss your bug with other users:
<br /> <br />
<a href="http://sourceforge.net/projects/phpmyadmin"> <a href="http://sourceforge.net/projects/phpmyadmin/">
http://sourceforge.net/projects/phpmyadmin</a> (and choose Forums) http://sourceforge.net/projects/phpmyadmin/</a> (and choose Forums)
<br /> <br />
<a href="http://www.phpwizard.net/projects/phpMyAdmin"> <a href="http://www.phpwizard.net/projects/phpMyAdmin/">
http://www.phpwizard.net/projects/phpMyAdmin</a> (and choose Support http://www.phpwizard.net/projects/phpMyAdmin/</a> (and choose Support
Forum) Forum)
</p> </p>