typos
This commit is contained in:
parent
7dbc617f41
commit
55a15f12ad
@ -557,7 +557,7 @@ $cfg['PmaAbsoluteUri'] = (!empty($_SERVER['HTTPS']) ? 'https' : 'http') . '://'
|
||||
<dd>
|
||||
Starting with Version 2.3.0 phpMyAdmin offers a lot of Features
|
||||
to work with Master / Foreign - Tables. To use those as well as
|
||||
the bookmarkfeature you will need to create a new db.<br />
|
||||
the bookmark feature you will need to create a new db.<br />
|
||||
|
||||
To use this functionality as superuser create a new database:
|
||||
<ul>
|
||||
@ -568,7 +568,7 @@ $cfg['PmaAbsoluteUri'] = (!empty($_SERVER['HTTPS']) ? 'https' : 'http') . '://'
|
||||
</tt>
|
||||
Note that controluser must have SELECT, INSERT and DELETE
|
||||
privileges on the bookmark table. Here is a query to set up
|
||||
those privileges (using "pma" as the controluser:
|
||||
those privileges (using "pma" as the controluser):
|
||||
<tt>
|
||||
GRANT SELECT,INSERT,DELETE ON <pmadb> to
|
||||
'pma'@localhost;
|
||||
@ -591,13 +591,13 @@ $cfg['PmaAbsoluteUri'] = (!empty($_SERVER['HTTPS']) ? 'https' : 'http') . '://'
|
||||
<li>set up a PMA database as described above</li>
|
||||
<li>within this database create a table following this scheme:<br />
|
||||
<tt>
|
||||
CREATE TABLE bookmark (
|
||||
id int(11) DEFAULT '0' NOT NULL auto_increment,
|
||||
dbase varchar(255) NOT NULL,
|
||||
user varchar(255) NOT NULL,
|
||||
label varchar(255) NOT NULL,
|
||||
query text NOT NULL,
|
||||
PRIMARY KEY (id)
|
||||
CREATE TABLE bookmark (<br />
|
||||
id int(11) DEFAULT '0' NOT NULL auto_increment,<br />
|
||||
dbase varchar(255) NOT NULL,<br />
|
||||
user varchar(255) NOT NULL,<br />
|
||||
label varchar(255) NOT NULL,<br />
|
||||
query text NOT NULL,<br />
|
||||
PRIMARY KEY (id)<br />
|
||||
) TYPE=MyISAM COMMENT='Bookmarks';<br />
|
||||
</tt>
|
||||
</li>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user