* added the $cfgShowStats setting
* resorted the core phpMyAdmin settings in a more logical way
This commit is contained in:
@@ -420,10 +420,11 @@
|
|||||||
<br /><br />
|
<br /><br />
|
||||||
</dd>
|
</dd>
|
||||||
|
|
||||||
<dt><b>$cfgConfirm </b>boolean</dt>
|
|
||||||
|
<dt><b>$cfgOBGzip </b>boolean</dt>
|
||||||
<dd>
|
<dd>
|
||||||
Whether a warning ("Are your really sure..") should be
|
Defines whether to use gzip output buffering for increased
|
||||||
displayed when you're about to loose data.
|
speed in HTTP transfers.
|
||||||
<br /><br />
|
<br /><br />
|
||||||
</dd>
|
</dd>
|
||||||
|
|
||||||
@@ -434,21 +435,17 @@
|
|||||||
<br /><br />
|
<br /><br />
|
||||||
</dd>
|
</dd>
|
||||||
|
|
||||||
<dt><b>$cfgShowBlob </b>boolean</dt>
|
<dt><b>$cfgSkipLockedTables </b>boolean</dt>
|
||||||
<dd>
|
<dd>
|
||||||
Defines whether <tt>BLOB</tt> fields are shown when browsing a table's
|
Mark used tables and make it possible to show databases with locked
|
||||||
content or not.
|
tables (since 3.23.30).
|
||||||
<br /><br />
|
<br /><br />
|
||||||
</dd>
|
</dd>
|
||||||
|
|
||||||
<dt><b>$cfgProtectBlob </b>boolean</dt>
|
<dt><b>$cfgShowSQL </b>boolean</dt>
|
||||||
<dd>
|
<dd>
|
||||||
Defines whether <tt>BLOB</tt> or <tt>BINARY</tt> fields are protected
|
Defines whether sql-queries generated by phpMyAdmin should be displayed
|
||||||
from edition when browsing a table's content or not.
|
or not.
|
||||||
Valid values are:<br />
|
|
||||||
- <tt>FALSE</tt> to allow edition of all fields;
|
|
||||||
- <tt>blob</tt> to allow edition of all fields except <tt>BLOBS</TT>;
|
|
||||||
- <tt>all</tt> to disallow edition of all <tt>BINARY</tt> or <tt>BLOB</tt> fields.
|
|
||||||
<br /><br />
|
<br /><br />
|
||||||
</dd>
|
</dd>
|
||||||
|
|
||||||
@@ -461,17 +458,24 @@
|
|||||||
<br /><br />
|
<br /><br />
|
||||||
</dd>
|
</dd>
|
||||||
|
|
||||||
<dt><b>$cfgShowSQL </b>boolean</dt>
|
<dt><b>$cfgConfirm </b>boolean</dt>
|
||||||
<dd>
|
<dd>
|
||||||
Defines whether sql-queries generated by phpMyAdmin should be displayed
|
Whether a warning ("Are your really sure..") should be
|
||||||
or not.
|
displayed when you're about to loose data.
|
||||||
<br /><br />
|
<br /><br />
|
||||||
</dd>
|
</dd>
|
||||||
|
|
||||||
<dt><b>$cfgSkipLockedTables </b>boolean</dt>
|
<dt><b>$cfgShowStats </b>boolean</dt>
|
||||||
<dd>
|
<dd>
|
||||||
Mark used tables and make it possible to show databases with locked
|
Defines whether to display space usage and statistics about databases
|
||||||
tables (since 3.23.30).
|
and tables or not.
|
||||||
|
<br /><br />
|
||||||
|
</dd>
|
||||||
|
|
||||||
|
<dt><b>$cfgShowBlob </b>boolean</dt>
|
||||||
|
<dd>
|
||||||
|
Defines whether <tt>BLOB</tt> fields are shown when browsing a table's
|
||||||
|
content or not.
|
||||||
<br /><br />
|
<br /><br />
|
||||||
</dd>
|
</dd>
|
||||||
|
|
||||||
@@ -498,10 +502,14 @@
|
|||||||
<br /><br />
|
<br /><br />
|
||||||
</dd>
|
</dd>
|
||||||
|
|
||||||
<dt><b>$cfgOBGzip </b>boolean</dt>
|
<dt><b>$cfgProtectBinary </b>boolean</dt>
|
||||||
<dd>
|
<dd>
|
||||||
Defines whether to use gzip output buffering for increased
|
Defines whether <tt>BLOB</tt> or <tt>BINARY</tt> fields are protected
|
||||||
speed in HTTP transfers.
|
from edition when browsing a table's content or not.
|
||||||
|
Valid values are:<br />
|
||||||
|
- <tt>FALSE</tt> to allow edition of all fields;<br />
|
||||||
|
- <tt>blob</tt> to allow edition of all fields except <tt>BLOBS</TT>;<br />
|
||||||
|
- <tt>all</tt> to disallow edition of all <tt>BINARY</tt> or <tt>BLOB</tt> fields.
|
||||||
<br /><br />
|
<br /><br />
|
||||||
</dd>
|
</dd>
|
||||||
|
|
||||||
|
@@ -94,18 +94,19 @@ unset($cfgServers[0]);
|
|||||||
/**
|
/**
|
||||||
* Other core phpMyAdmin settings
|
* Other core phpMyAdmin settings
|
||||||
*/
|
*/
|
||||||
$cfgConfirm = TRUE; // confirm 'DROP TABLE' & 'DROP DATABASE'
|
$cfgOBGzip = TRUE; // use GZIP output buffering if possible
|
||||||
$cfgPersistentConnections = FALSE; // use persistent connections to MySQL database
|
$cfgPersistentConnections = FALSE; // use persistent connections to MySQL database
|
||||||
$cfgShowBlob = FALSE; // display blob field contents in browse mode
|
|
||||||
$cfgProtectBinary = 'blob'; // disallow editing of binary fields in edit mode
|
|
||||||
// valid values are:
|
|
||||||
// FALSE allow editing
|
|
||||||
// 'blob' allow editing except for BLOB fields
|
|
||||||
// 'all' disallow editing
|
|
||||||
$cfgAllowUserDropDatabase = FALSE; // disallow users to delete their own database
|
|
||||||
$cfgShowSQL = TRUE; // show SQL queries as run
|
|
||||||
$cfgSkipLockedTables = FALSE; // mark used tables, make possible to show
|
$cfgSkipLockedTables = FALSE; // mark used tables, make possible to show
|
||||||
// locked tables (since MySQL 3.23.30)
|
// locked tables (since MySQL 3.23.30)
|
||||||
|
$cfgShowSQL = TRUE; // show SQL queries as run
|
||||||
|
$cfgAllowUserDropDatabase = FALSE; // disallow users to delete their own database
|
||||||
|
$cfgConfirm = TRUE; // confirm 'DROP TABLE' & 'DROP DATABASE'
|
||||||
|
|
||||||
|
$cfgShowStats = TRUE; // allow to display statistics and space usage in
|
||||||
|
// the pages about database details and table
|
||||||
|
// properties
|
||||||
|
|
||||||
|
$cfgShowBlob = FALSE; // display blob field contents in browse mode
|
||||||
$cfgShowAll = FALSE; // allows to display all the rows in browse mode
|
$cfgShowAll = FALSE; // allows to display all the rows in browse mode
|
||||||
$cfgMaxRows = 30; // maximum number of rows to display in browse mode
|
$cfgMaxRows = 30; // maximum number of rows to display in browse mode
|
||||||
$cfgOrder = 'ASC'; // default for 'ORDER BY' clause (valid
|
$cfgOrder = 'ASC'; // default for 'ORDER BY' clause (valid
|
||||||
@@ -113,7 +114,13 @@ $cfgOrder = 'ASC'; // default for 'ORDER BY' clause (valid
|
|||||||
// descending order for fields of type
|
// descending order for fields of type
|
||||||
// TIME, DATE, DATETIME & TIMESTAMP,
|
// TIME, DATE, DATETIME & TIMESTAMP,
|
||||||
// ascending order else-)
|
// ascending order else-)
|
||||||
$cfgOBGzip = TRUE; // GZIP output buffering
|
|
||||||
|
$cfgProtectBinary = 'blob'; // disallow editing of binary fields in edit mode
|
||||||
|
// valid values are:
|
||||||
|
// FALSE allow editing
|
||||||
|
// 'blob' allow editing except for BLOB fields
|
||||||
|
// 'all' disallow editing
|
||||||
|
|
||||||
$cfgGZipDump = TRUE; // Allow the use of gzip/bzip compression
|
$cfgGZipDump = TRUE; // Allow the use of gzip/bzip compression
|
||||||
$cfgBZipDump = TRUE; // for dump files
|
$cfgBZipDump = TRUE; // for dump files
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user