added a FAQ entry about the logout bug and a link to it at the welcome page

This commit is contained in:
Loïc Chapeaux
2001-08-22 17:13:12 +00:00
parent f6d3d95626
commit 3ca18844fc
3 changed files with 37 additions and 22 deletions

View File

@@ -6,14 +6,14 @@ $Id$
$Source$
2001-08-22 Olivier M<>ller <om@omnis.ch>
* main.php3: relooked the start page with the help of Lo<4C>c
* main.php3: relooked the start page with the help of Lo<4C>c.
* main.php3: allow everybody to look at the server vars and status
(removed check about 'References_priv').
* lang/*: added $strServerChoice and $strPmaDocumentation.
* images/item.gif: used on main.php3
* images/item.gif: used on main.php3.
2001-08-22 Marc Delisle <lem9@users.sourceforge.net>
* Documentation.html: added a FAQ about index creation
* Documentation.html: added a FAQ about index creation.
2001-08-22 Lo<4C>c Chapeaux <lolo@phpheaven.net>
* tbl_properties.php3, line 983; lang/*: added $strDropTable.
@@ -23,6 +23,8 @@ $Source$
* footer.inc.php3, lines 9-10; lib.inc.php3, line 162: the "</body>" html
tag was lacking.
* db_stats.php3, lines 14-12: optimized a bit.
* main.php3, lines 298-299; Documentation.html, lines 694-705: added a FAQ
entry about the logout bug and a link to it at the welcome page.
2001-08-21 Lo<4C>c Chapeaux <lolo@phpheaven.net>
* sql.php3: fixed a syntax error (is_defined is not a function).

View File

@@ -203,7 +203,8 @@
<li> It is recommended that you protect the directory in which
you installed phpMyAdmin (unless it's on a closed intranet),
for example with HTTP-AUTH (in a <i>.htaccess</i> file). See the
FAQ section for additional information.</li>
<a class="navigation" href="#faq">FAQ section</a> for additional
information.</li>
<li> Open the file
<i>&lt;www.your-host.com&gt;/&lt;your-install-dir&gt;/index.php3</i>
in your browser. phpMyAdmin should now display a welcome screen
@@ -436,8 +437,8 @@
<dt><b>$cfgAllowUserDropDatabase </b>boolean</dt>
<dd>
Defines whether standard users (non administrator) are allowed to
delete their own database or not. If set as FALSE, the link
"Drop Database" will not be shown, and even a "DROP DATABASE mydatabase"
delete their own database or not. If set as FALSE, the link "Drop
Database" will not be shown, and even a "DROP DATABASE mydatabase"
will be rejected. Quite practical for ISP's with many customers.
<br /><br />
</dd>
@@ -690,6 +691,18 @@
</li>
</ul>
<a name="login_bug"></a>
<p>
<b>When using advanced authentification, an user who logged out can not
relogs in with the same nick.</b>
<br />
This is related to the authentification mechanism (protocol) used by
phpMyAdmin. We plan to change it as soon as we may find enough free time
to do it, but you can bypass this problem: just close all the opened
browser windows and then go back to phpMyAdmin. You should be able to
logs in again.
</p>
<p>
<b>I would like to help out with the development of phpMyAdmin. How should
I proceed?</b>
@@ -802,7 +815,7 @@
</p>
<p>
<b>How can I GZip or Bzip a dump or a CSV export. It seems to not work?</b>
<b>How can I GZip or Bzip a dump or a CSV export. It seem to not work?</b>
<br />
These features are based on the <tt>gzencode()</tt> and
<tt>bzcompress()</tt> php functions to be more independent of the platform
@@ -852,17 +865,16 @@
And that fixes the \r\n problem with file uploads!
</p>
<p>
<b>When I create a table, I click the Index checkbox for 2 fields
and phpMyAdmin generates only one index with those 2 fields.</b>
<br />
In phpMyAdmin 2.2.0, this is the way to create a multi-fields index.
If you want two indexes, create the first one when creating the table,
save, then display the table properties and click the Index link to
create the other index.
</p>
<p>
<b>When I create a table, I click the Index checkbox for 2 fields and
phpMyAdmin generates only one index with those 2 fields.</b>
<br />
In phpMyAdmin 2.2.0, this is the way to create a multi-fields index. If you
want two indexes, create the first one when creating the table, save, then
display the table properties and click the Index link to create the other
index.
</p>
<!-- DEVELOPERS -->

View File

@@ -295,7 +295,8 @@ if ($server > 0
<td valign="baseline"><img src="images/item.gif" width="7" height="7" alt="item" /></td>
<td>
<a href="index.php3?<?php echo$common_url_query; ?>&old_usr=<?php echo urlencode($PHP_AUTH_USER); ?>" target="_top">
<b><?php echo $strLogout; ?></b></a>
<b><?php echo $strLogout; ?></b></a>&nbsp;
<a href="<?php echo $cfgPmaAbsoluteUri; ?>Documentation.html#login_bug" target="documentation">(*)</a>
</td>
</tr>
<?php
@@ -405,11 +406,11 @@ if ($server > 0
<th colspan="2">phpMyAdmin</th>
</tr>
<!-- documentation -->
<!-- Documentation -->
<tr>
<td valign="baseline"><img src="images/item.gif" width="7" height="7" alt="item" /></td>
<td>
<a href="Documentation.html" target="_new"><b><?php echo $strPmaDocumentation; ?></b></a>
<a href="Documentation.html" target="documentation"><b><?php echo $strPmaDocumentation; ?></b></a>
</td>
</tr>