PHPMYADMIN配置[8]

[入库:2005年8月18日] [更新:2007年3月25日]

本文简介:选择自 yuguanglou 的 blog

// in edit mode...
$cfg['protectbinary']         = 'blob'; // disallow editing of binary fields
                                        // valid values are:
                                        //   false  allow editing
                                        //   'blob' allow editing except for blob fields
                                        //   'all'  disallow editing
$cfg['showfunctionfields']    = true;   // display the function fields in edit/insert mode
$cfg['charediting']           = 'input';
                                        // which editor should be used for char/varchar fields:
                                        //  input - allows limiting of input length
                                        //  textarea - allows newlines in fields

// for the export features...
$cfg['zipdump']               = true;   // allow the use of zip/gzip/bzip
$cfg['gzipdump']              = true;   // compression for
$cfg['bzipdump']              = true;   // dump files
$cfg['compressonfly']         = true;   // will compress gzip/bzip2 exports on
                                        // fly without need for much memory.
                                        // if you encounter problems with
                                        // created gzip/bzip2 files disable
                                        // this feature.

// tabs display settings
$cfg['lighttabs']             = false;  // use graphically less intense menu tabs
$cfg['propertiesiconic']      = true;   // use icons instead of text for the table display of a database (true|false|'both')
$cfg['propertiesnumcolumns']  = 1;      // how many columns should be used for table display of a database?
                                        // (a value larger than 1 results in some information being hidden)

本文关键:PHPMYADMIN配置
 

本站最佳浏览方式为 分辨率 1024x768 IE 6.0(或更高版本的 IE浏览器)

go top