activated www.phpmyadmin.net as project homepage: updated links & urls

This commit is contained in:
Olivier Müller
2002-04-03 20:49:07 +00:00
parent 14de7ca698
commit 0209f1b94c
5 changed files with 197 additions and 177 deletions

View File

@@ -5,6 +5,10 @@ phpMyAdmin - Changelog
$Id$ $Id$
$Source$ $Source$
2002-04-03 Olivier M<>ller <om@omnis.ch>
* activated www.phpmyadmin.net as project homepage, and
updated the urls in the documentation/links.
2002-04-03 Marc Delisle <lem9@users.sourceforge.net> 2002-04-03 Marc Delisle <lem9@users.sourceforge.net>
* tbl_indexes.php3, bug 538074: FULLTEXT is only supported since * tbl_indexes.php3, bug 538074: FULLTEXT is only supported since
MySQL 3.23.23; so before, SHOW KEYS does not show a column 'Comment' MySQL 3.23.23; so before, SHOW KEYS does not show a column 'Comment'

View File

@@ -79,8 +79,7 @@
<!-- TOP MENU --> <!-- TOP MENU -->
<ul> <ul>
<li><a class="navigation" href="http://www.phpwizard.net/projects/phpMyAdmin/">Official phpMyAdmin project homepage &nbsp;&nbsp;&nbsp;[ http://www.phpwizard.net/projects/phpMyAdmin/ ]</a></li> <li><a class="navigation" href="http://www.phpmyadmin.net/">Sourceforge phpMyAdmin project page &nbsp;&nbsp;&nbsp;[ http://www.phpmyadmin.net/ ]</a></li>
<li><a class="navigation" href="http://phpmyadmin.sourceforge.net/">Sourceforge phpMyAdmin download page &nbsp;&nbsp;&nbsp;[ http://phpmyadmin.sourceforge.net/ ]</a></li>
<li>Local documents: <li>Local documents:
<ul> <ul>
<li>Version history: <a class="navigation" href="ChangeLog">ChangeLog</a></li> <li>Version history: <a class="navigation" href="ChangeLog">ChangeLog</a></li>
@@ -1454,10 +1453,6 @@ $cfgPmaAbsoluteUri = (!empty($HTTPS) ? 'https' : 'http') . '://'
<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 />
<a href="http://www.phpwizard.net/projects/phpMyAdmin/">
http://www.phpwizard.net/projects/phpMyAdmin/</a> (and choose Support
Forum)
</p> </p>
<p> <p>

View File

@@ -1,16 +1,14 @@
phpMyAdmin 2.2.5 Documentation phpMyAdmin 2.2.6-dev Documentation
* Official phpMyAdmin project homepage [ * Sourceforge phpMyAdmin project page [
http://www.phpwizard.net/projects/phpMyAdmin/ ] http://www.phpmyadmin.net/ ]
* Sourceforge phpMyAdmin download page [
http://phpmyadmin.sourceforge.net/ ]
* Local documents: * Local documents:
+ Version history: ChangeLog + Version history: ChangeLog
+ General notes: README + General notes: README
+ License: LICENSE + License: LICENSE
* Documentation version: $Id: Documentation.html,v 1.169 2002/03/22 * Documentation version: $Id: Documentation.html,v 1.183 2002/04/03
12:04:53 loic1 Exp $ 02:39:25 lem9 Exp $
______________________________________________________________________ ______________________________________________________________________
Top - Requirements - Introduction - Installation - Top - Requirements - Introduction - Installation -
@@ -47,7 +45,8 @@ Introduction
* create (*) and read dumps of tables * create (*) and read dumps of tables
* export (*) and import data to CSV values * export (*) and import data to CSV values
* administer multiple servers and single databases * administer multiple servers and single databases
* communicate in more than 20 different languages * check referential integrity
* communicate in more than 38 different languages
(*) phpMyAdmin can compress (Zip, GZip -RFC 1952- or Bzip2 formats) (*) phpMyAdmin can compress (Zip, GZip -RFC 1952- or Bzip2 formats)
dumps and CSV exports if you use PHP4 >= 4.0.4 with Zlib support dumps and CSV exports if you use PHP4 >= 4.0.4 with Zlib support
@@ -105,6 +104,9 @@ Installation
* Http and cookie authentication modes are recommended in a * Http and cookie authentication modes are recommended in a
multi-user environment where you want to give users access to multi-user environment where you want to give users access to
their own database and don't want them to play around with others. their own database and don't want them to play around with others.
Nevertheless be aware that MS Internet Explorer seems to be really
buggy about cookies, at least till version 6. And php 4.1.1 is
also a bit buggy in this area!
* Http and cookie authentication modes are secure: the MySQL * Http and cookie authentication modes are secure: the MySQL
password does not need to be set in the phpMyAdmin configuration password does not need to be set in the phpMyAdmin configuration
file. (except for the "controluser" -see the Configuration file. (except for the "controluser" -see the Configuration
@@ -185,6 +187,14 @@ Configuration
version. E.g. version. E.g.
http://www.your_web.net/path_to_your_phpMyAdmin_directory/. http://www.your_web.net/path_to_your_phpMyAdmin_directory/.
Don't forget the slash at the end of your url. Don't forget the slash at the end of your url.
This setting can be dynamically completed. For example, you can
try to use such a kind of code:
$cfgPmaAbsoluteUri = (!empty($HTTPS) ? 'https' : 'http') . '://'
. $SERVER_NAME . (!empty($SERVER_PORT) ? ':' . $SERVER_PORT
: '')
. substr($SCRIPT_NAME, 0, strrpos($SCRIPT_NAME, '/')+1);
$cfgServers array $cfgServers array
Since version 1.4.2, phpMyAdmin supports the administration of Since version 1.4.2, phpMyAdmin supports the administration of
@@ -301,10 +311,17 @@ Configuration
'pma'@localhost; 'pma'@localhost;
$cfgServers[n]['relation'] string $cfgServers[n]['relation'] string
Since release 2.2.4 you can describe in a relation table which Since release 2.2.4 you can describe, in a special 'relation'
field is a key in another table. phpMyAdmin currently uses this table, which field is a key in another table (a foreign key).
to make clickable the data values that point to another table. phpMyAdmin currently uses this to
Currently, the keys must be numeric.
+ make clickable, when you browse the src table, the data
values that point to the dest table;
+ display links on the table properties page, to check
referential integrity (display missing foreign keys) for each
described key.
The keys can be numeric or character.
To use this functionality you have to: To use this functionality you have to:
+ create in the same database a table (for example 'relation') + create in the same database a table (for example 'relation')
@@ -476,13 +493,14 @@ Configuration
The color (HTML) #2 for table rows. The color (HTML) #2 for table rows.
$cfgBrowsePointerColor string [HTML color] $cfgBrowsePointerColor string [HTML color]
The color (HTML) used for the pointer in browse mode (does not $cfgBrowseMarkerColor string [HTML color]
work with NS4). The colors (HTML) used for the pointer and the marker in browse
mode (does not work with NS4).
$cfgBrowseMarkRow boolean The former feature enlights the row you're mouse is passing
If the value is 1, you can visually mark rows with the color in over and the latter lets you visually mark/unmark rows by
$cfgBrowsePointerColor, by clicking on them. Works on browsers clicking on them.
that support 'onmousedown'. You can disable both of these features by emptying the
convenient directive.
$cfgTextareaCols integer $cfgTextareaCols integer
$cfgTextareaRows integer $cfgTextareaRows integer
@@ -634,6 +652,10 @@ FAQ - Frequently Asked Questions
and password. Please modify your field names to align with current and password. Please modify your field names to align with current
standards. standards.
I cannot upload big dump files.
The first thing to check (or ask your host provider to check) is the
value of upload_max_filesize in php.ini.
[Configuration] [Configuration]
The error message "Warning: Cannot add header information - headers The error message "Warning: Cannot add header information - headers
@@ -777,6 +799,14 @@ FAQ - Frequently Asked Questions
Konqueror, or else they disappear. Gzip dumps give an error message. Konqueror, or else they disappear. Gzip dumps give an error message.
Testing needs to be done for Konqueror 2.2.2. Testing needs to be done for Konqueror 2.2.2.
I can't use the cookie authentication mode because Internet Explorer
never stores the cookies.
MS Internet Explorer seems to be really buggy about cookies, at least
till version 6. And thanks to Andrew Zivolup we've traced also a php
4.1.1 bug in this area!
Then, If you're running php 4.1.1, try to upgrade or downgrade... it
may works!
In Internet Explorer 5.0, I get Javascript errors when browsing my In Internet Explorer 5.0, I get Javascript errors when browsing my
rows. rows.
Upgrade to at least Internet Explorer 5.5SP2. Upgrade to at least Internet Explorer 5.5SP2.
@@ -829,8 +859,6 @@ FAQ - Frequently Asked Questions
http://sourceforge.net/projects/phpmyadmin/ under the Bugs section. http://sourceforge.net/projects/phpmyadmin/ under the Bugs section.
But please first discuss your bug with other users: But please first discuss your bug with other users:
http://sourceforge.net/projects/phpmyadmin/ (and choose Forums) http://sourceforge.net/projects/phpmyadmin/ (and choose Forums)
http://www.phpwizard.net/projects/phpMyAdmin/ (and choose Support
Forum)
I want to translate the messages to a new language or upgrade an I want to translate the messages to a new language or upgrade an
existing language, where do I start? existing language, where do I start?
@@ -1005,7 +1033,8 @@ P
Kristof Hamann, Thomas Kl<4B>ger, Lubos Klokner, Martin Marconcini, Kristof Hamann, Thomas Kl<4B>ger, Lubos Klokner, Martin Marconcini,
Girish Nair, David Nordenberg, Bernard M. Piller, Laurent Haas, Girish Nair, David Nordenberg, Bernard M. Piller, Laurent Haas,
"Sakamoto", Yuval Sarna, www.securereality.com.au, "Sakamoto", Yuval Sarna, www.securereality.com.au,
Alvar Soome, Peter Svec, Michael Tacelosky, Lu<EFBFBD>s V., Daniel Villanueva, Vinay, Alvar Soome, Peter Svec, Michael Tacelosky, Rachim Tamsjadi,
Lu<EFBFBD>s V., Algis Vainauskas, Daniel Villanueva, Vinay,
Ignacio Vazquez-Abrams, Chee Wai, Jakub Wilk, Thomas Michael Winningham. Ignacio Vazquez-Abrams, Chee Wai, Jakub Wilk, Thomas Michael Winningham.

7
README
View File

@@ -7,8 +7,7 @@ phpMyAdmin - Readme
Version 2.2.0 - August 2001 Version 2.2.0 - August 2001
--------------------------- ---------------------------
http://phpwizard.net/projects/phpMyAdmin/ http://www.phpmyadmin.net/
http://phpmyadmin.sourceforge.net/
Copyright (C) 1998-2000 Tobias Ratschiller <tobias@phpwizard.net> Copyright (C) 1998-2000 Tobias Ratschiller <tobias@phpwizard.net>
Copyright (C) 2001- Olivier M<>ller <om@omnis.ch> Copyright (C) 2001- Olivier M<>ller <om@omnis.ch>
@@ -50,7 +49,7 @@ phpMyAdmin - Readme
- communicate in more than 20 different languages - communicate in more than 20 different languages
Download: Download:
You can get the newest version at http://phpmyadmin.sourceforge.net/. You can get the newest version at http://www.phpmyadmin.net/.
Credits: Credits:
Please see the Documentation.txt/.html file. Please see the Documentation.txt/.html file.
@@ -65,7 +64,7 @@ phpMyAdmin - Readme
Basic documentation available in Documentation.txt/.html Basic documentation available in Documentation.txt/.html
Support: Support:
There is a support forum under http://phpwizard.net/phorum/list.php?f=1 There is are 2 support forums under http://www.phpmyadmin.net/
Enjoy! Enjoy!

View File

@@ -475,14 +475,7 @@ echo "\n";
<tr> <tr>
<td valign="baseline"><img src="<?php echo $item_img; ?>" width="7" height="7" alt="item" /></td> <td valign="baseline"><img src="<?php echo $item_img; ?>" width="7" height="7" alt="item" /></td>
<td> <td>
<a href="http://phpwizard.net/projects/phpMyAdmin/" target="_new"><?php echo $strHomepageOfficial; ?></a> <a href="http://www.phpMyAdmin.net/" target="_new"><?php echo $strHomepageOfficial; ?></a><br />
</td>
</tr>
<tr>
<td valign="baseline"><img src="<?php echo $item_img; ?>" width="7" height="7" alt="item" /></td>
<td>
<a href="http://phpmyadmin.sourceforge.net/" target="_new">
<?php echo $strHomepageSourceforge; ?></a><br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;[<a href="ChangeLog" target="_new">ChangeLog</a>] &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;[<a href="ChangeLog" target="_new">ChangeLog</a>]
&nbsp;&nbsp;&nbsp;[<a href="http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/phpmyadmin/phpMyAdmin/" target="_new">CVS</a>] &nbsp;&nbsp;&nbsp;[<a href="http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/phpmyadmin/phpMyAdmin/" target="_new">CVS</a>]
&nbsp;&nbsp;&nbsp;[<a href="http://sourceforge.net/mail/?group_id=23067" target="_new">Lists</a>] &nbsp;&nbsp;&nbsp;[<a href="http://sourceforge.net/mail/?group_id=23067" target="_new">Lists</a>]