Documented moving using Ctrl+arrows (FAQ 6.16).
This commit is contained in:
@@ -2469,6 +2469,14 @@ $cfg['PmaAbsoluteUri'] = (!empty($_SERVER['HTTPS']) ? 'https' : 'http') . '://'
|
|||||||
<br />
|
<br />
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
<b>[6.16] How can I simply move in page with plenty editing fields?</b>
|
||||||
|
<br />
|
||||||
|
You can use Ctrl+arrows for moving on most pages with plenty editing
|
||||||
|
fields (table structure changes, row editing, etc.).
|
||||||
|
<br />
|
||||||
|
</p>
|
||||||
|
|
||||||
<a name="faqproject"></a>
|
<a name="faqproject"></a>
|
||||||
<h3>[7. phpMyAdmin project]</h3>
|
<h3>[7. phpMyAdmin project]</h3>
|
||||||
<p>
|
<p>
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
|
|
||||||
phpMyAdmin 2.3.3pl1 Documentation
|
phpMyAdmin 2.4.0-dev Documentation
|
||||||
|
|
||||||
* Sourceforge phpMyAdmin project page [ http://www.phpmyadmin.net/
|
* Sourceforge phpMyAdmin project page [ http://www.phpmyadmin.net/
|
||||||
]
|
]
|
||||||
@@ -7,8 +7,8 @@
|
|||||||
+ Version history: ChangeLog
|
+ Version history: ChangeLog
|
||||||
+ General notes: README
|
+ General notes: README
|
||||||
+ License: LICENSE
|
+ License: LICENSE
|
||||||
* Documentation version: $Id: Documentation.html,v 1.366 2002/12/04
|
* Documentation version: $Id: Documentation.html,v 1.373 2003/01/07
|
||||||
18:22:31 lem9 Exp $
|
14:04:42 lem9 Exp $
|
||||||
______________________________________________________________________
|
______________________________________________________________________
|
||||||
|
|
||||||
Top - Requirements - Introduction - Installation -
|
Top - Requirements - Introduction - Installation -
|
||||||
@@ -117,6 +117,9 @@ Installation
|
|||||||
Nevertheless be aware that MS Internet Explorer seems to be really
|
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
|
buggy about cookies, at least till version 6. And php 4.1.1 is
|
||||||
also a bit buggy in this area!
|
also a bit buggy in this area!
|
||||||
|
Even in a single-user environment, you might prefer to use http or
|
||||||
|
cookie mode so that your user/password pair are not in clear in
|
||||||
|
the configuration file.
|
||||||
* Http and cookie authentication modes are more secure: the MySQL
|
* Http and cookie authentication modes are more 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
|
||||||
@@ -150,10 +153,13 @@ Installation
|
|||||||
GRANT SELECT, INSERT, UPDATE, DELETE ON <pma_db> TO
|
GRANT SELECT, INSERT, UPDATE, DELETE ON <pma_db> TO
|
||||||
'pma'@'localhost'; (this of course requires you to have a special DB
|
'pma'@'localhost'; (this of course requires you to have a special DB
|
||||||
for phpMyAdmin, the contents will be explained later)
|
for phpMyAdmin, the contents will be explained later)
|
||||||
* Then each of the true users should be granted of a set of
|
* Then each of the true users should be granted a set of privileges
|
||||||
privileges on a set of particular databases but shouldn't have any
|
on a set of particular databases. Normally you shouldn't give
|
||||||
global privileges. For example, to grant the user real_user with
|
global privileges to an ordinary user, unless you understand the
|
||||||
all privileges on the database user_base:
|
impact of those privileges (for example, you are creating a
|
||||||
|
superuser).
|
||||||
|
For example, to grant the user real_user with all privileges on
|
||||||
|
the database user_base:
|
||||||
GRANT ALL PRIVILEGES ON user_base.* TO 'real_user'@localhost
|
GRANT ALL PRIVILEGES ON user_base.* TO 'real_user'@localhost
|
||||||
IDENTIFIED BY 'real_password';
|
IDENTIFIED BY 'real_password';
|
||||||
What the user may now do is controlled entirely by the MySQL user
|
What the user may now do is controlled entirely by the MySQL user
|
||||||
@@ -1217,6 +1223,25 @@ FAQ - Frequently Asked Questions
|
|||||||
This seems to be a InnoDB bug (fixed in MySQL 3.23.50?). However, keep
|
This seems to be a InnoDB bug (fixed in MySQL 3.23.50?). However, keep
|
||||||
in mind that phpMyAdmin as of version 2.3.0 does not support InnoDB.
|
in mind that phpMyAdmin as of version 2.3.0 does not support InnoDB.
|
||||||
|
|
||||||
|
[3.4] I am unable to import dumps I created with the mysqldump tool
|
||||||
|
bundled with the MySQL server distribution.
|
||||||
|
The problem is that mysqldump creates invalid comments like this:
|
||||||
|
|
||||||
|
-- MySQL dump 8.22
|
||||||
|
--
|
||||||
|
-- Host: localhost Database: database
|
||||||
|
---------------------------------------------------------
|
||||||
|
-- Server version 3.23.54
|
||||||
|
|
||||||
|
The invalid part of the code is the horizontal line made of dashes
|
||||||
|
that appears once in every dump created with mysqldump. If you want to
|
||||||
|
run your dump you have to turn it into valid MySQL. This means, you
|
||||||
|
have to add a whitespace after the first to dashes of the line or add
|
||||||
|
a # before it:
|
||||||
|
-- -------------------------------------------------------
|
||||||
|
or
|
||||||
|
#---------------------------------------------------------
|
||||||
|
|
||||||
[4. ISPs, multi-user installations ]
|
[4. ISPs, multi-user installations ]
|
||||||
|
|
||||||
[4.1] I'm an ISP. Can I setup one central copy of phpMyAdmin or do I
|
[4.1] I'm an ISP. Can I setup one central copy of phpMyAdmin or do I
|
||||||
@@ -1543,6 +1568,10 @@ FAQ - Frequently Asked Questions
|
|||||||
size to the index, which is the condition to create an index on a BLOB
|
size to the index, which is the condition to create an index on a BLOB
|
||||||
field.
|
field.
|
||||||
|
|
||||||
|
[6.16] How can I simply move in page with plenty editing fields?
|
||||||
|
You can use Ctrl+arrows for moving on most pages with plenty editing
|
||||||
|
fields (table structure changes, row editing, etc.).
|
||||||
|
|
||||||
[7. phpMyAdmin project]
|
[7. phpMyAdmin project]
|
||||||
|
|
||||||
[7.1] I have found a bug. How do I inform developers?
|
[7.1] I have found a bug. How do I inform developers?
|
||||||
@@ -1612,7 +1641,8 @@ Developers Information
|
|||||||
compliant on one hand, they fit PEAR coding standards on the other
|
compliant on one hand, they fit PEAR coding standards on the other
|
||||||
hand. Please pay attention to this.
|
hand. Please pay attention to this.
|
||||||
* Please try to keep up the file-naming conventions. Table-related
|
* Please try to keep up the file-naming conventions. Table-related
|
||||||
stuff goes to tbl_*.php3, db-related code to db_*.php3 and so on.
|
stuff goes to tbl_*.php3, db-related code to db_*.php3,
|
||||||
|
server-related tools to server_*.php3 and so on.
|
||||||
* Please don't use verbose strings in your code, instead add the
|
* Please don't use verbose strings in your code, instead add the
|
||||||
string (at least) to english-iso-8859-1.inc.php3 and print() it
|
string (at least) to english-iso-8859-1.inc.php3 and print() it
|
||||||
out.
|
out.
|
||||||
@@ -1759,8 +1789,9 @@ enhancements, bugfixes or support for a new language since version 2.1.0:
|
|||||||
|
|
||||||
Bora Alioglu, Ricardo ?, Sven-Erik Andersen, Alessandro Astarita,
|
Bora Alioglu, Ricardo ?, Sven-Erik Andersen, Alessandro Astarita,
|
||||||
P<EFBFBD>ter Bakondy, Borges Botelho, Olivier Bussier, Neil Darlow,
|
P<EFBFBD>ter Bakondy, Borges Botelho, Olivier Bussier, Neil Darlow,
|
||||||
Ian Davidson, Laurent Dhima, Kristof Hamann, Thomas Kl<4B>ger, Lubos Klokner,
|
Mats Engstrom, Ian Davidson, Laurent Dhima, Kristof Hamann, Thomas Kl<4B>ger,
|
||||||
Martin Marconcini, Girish Nair, David Nordenberg, Andreas Pauley,
|
Lubos Klokner, Martin Marconcini, Girish Nair, David Nordenberg, Andreas Pauley
|
||||||
|
,
|
||||||
Bernard M. Piller, Laurent Haas, "Sakamoto", Yuval Sarna,
|
Bernard M. Piller, Laurent Haas, "Sakamoto", Yuval Sarna,
|
||||||
www.securereality.com.au, Alvar Soome, Siu Sun, Peter Svec, Michael Tacelosky,
|
www.securereality.com.au, Alvar Soome, Siu Sun, Peter Svec, Michael Tacelosky,
|
||||||
Rachim Tamsjadi, Kositer Uros, Lu<4C>s V., Martijn W. van der Lee,
|
Rachim Tamsjadi, Kositer Uros, Lu<4C>s V., Martijn W. van der Lee,
|
||||||
|
Reference in New Issue
Block a user