亚洲日韩中文字幕久热_青青草国产_四虎网站最新网址_亚洲色欲或者高潮影院_亚洲极色_99福利片_和搜子居同的日子hd高清看_国产精品久久久久7777按摩_啪啪国产视频_黄色www._色六月婷婷亚洲婷婷六月_亚洲成在人线在线播放无码_免费黄色亚洲_日产精品卡二卡三卡四卡乱码视频_欧美亚洲色帝国_国产二区免费视频_国产做a爰片久久毛片a片白丝_巨骚综合_无遮挡国产高潮视频免费观看_午夜精品久久久久9999高清

Discuz! 官方交流社區

標題: phpmyadmin常用選項設置 [打印本頁]

作者: 我是小站長    時間: 2019-6-2 18:32
標題: phpmyadmin常用選項設置
config.inc.php全部內容如下:(以phpmyadmin2.5.4為例)
<?php
/* $Id: config.inc.php,v 1.204.2.1 2003/10/10 14:24:24 nijel Exp $ */
// vim: expandtab sw=4 ts=4 sts=4:

/**
* phpMyAdmin Configuration File
*
* All directives are explained in Documentation.html
*/


/**
* Sets the php error reporting - Please do not change this line!
*/
if (!isset($old_error_reporting)) {
    error_reporting(E_ALL);
    @ini_set('display_errors', '1');
}


/**
* Your phpMyAdmin url
*
* Complete the variable below with the full url ie
*    http://www.your_web.net/path_to_your_phpMyAdmin_directory/
*
* It must contain characters that are valid for a URL, and the path is
* case sensitive on some Web servers, for example Unix-based servers.
*
* In most cases you can leave this variable empty, as the correct value
* will be detected automatically. However, we recommend that you do
* test to see that the auto-detection code works in your system. A good
* test is to browse a table, then edit a row and save it.  There will be
* an error message if phpMyAdmin cannot auto-detect the correct value.
*
* If the auto-detection code does work properly, you can set to TRUE the
* $cfg['PmaAbsoluteUri_DisableWarning'] variable below.
*/
$cfg['PmaAbsoluteUri'] = '';-----這里設置你的phpmyadmin的URL,如:http://localhost/phpmyadmin/


/**
* Disable the default warning about $cfg['PmaAbsoluteUri'] not being set
* You should use this if and ONLY if the PmaAbsoluteUri auto-detection
* works perfectly.
*/
$cfg['PmaAbsoluteUri_DisableWarning'] = FALSE;

/**
* Disable the default warning that is displayed on the DB Details Structure page if
* any of the required Tables for the relationfeatures could not be found
*/
$cfg['PmaNoRelation_DisableWarning']  = FALSE;

/**
* The 'cookie' auth_type uses blowfish algorithm to encrypt the password. If
* at least one server configuration uses 'cookie' auth_type, enter here a
* passphrase that will be used by blowfish.
$cfg['blowfish_secret'] = '';-----設定好root密碼后這里也要填寫

/**
* Server(s) configuration
*/
$i = 0;
// The $cfg['Servers'] array starts with $cfg['Servers'][1].  Do not use $cfg['Servers'][0].
// You can disable a server config entry by setting host to ''.
$i++;
$cfg['Servers'][$i]['host']          = 'localhost'; // MySQL hostname or IP address----這里可以設定遠程MySQL服務器IP地址

$cfg['Servers'][$i]['port']          = '';          // MySQL port - leave blank for default port-----默認為3306


$cfg['Servers'][$i]['socket']        = '';          // Path to the socket - leave blank for default socket

$cfg['Servers'][$i]['connect_type']  = 'tcp';       // How to connect to MySQL server ('tcp' or 'socket')-----連接MySQL服務器的方式

$cfg['Servers'][$i]['compress']      = FALSE;       // Use compressed protocol for the MySQL connection
                                                    // (requires PHP >= 4.3.0)-----是否使用壓縮協議,PHP版本須>= 4.3.0

$cfg['Servers'][$i]['controluser']   = '';          // MySQL control user settings
                                                    // (this user must have read-only
$cfg['Servers'][$i]['controlpass']   = '';          // access to the "mysql/user"
                                                    // and "mysql/db" tables)-----MySQL控制用戶設定,該用戶只對mysql數據庫下的user和db表有完全權限

$cfg['Servers'][$i]['auth_type']     = 'config';   
// Authentication method (config, http or cookie based)?-----如果PHP安裝模式為Apache,可以使用http和cookie;如果PHP安裝模式為CGI,可以使用cookie;默認為config,是不安全的,不推薦。

$cfg['Servers'][$i]['user']          = 'root';      // MySQL user-----MySQL連接用戶

$cfg['Servers'][$i]['password']      = '';         
// MySQL password (only needed with 'config' auth_type)-----MySQL連接密碼,建議在安裝好PHP和MySQL后,先用phpmyadmin設定root密碼,然后在這里填寫

$cfg['Servers'][$i]['only_db']       = '';          // If set to a db-name, only
                                                    // this db is displayed
                                                    // at left frame
                                                    // It may also be an array
                                                    // of db-names-----如果在這里設定一個數據庫的名字,那么登陸后框架左邊將只顯示這個數據庫


$cfg['Servers'][$i]['verbose']       = '';          // Verbose name for this host - leave blank to show the hostname

$cfg['Servers'][$i]['pmadb']         = '';          // Database used for Relation, Bookmark and PDF Features
                                                    // (see scripts/create_tables.sql)
                                                    //   - leave blank for no support
                                                    //     DEFAULT: 'phpmyadmin'
$cfg['Servers'][$i]['bookmarktable'] = '';          // Bookmark table
                                                    //   - leave blank for no bookmark support
                                                    //     DEFAULT: 'pma_bookmark'
$cfg['Servers'][$i]['relation']      = '';          // table to describe the relation between links (see doc)
                                                    //   - leave blank for no relation-links support
                                                    //     DEFAULT: 'pma_relation'
$cfg['Servers'][$i]['table_info']    = '';          // table to describe the display fields
                                                    //   - leave blank for no display fields support
                                                    //     DEFAULT: 'pma_table_info'
$cfg['Servers'][$i]['table_coords']  = '';          // table to describe the tables position for the PDF schema
                                                    //   - leave blank for no PDF schema support
                                                    //     DEFAULT: 'pma_table_coords'
$cfg['Servers'][$i]['pdf_pages']     = '';          // table to describe pages of relationpdf
                                                    //   - leave blank if you don't want to use this
                                                    //     DEFAULT: 'pma_pdf_pages'
$cfg['Servers'][$i]['column_info']   = '';          // table to store column information
                                                    //   - leave blank for no column comments/mime types
                                                    //     DEFAULT: 'pma_column_info'
$cfg['Servers'][$i]['history']       = '';          // table to store SQL history
                                                    //   - leave blank for no SQL query history
                                                    //     DEFAULT: 'pma_history'
$cfg['Servers'][$i]['verbose_check'] = TRUE;        // set to FALSE if you know that your pma_* tables
                                                    // are up to date. This prevents compatibility
                                                    // checks and thereby increases performance.
$cfg['Servers'][$i]['AllowDeny']['order']           // Host authentication order, leave blank to not use
                                     = '';
$cfg['Servers'][$i]['AllowDeny']['rules']           // Host authentication rules, leave blank for defaults
                                     = array();


$i++;
$cfg['Servers'][$i]['host']            = '';
$cfg['Servers'][$i]['port']            = '';
$cfg['Servers'][$i]['socket']          = '';
$cfg['Servers'][$i]['connect_type']    = 'tcp';
$cfg['Servers'][$i]['compress']        = FALSE;
$cfg['Servers'][$i]['controluser']     = '';
$cfg['Servers'][$i]['controlpass']     = '';
$cfg['Servers'][$i]['auth_type']       = 'config';
$cfg['Servers'][$i]['user']            = 'root';
$cfg['Servers'][$i]['password']        = '';
$cfg['Servers'][$i]['only_db']         = '';
$cfg['Servers'][$i]['verbose']         = '';
$cfg['Servers'][$i]['pmadb']           = ''; // 'phpmyadmin' - see scripts/create_tables.sql
$cfg['Servers'][$i]['bookmarktable']   = ''; // 'pma_bookmark'
$cfg['Servers'][$i]['relation']        = ''; // 'pma_relation'
$cfg['Servers'][$i]['table_info']      = ''; // 'pma_table_info'
$cfg['Servers'][$i]['table_coords']    = ''; // 'pma_table_coords'
$cfg['Servers'][$i]['pdf_pages']       = ''; // 'pma_pdf_pages'
$cfg['Servers'][$i]['column_info']     = ''; // 'pma_column_info'
$cfg['Servers'][$i]['history']         = ''; // 'pma_history'
$cfg['Servers'][$i]['verbose_check']   = TRUE;
$cfg['Servers'][$i]['AllowDeny']['order']
                                       = '';
$cfg['Servers'][$i]['AllowDeny']['rules']
                                       = array();

$i++;
$cfg['Servers'][$i]['host']            = '';
$cfg['Servers'][$i]['port']            = '';
$cfg['Servers'][$i]['socket']          = '';
$cfg['Servers'][$i]['connect_type']    = 'tcp';
$cfg['Servers'][$i]['compress']        = FALSE;
$cfg['Servers'][$i]['controluser']     = '';
$cfg['Servers'][$i]['controlpass']     = '';
$cfg['Servers'][$i]['auth_type']       = 'config';
$cfg['Servers'][$i]['user']            = 'root';
$cfg['Servers'][$i]['password']        = '';
$cfg['Servers'][$i]['only_db']         = '';
$cfg['Servers'][$i]['verbose']         = '';
$cfg['Servers'][$i]['pmadb']           = ''; // 'phpmyadmin' - see scripts/create_tables.sql
$cfg['Servers'][$i]['bookmarktable']   = ''; // 'pma_bookmark'
$cfg['Servers'][$i]['relation']        = ''; // 'pma_relation'
$cfg['Servers'][$i]['table_info']      = ''; // 'pma_table_info'
$cfg['Servers'][$i]['table_coords']    = ''; // 'pma_table_coords'
$cfg['Servers'][$i]['pdf_pages']       = ''; // 'pma_pdf_pages'
$cfg['Servers'][$i]['column_info']     = ''; // 'pma_column_info'
$cfg['Servers'][$i]['history']         = ''; // 'pma_history'
$cfg['Servers'][$i]['verbose_check']   = TRUE;
$cfg['Servers'][$i]['AllowDeny']['order']
                                       = '';
$cfg['Servers'][$i]['AllowDeny']['rules']
                                       = array();

// If you have more than one server configured, you can set $cfg['ServerDefault']
// to any one of them to autoconnect to that server when phpMyAdmin is started,
// or set it to 0 to be given a list of servers without logging in
// If you have only one server configured, $cfg['ServerDefault'] *MUST* be
// set to that server.[color]=red]-----是否顯示所有的MySQL服務器
$cfg['ServerDefault'] = 1;              // Default server (0 = no default server)
$cfg['Server']        = '';
unset($cfg['Servers'][0]);


/**
* Other core phpMyAdmin settings
*/
$cfg['OBGzip']                  = 'auto'; // use GZIP output buffering if possible (TRUE|FALSE|'auto')-----有必要的話是否使用GZIP輸出緩沖

$cfg['PersistentConnections']   = FALSE;  // use persistent connections to MySQL database-----是否使用MySQL持久連接,即pconnect

$cfg['ExecTimeLimit']           = 300;    // maximum execution time in seconds (0 for no limit)-----最大腳本執行時間,單位:秒


$cfg['SkipLockedTables']        = FALSE;  // mark used tables, make possible to show
                                          // locked tables (since MySQL 3.23.30)
$cfg['ShowSQL']                 = TRUE;   // show SQL queries as run-----運行查詢時顯示SQL查詢語句

$cfg['AllowUserDropDatabase']   = FALSE;  // show a 'Drop database' link to normal users-----是否對普通用戶顯示“刪除數據庫”連接

$cfg['Confirm']                 = TRUE;   // confirm 'DROP TABLE' & 'DROP DATABASE'-----刪除數據表/庫前是否出現確認提示框

$cfg['LoginCookieRecall']       = TRUE;   // recall previous login in cookie auth. mode or not-----是否收回先前cookie認證模式的cookie


$cfg['UseDbSearch']             = TRUE;   // whether to enable the "database search" feature
                                          // or not
$cfg['IgnoreMultiSubmitErrors'] = FALSE;  // if set to true, PMA continues computing multiple-statement queries
                                          // even if one of the queries failed
$cfg['VerboseMultiSubmit']      = TRUE;   // if set to true, PMA will show the affected rows of EACH statement on
                                          // multiple-statement queries. See the read_dump.php file for hardcoded
                                          // defaults on how many queries a statement may contain!
$cfg['AllowArbitraryServer']    = FALSE;  // allow login to any user entered server in cookie based auth

// Left frame setup-----左側框架設置
$cfg['LeftFrameLight']        = TRUE;   .-----是否使用下拉框顯示當前數據庫// use a select-based menu and display only the
                                        // current tables in the left frame
$cfg['LeftFrameTableSeparator']= '__';  // Which string will be used to generate table prefixes
                                        // to split tables into multiple categories
$cfg['LeftFrameTableLevel']   = '1';    // How many sublevels should be displayed when splitting
                                        // up tables by the above Separator

$cfg['ShowTooltip']           = TRUE;   // display table comment as tooltip in left frame-----是否在框架左側顯示數據表內容提示

$cfg['ShowTooltipAliasDB']    = FALSE;  // if ShowToolTip is enabled, this defines that table/db comments

$cfg['ShowTooltipAliasTB']    = FALSE;  // are shown (in the left menu and db_details_structure) instead of
                                        // table/db names

$cfg['LeftDisplayLogo']       = TRUE;   // display logo at top of left frame-----是否在框架左側顯示phpmyadmin的logo

$cfg['LeftDisplayServers']    = FALSE;  // display server choice at top of left frame-----是否顯示MySQL服務器選擇選項

// In the main frame, at startup...-----右側主框架設置(剛進入時)
$cfg['ShowStats']             = TRUE;   // allow to display statistics and space usage in
                                        // the pages about database details and table
                                        // properties
$cfg['ShowMysqlInfo']         = FALSE;  -----是否顯示MySQL運行時間// whether to display the "MySQL runtime
$cfg['ShowMysqlVars']         = FALSE;  -----是否顯示MySQL系統變量// information", "MySQL system variables", "PHP
$cfg['ShowPhpInfo']           = FALSE;  -----是否顯示PHP信息// information" and "change password" links for
$cfg['ShowChgPassword']    = FALSE;  -----修改密碼選項// simple users or not
$cfg['SuggestDBName']       = TRUE;   -----是否顯示要建立的數據庫默認名字// suggest a new DB name if possible (false = keep empty)

// In browse mode...
$cfg['ShowBlob']              = FALSE;  // display blob field contents
$cfg['NavigationBarIconic']   = TRUE;   // do not display text inside navigation bar buttons
$cfg['ShowAll']               = FALSE;  // allows to display all the rows-----是否顯示所有數據表行
$cfg['MaxRows']               = 30;     // maximum number of rows to display-----數據表行每頁顯示的數量

$cfg['Order']                 = 'ASC';  // default for 'ORDER BY' clause (valid
                                        // values are 'ASC', 'DESC' or 'SMART' -ie
                                        // descending order for fields of type
                                        // TIME, DATE, DATETIME & TIMESTAMP,
                                        // ascending order else-)

// 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)

$cfg['DefaultTabServer']      = 'main.php';
                                   // Possible values:
                                   // 'main.php' = the welcome page
                                   // (recommended for multiuser setups)
                                   // 'server_databases.php' = list of databases
                                   // 'server_status.php' = runtime information
                                   // 'server_variables.php' = MySQL server variables
                                   // 'server_privileges.php' = user management
                                   // 'server_processlist.php' = process list
$cfg['DefaultTabDatabase']    = 'db_details_structure.php';
                                   // Possible values:
                                   // 'db_details_structure.php' = tables list
                                   // 'db_details.php' = sql form
                                   // 'db_search.php' = search query
$cfg['DefaultTabTable']       = 'tbl_properties_structure.php';
                                   // Possible values:
                                   // 'tbl_properties_structure.php' = fields list
                                   // 'tbl_properties.php' = sql form
                                   // 'tbl_select.php = select page
                                   // 'tbl_change.php = insert row page

/**
* Export defaults
*/

$cfg['Export']['format']                    = 'sql';  // sql/latex/excel/csv/xml-----導出文件的格式
$cfg['Export']['compression']               = 'none'; // none/zip/gzip/bzip2-----到處文件是否壓縮

$cfg['Export']['asfile']                    = FALSE;----是否導出為文件
$cfg['Export']['onserver']                  = FALSE;-----導出到服務器
$cfg['Export']['onserver_overwrite']        = FALSE;-----是否使用導出覆蓋
$cfg['Export']['remember_file_template']    = TRUE;-----記住文件模板


$cfg['Export']['csv_columns']               = FALSE;
$cfg['Export']['csv_null']                  = 'NULL';
$cfg['Export']['csv_separator']             = ';';
$cfg['Export']['csv_enclosed']              = '"';
$cfg['Export']['csv_escaped']               = '\\';
$cfg['Export']['csv_terminated']            = 'AUTO';
$cfg['Export']['excel_columns']             = FALSE;
$cfg['Export']['excel_null']                = 'NULL';

$cfg['Export']['latex_structure']           = TRUE;
$cfg['Export']['latex_data']                = TRUE;
$cfg['Export']['latex_columns']             = TRUE;
$cfg['Export']['latex_relation']            = TRUE;
$cfg['Export']['latex_comments']            = TRUE;
$cfg['Export']['latex_mime']                = TRUE;
$cfg['Export']['latex_null']                = '\textit{NULL}';
$cfg['Export']['latex_caption']             = TRUE;
$cfg['Export']['latex_data_label']          = 'tab:__TABLE__-data';
$cfg['Export']['latex_structure_label']     = 'tab:__TABLE__-structure';

$cfg['Export']['sql_structure']             = TRUE;
$cfg['Export']['sql_data']                  = TRUE;
$cfg['Export']['sql_drop_database']         = FALSE;
$cfg['Export']['sql_drop_table']            = FALSE;
$cfg['Export']['sql_auto_increment']        = TRUE;
$cfg['Export']['sql_backquotes']            = TRUE;
$cfg['Export']['sql_relation']              = FALSE;
$cfg['Export']['sql_columns']               = FALSE;
$cfg['Export']['sql_extended']              = FALSE;
$cfg['Export']['sql_comments']              = FALSE;
$cfg['Export']['sql_mime']                  = FALSE;

/**
* Link to the official MySQL documentation.
* Be sure to include no trailing slash on the path.
* See http://www.mysql.com/documentation/index.html for more information
* about MySQL manuals and their types.
*/
$cfg['MySQLManualBase'] = 'http://www.mysql.com/doc/en';-----MySQL在線手冊地址

/**
* Type of MySQL documentation:
*   old        - old style used in phpMyAdmin 2.3.0 and sooner
*   searchable - "Searchable, with user comments"
*   chapters   - "HTML, one page per chapter"
*   big        - "HTML, all on one page"
*   none       - do not show documentation links
*/
$cfg['MySQLManualType'] = 'searchable';


/**
* PDF options
*/
$cfg['PDFPageSizes']        = array('A3', 'A4', 'A5', 'letter', 'legal');
$cfg['PDFDefaultPageSize']  = 'A4';-----PDF頁默認大小


/**
* Language and charset conversion settings
*/
// Default language to use, if not browser-defined or user-defined
$cfg['DefaultLang'] = 'en-iso-8859-1';-----如果想使phpmyadmin直接顯示中文,這里填:zh

// Force: always use this language - must be defined in
//        libraries/select_lang.lib.php
// $cfg['Lang']     = 'en-iso-8859-1';
// Default charset to use for recoding of MySQL queries, does not take
// any effect when charsets recoding is switched off by
// $cfg['AllowAnywhereRecoding'] or in language file
// (see $cfg['AvailableCharsets'] to possible choices, you can add your own)
$cfg['DefaultCharset'] = 'iso-8859-1';-----默認的phpmyadmin語言,可設置為:gb2312


// Allow charset recoding of MySQL queries, must be also enabled in language
// file to make harder using other language files than unicode.
// Default value is FALSE to avoid problems on servers without the iconv
// extension and where dl() is not supported
$cfg['AllowAnywhereRecoding'] = FALSE;

// You can select here which functions will be used for charset conversion.
// Possible values are:
//      auto   - automatically use available one (first is tested iconv, then
//               recode)
//      iconv  - use iconv or libiconv functions
//      recode - use recode_string function
$cfg['RecodingEngine'] = 'auto';

// Specify some parameters for iconv used in charset conversion. See iconv
// documentation for details:
// http://www.gnu.org/software/libi ... v/iconv_open.3.html
$cfg['IconvExtraParams'] = '';

// Available charsets for MySQL conversion. currently contains all which could
// be found in lang/* files and few more.
// Charsets will be shown in same order as here listed, so if you frequently
// use some of these move them to the top.
$cfg['AvailableCharsets'] = array(
    'iso-8859-1',
    'iso-8859-2',
    'iso-8859-3',
    'iso-8859-4',
    'iso-8859-5',
    'iso-8859-6',
    'iso-8859-7',
    'iso-8859-8',
    'iso-8859-9',
    'iso-8859-10',
    'iso-8859-11',
    'iso-8859-12',
    'iso-8859-13',
    'iso-8859-14',
    'iso-8859-15',
    'windows-1250',
    'windows-1251',
    'windows-1252',
    'windows-1257',
    'koi8-r',
    'big5',
    'gb2312',
    'utf-8',
    'utf-7',
    'x-user-defined',
    'euc-jp',
    'ks_c_5601-1987',
    'tis-620',
    'SHIFT_JIS'
);

// Loads language file
require('./libraries/select_lang.lib.php');


/**
* Customization & design -----頁面格式設定,以內容較多,可自行根據注釋詳細設定,這里給出部分注釋
*/
$cfg['LeftWidth']           = 150;          // left frame width-----左側框架寬度

$cfg['LeftBgColor']         = '#D0DCE0';    // background color for the left frame-----框架左側的背景顏色

$cfg['RightBgColor']        = '#F5F5F5';    // background color for the right frame-----框架右側的背景顏色

$cfg['RightBgImage']        = '';           // path to a background image for the right frame-----框架右側的背景圖片地址,不使用背景圖片請留空
                                            // (leave blank for no background image)
$cfg['LeftPointerColor']    = '#CCFFCC';    // color of the pointer in left frame
                                            // (blank for no pointer)-----框架左側的指向點顏色
$cfg['Border']              = 0;            // border width on tables-----表格寬度
$cfg['ThBgcolor']           = '#D3DCE3';    // table header row colour-----表格頭顏色
$cfg['BgcolorOne']          = '#CCCCCC';    // table data row colour-----表格中數據所在行的顏色
$cfg['BgcolorTwo']          = '#DDDDDD';    // table data row colour, alternate-----表格中數據所在行的交替顏色
$cfg['BrowsePointerColor']  = '#CCFFCC';    // color of the pointer in browse mode

                                            // (blank for no pointer)
$cfg['BrowseMarkerColor']   = '#FFCC99';    // color of the marker (visually marks row
                                            // by clicking on it) in browse mode
                                            // (blank for no marker)
$cfg['TextareaCols']        = 40;           // textarea size (columns) in edit mode
                                            // (this value will be emphasized (*2) for sql
                                            // query textareas and (*1.25) for query window)
$cfg['TextareaRows']        = 7;            // textarea size (rows) in edit mode
$cfg['LongtextDoubleTextarea'] = TRUE;      // double size of textarea size for longtext fields
$cfg['TextareaAutoSelect']  = TRUE;         // autoselect when clicking in the textarea of the querybox
$cfg['CharTextareaCols']    = 40;           // textarea size (columns) for CHAR/VARCHAR
$cfg['CharTextareaRows']    = 2;            // textarea size (rows) for CHAR/VARCHAR
$cfg['CtrlArrowsMoving']    = TRUE;         // Enable Ctrl+Arrows moving between fields when editing?
$cfg['LimitChars']          = 50;           // Max field data length in browse mode for all non-numeric fields
$cfg['ModifyDeleteAtLeft']  = TRUE;         // show edit/delete links on left side of browse
                                            // (or at the top with vertical browse)
$cfg['ModifyDeleteAtRight'] = FALSE;        // show edit/delete links on right side of browse
                                            // (or at the bottom with vertical browse)
$cfg['DefaultDisplay']      = 'horizontal'; // default display direction
                                            // (horizontal|vertical|horizontalflipped)
$cfg['DefaultPropDisplay']  = 'horizontal'; // default display direction for altering/
                                            // creating columns (tbl_properties)
                                            // (horizontal|vertical)

$cfg['HeaderFlipType']      = 'css';        // table-header rotation via faking or css? (css|fake)
                                            // NOTE: CSS only works in IE browsers!
$cfg['ShowBrowseComments']  = TRUE;         // shows stored relation-comments in 'browse' mode.
$cfg['ShowPropertyComments']= TRUE;         // shows stored relation-comments in 'table property' mode.
$cfg['RepeatCells']         = 100;          // repeat header names every X cells? (0 = deactivate)

$cfg['QueryFrame']          = TRUE;         // displays a new frame where a link to a querybox is always displayed.
$cfg['QueryFrameJS']        = TRUE;         // whether to use JavaScript functions for opening a new window for SQL commands.
                                            // if set to 'false', the target of the querybox is always the right frame.
$cfg['QueryFrameDebug']     = FALSE;        // display JS debugging link (DEVELOPERS only)
$cfg['QueryWindowWidth']    = 550;          // Width of Query window
$cfg['QueryWindowHeight']   = 310;          // Height of Query window
$cfg['QueryHistoryDB']      = FALSE;         // Set to TRUE if you want DB-based query history.
                                            // If FALSE, this utilizes JS-routines to display
                                            // query history (lost by window close)
$cfg['QueryWindowDefTab']   = 'sql';        // which tab to display in the querywindow on startup
                                            // (sql|files|history|full)
$cfg['QueryHistoryMax']     = 25;           // When using DB-based query history, how many entries
                                            // should be kept?
$cfg['BrowseMIME']          = TRUE;         // Use MIME-Types (stored in column comments table) for
$cfg['MaxExactCount']       = 20000;        // When approximate count < this, PMA will get exact count for
                                            // table rows.
$cfg['WYSIWYG-PDF']         = TRUE;         // Utilize DHTML/JS capabilities to allow WYSIWYG editing of
                                            // the PDF page editor. Requires an IE6/Mozilla based browser.

/**
* SQL Query box settings
* These are the links display in all of the SQL Query boxes
*/
$cfg['SQLQuery']['Edit']      = TRUE;       // Edit link to change a query
$cfg['SQLQuery']['Explain']   = TRUE;       // EXPLAIN on SELECT queries
$cfg['SQLQuery']['ShowAsPHP'] = TRUE;       // Wrap a query in PHP
$cfg['SQLQuery']['Validate']  = FALSE;      // Validate a query (see $cfg['SQLValidator'] as well)


/**
* Webserver upload/save/import directories
*/
$cfg['UploadDir']             = '';         // Directory for uploaded files that can be executed by
                                            // phpMyAdmin. For example './upload'. Leave empty for
                                            // no upload directory support
$cfg['SaveDir']               = '';         // Directory where phpMyAdmin can save exported data on
                                            // server. For example './save'. Leave empty for no save
                                            // directory support.
$cfg['docSQLDir']             = '';         // Directory for docSQL imports, phpMyAdmin can import
                                            // docSQL files from that directory. For example
                                            // './docSQL'. Leave empty for no docSQL import support.


/**
* Misc. settings
*/
$cfg['GD2Available']          = 'auto';     // Is GD >= 2 available? Set to yes/no/auto. 'auto'
                                            // does autodetection, which is a bit expensive for
                                            // php < 4.3.0, but it is the only safe vay how to
                                            // determine GD version.
/**
* SQL Parser Settings
*/
]$cfg['SQP']['fmtType']      = 'html';       // 查詢語句輸出樣式 (html, text, none)
$cfg['SQP']['fmtInd']       = '1';             // 每行間距(floats ok)
$cfg['SQP']['fmtIndUnit']   = 'em';         // 每行的縮進單位 (CSS Types - {em,px,pt})
$cfg['SQP']['fmtColor']     = array(         // 語法顏色數據

    'comment'            => '#808000',
    'comment_mysql'      => '',
    'comment_ansi'       => '',
    'comment_c'          => '',
    'digit'              => '',
    'digit_hex'          => 'teal',
    'digit_integer'      => 'teal',
    'digit_float'        => 'aqua',
    'punct'              => 'fuchsia',
    'alpha'              => '',
    'alpha_columnType'   => '#FF9900',
    'alpha_columnAttrib' => '#0000FF',
    'alpha_reservedWord' => '#990099',
    'alpha_functionName' => '#FF0000',
    'alpha_identifier'   => 'black',
    'alpha_variable'     => '#800000',
    'quote'              => '#008000',
    'quote_double'       => '',
    'quote_single'       => '',
    'quote_backtick'     => ''
);


/**
* If you wish to use the SQL Validator service, you should be
* aware of the following:
* All SQL statements are stored anonymously for statistical purposes.
* Mimer SQL Validator, Copyright 2002 Upright Database Technology.
* All rights reserved.
*/
$cfg['SQLValidator']['use']      = FALSE;   // Make the SQL Validator available
$cfg['SQLValidator']['username'] = '';      // If you have a custom username, specify it here (defaults to anonymous)
$cfg['SQLValidator']['password'] = '';      // Password for username

/**
* Developers ONLY!
* To use the following, please install the DBG extension from http://dd.cron.ru/dbg/
*/
$cfg['DBG']['enable'] = FALSE;              // Make the DBG stuff available
$cfg['DBG']['profile']['enable'] = FALSE;   // Produce profiling results of PHP
$cfg['DBG']['profile']['threshold'] = 0.5;  // Threshold of long running code to display
                                            // Anything below the threshold is not displayed


/**
* MySQL settings
*/
// Column types;
// varchar, tinyint, text and date are listed first, based on estimated popularity
$cfg['ColumnTypes'] = array(
   'VARCHAR',
   'TINYINT',
   'TEXT',
   'DATE',
   'SMALLINT',
   'MEDIUMINT',
   'INT',
   'BIGINT',
   'FLOAT',
   'DOUBLE',
   'DECIMAL',
   'DATETIME',
   'TIMESTAMP',
   'TIME',
   'YEAR',
   'CHAR',
   'TINYBLOB',
   'TINYTEXT',
   'BLOB',
   'MEDIUMBLOB',
   'MEDIUMTEXT',
   'LONGBLOB',
   'LONGTEXT',
   'ENUM',
   'SET'
);

// Atributes
$cfg['AttributeTypes'] = array(
   '',
   'BINARY',
   'UNSIGNED',
   'UNSIGNED ZEROFILL'
);

// Available functions
if ($cfg['ShowFunctionFields']) {
    $cfg['Functions'] = array(
       'ASCII',
       'CHAR',
       'SOUNDEX',
       'LCASE',
       'UCASE',
       'NOW',
       'PASSWORD',
       'MD5',
       'ENCRYPT',
       'RAND',
       'LAST_INSERT_ID',
       'COUNT',
       'AVG',
       'SUM',
       'CURDATE',
       'CURTIME',
       'FROM_DAYS',
       'FROM_UNIXTIME',
       'PERIOD_ADD',
       'PERIOD_DIFF',
       'TO_DAYS',
       'UNIX_TIMESTAMP',
       'USER',
       'WEEKDAY',
       'CONCAT'
    );
   
    // Which column types will be mapped to which Group?
    $cfg['RestrictColumnTypes'] = array(
       'VARCHAR'      => 'FUNC_CHAR',
       'TINYINT'      => 'FUNC_NUMBER',
       'TEXT'         => 'FUNC_CHAR',
       'DATE'         => 'FUNC_DATE',
       'SMALLINT'     => 'FUNC_NUMBER',
       'MEDIUMINT'    => 'FUNC_NUMBER',
       'INT'          => 'FUNC_NUMBER',
       'BIGINT'       => 'FUNC_NUMBER',
       'FLOAT'        => 'FUNC_NUMBER',
       'DOUBLE'       => 'FUNC_NUMBER',
       'DECIMAL'      => 'FUNC_NUMBER',
       'DATETIME'     => 'FUNC_DATE',
       'TIMESTAMP'    => 'FUNC_DATE',
       'TIME'         => 'FUNC_DATE',
       'YEAR'         => 'FUNC_DATE',
       'CHAR'         => 'FUNC_CHAR',
       'TINYBLOB'     => 'FUNC_CHAR',
       'TINYTEXT'     => 'FUNC_CHAR',
       'BLOB'         => 'FUNC_CHAR',
       'MEDIUMBLOB'   => 'FUNC_CHAR',
       'MEDIUMTEXT'   => 'FUNC_CHAR',
       'LONGBLOB'     => 'FUNC_CHAR',
       'LONGTEXT'     => 'FUNC_CHAR',
       'ENUM'         => '',
       'SET'          => ''
    );

    // Map above defined groups to any function
    $cfg['RestrictFunctions'] = array(
        'FUNC_CHAR'   => array(
            'ASCII',
            'CHAR',
            'SOUNDEX',
            'LCASE',
            'UCASE',
            'PASSWORD',
            'MD5',
            'ENCRYPT',
            'LAST_INSERT_ID',
            'USER',
            'CONCAT'
        ),

        'FUNC_DATE'   => array(
            'NOW',
            'CURDATE',
            'CURTIME',
            'FROM_DAYS',
            'FROM_UNIXTIME',
            'PERIOD_ADD',
            'PERIOD_DIFF',
            'TO_DAYS',
            'UNIX_TIMESTAMP',
            'WEEKDAY'
        ),

        'FUNC_NUMBER' => array(
            'ASCII',
            'CHAR',
            'MD5',
            'ENCRYPT',
            'RAND',
            'LAST_INSERT_ID',
            'COUNT',
            'AVG',
            'SUM'
        )
    );
   
} // end if


/**
* Unset magic_quotes_runtime - do not change!
*/
set_magic_quotes_runtime(0);

/**
* File Revision - do not change either!
*/
$cfg['FileRevision'] = '$Revision: 1.204.2.1 $';
?>

[ Last edited by yecoo on 2004-3-18 at 09:04 PM ]




歡迎光臨 Discuz! 官方交流社區 (http://www.letianbiye.cn/) Powered by Discuz! W1.0
主站蜘蛛池模板: 金昶泰机械设备有限公司| 重庆明华机械有限公司| 山东莱德机械有限公司| 太仓悦凯精密机械有限公司| 深圳市海德精密机械有限公司| 南京重霸起重设备有限公司| 业精机械制造有限公司| 青岛西城铸造机械有限公司| 浙江瑞德森机械有限公司| 郑州水工机械有限公司| 唐山机械设备有限公司| 东莞市康机械有限公司| 南京惠德机械有限公司| 东莞三机械有限公司| 大阳通用机械有限公司| 青岛昊宇重工有限公司| 杭州青达机械有限公司| 苏州洁宝机械有限公司| 泰州市机械制造有限公司| 泸州长江工程机械成套有限公司| 徐州成日钢铁有限公司| 嘉兴市宏丰机械有限公司| 常州双鸟起重机械有限公司| 鸿兴织带机械有限公司| 苏州恒威海绵机械有限公司| 威海光威精密机械有限公司| 常熟 机械有限公司| 张家港市亿利机械有限公司| 邯郸纺织机械有限公司| 江阴市机械有限公司| 锦机械设备有限公司| 上海达辉机械有限公司| 南京利晨机械有限公司| 江苏柳工机械有限公司| 标特福精密机械电子有限公司| 大丰联鑫钢铁有限公司| 杭州中亚机械有限公司招聘| 天赛塑胶机械有限公司| 西安北村精密机械有限公司| 张家口机械有限公司| 常熟飞龙机械有限公司| 江苏清淮机械有限公司| 上海斯特克沃森重工设备有限公司 | 河南省浩业矿山机械有限公司 | 洛阳瑞德机械有限公司| 青岛武船重工有限公司| 上海起帆电线电缆有限公司| 汕头市伟力塑料机械厂有限公司 | 上海昌强重工机械有限公司| 豫工机械设备有限公司| 中远海运重工有限公司| 郑州谷丰机械设备有限公司| 上海集嘉机械有限公司| 上海又高机械有限公司| 漳州三宝钢铁有限公司| 国浩机械制造有限公司| 博山 机械有限公司| 梁发记机械有限公司| 重庆精密机械有限公司| 中山弘立机械有限公司| 佛山市宝索机械制造有限公司| 东莞市途锐机械有限公司 | 巩义市瑞赛克机械设备有限公司| 河南机械设备制造有限公司列表 | 浙江诚泰化工机械有限公司| 东莞高臻机械设备有限公司| 华鑫机械制造有限公司| 浙江金奔机械制造有限公司| 浙江名博机械有限公司| 平湖市机械有限公司| 洛阳翼明机械有限公司| 合肥康恒机械有限公司| 河南 机械有限公司| 曲阜机械设备有限公司| 上海本优机械有限公司| 河南三星机械有限公司| 桂林机械制造有限公司| 湖南五丰机械有限公司| 河南共威机械设备有限公司| 河南丰泉机械有限公司| 遵化建龙钢铁有限公司| 江阴机械制造有限公司怎么样| 青县冀丰钢铁有限公司| 南通 机械 有限公司| 欧克机械制造有限公司| 苏州 工业机械有限公司| 安徽远鸿机械自动化有限公司| 东莞市大机械有限公司| 江苏瀚皋机械有限公司| 资阳 机械有限公司| 濮阳市机械有限公司| 上海红重机械装备有限公司| 重庆庆泰机械有限公司| 天津传动机械有限公司| 北京精密机械有限公司| 浙江德玛克机械有限公司| 徐州市机械有限公司| 青岛现代机械有限公司| 牡丹江机械有限公司| 机械设备工程有限公司| 华泰机械制造有限公司| 萨驰华辰机械 苏州 有限公司| 廊坊机械设备有限公司| 宁波海江机械制造有限公司 | 文水海威钢铁有限公司| 河南矿山起重机有限公司地址| 广州汉达机械有限公司| 武汉纵能机械制造有限公司 | 山东巨威机械有限公司| 象山机械制造有限公司| 成都 食品机械有限公司| 杭州一鼎传动机械有限公司| 青岛德利机械有限公司| 葛洲坝机械船舶有限公司| 茂名重力石化机械制造有限公司| 江南起重机械有限公司| 上海达和荣艺包装机械有限公司 | 江苏福克斯机械有限公司| 汉威机械制造有限公司| 广东省重工建筑设计院有限公司 | 诸城市中天机械有限公司| 东阳机械制造有限公司| 山东亚泰重型机械有限公司| 杭州嘉诚机械有限公司| 河南工程机械有限公司| 河北机械设备有限公司| 杭州迪迪机械有限公司| 太平洋机械有限公司| 杭州丽伟电脑机械有限公司| 山东机械份有限公司| 苏州海骏自动化机械有限公司| 上海科瑞机械有限公司| 安徽远鸿机械自动化有限公司| 江西 机械有限公司| 重庆正格农业机械有限公司 | 山东 包装机械有限公司| 宁波裕民机械工业有限公司| 昆山精工机械有限公司| 包装机械设备有限公司| 无锡市钢铁有限公司| 深圳市奥德机械有限公司| 沈阳六和机械有限公司| 徐州市机械有限公司| 荣精密机械有限公司| 潍坊天洁机械有限公司| 台州欧玮机械有限公司| 上海神威机械有限公司| 无锡诺亚机械有限公司| 山东宝星机械有限公司| 宁波联成机械有限公司| 山东吉恒机械有限公司| 广州易鸿机械有限公司| 青岛迪恩机械制造有限公司| 爱可机械深圳有限公司| 浙江新立机械有限公司| 济宁矿山机械有限公司| 江苏双轮泵业机械制造有限公司| 宁波市海达塑料机械有限公司| 北京恒博立华机械设备有限公司| 科达机械制造有限公司| 东莞市机械设备有限公司| 苏州博杰思达机械有限公司| 无锡精派机械有限公司| 上海炬钢机械制造有限公司| 山东通佳重工有限公司| 力邦 机械有限公司| 上海紫明印刷机械有限公司| 上海机械加工有限公司| 江苏常动机械有限公司| 合肥机械制造有限公司| 温州天富机械有限公司| 三友医疗机械有限公司| 吉川机械设备有限公司| 广州广田包装机械有限公司| 建筑机械租赁有限公司| 新宝泰钢铁有限公司| 碎得机械北京有限公司| 苏州联佳精密机械有限公司| 山东鑫弘重工有限公司| 宁波市机械有限公司| 上海紫永机械有限公司| 上海敏硕机械配件有限公司 | 宁波星峰机械有限公司| 徐州 机械制造有限公司| 潍坊沃富机械有限公司| 宁夏天地奔牛银起设备有限公司| 温州市凯驰包装机械有限公司| 鸿江机械制造有限公司| 建筑工程机械租聘有限公司| 新乡市豫新起重机械有限公司 | 江阴市博越机械有限公司| 浙江帅锋精密机械制造有限公司 | 烟台金元矿业机械有限公司| 长沙众宇机械有限公司| 南京泽创机械有限公司| 苏州市机械制造有限公司| 青州汇众机械有限公司| 徐州斗山工程机械有限公司| 上海起发实验试剂有限公司| 山东恒旺机械有限公司| 福建泉工机械有限公司| 浩胜食品机械有限公司| 泰上机械设备有限公司| 东莞安默琳机械制造技术有限公司| 连云港市机械有限公司| 上海昱庄机械有限公司| 耐驰上海机械仪器有限公司| 川岛洗涤机械有限公司| 快克数控机械有限公司| 常州市雪龙机械制造有限公司 | 建筑机械设备有限公司| 无锡水登机械有限公司| 东莞市机械有限公司| 重庆渝辉机械有限公司| 佛山精诚机械有限公司| 湖北三六重工有限公司| 广州市华劲机械有限公司| 厦门大金机械有限公司| 温岭宏业机械有限公司| 河南嵩山重工有限公司| 广东富华机械装备制造有限公司| 郑州年旭机械有限公司| 靖江市机械制造有限公司| 均强机械苏州有限公司| 青岛特殊钢铁有限公司| 南昌欣向荣机械有限公司| 昆山铭世特精密机械有限公司| 广东达诚机械有限公司| 浙江长泰机械有限公司| 潍坊宇航机械有限公司| 科倍隆南京机械有限公司| 杭州龙云水利机械制造有限公司| 南京科倍隆机械有限公司| 南阳市 机械有限公司| 长沙聚邦机械设备有限公司| 布勒机械设备有限公司| 无锡诺德传动机械有限公司| 九龙机械制造有限公司| 志高精密机械有限公司| 云南中拓钢铁有限公司| 起重机械设备有限公司| 上海梯诺机械设备有限公司| 重庆万凯机械有限公司| 上海喜曼机械有限公司| 青岛机械制造有限公司| 河北凯瑞重工有限公司| 台州亚格机械有限公司| 威海隆发机械有限公司| 上海轩世机械有限公司| 浙江耐士伦机械有限公司| 深圳市高士达精密机械有限公司| 郑州宇通重工有限公司| 河北机械进出口有限公司| 上海造及精密机械制造有限公司| 上海祝融起重机械有限公司| 徐州世通重工机械制造有限公司| 河南合力起重机械有限公司| 上海宝丰机械制造有限公司| 四川阳光机械有限公司| 无锡力马化工机械有限公司 | 上海航空机械有限公司| 上海工程机械有限公司| 广州广重分离机械有限公司| 新乡黄氏食品机械有限公司| 鹤壁市双信矿山机械有限公司| 广州市机械设备有限公司| 西安北村精密机械有限公司| 佛山丰又丰机械有限公司| 兖矿东华重工有限公司| 浙江美华包装机械有限公司| 山东峻峰起重机械有限公司| 洛阳卡瑞起重设备有限公司| 上海奉业包装机械有限公司| 昆山市机械有限公司| 上海丁博重工机械有限公司| 盐城万富隆机械制造有限公司| 武安市明芳钢铁有限公司| 承德盛丰钢铁有限公司| 山东荣利中石油机械有限公司| 郑州米格机械有限公司| 上海美捷伦包装机械有限公司| 深圳华盛昌机械实业有限公司| 东泰盛机械有限公司| 海瑞克隧道机械有限公司| 天津文洲机械有限公司| 光大机械厂有限公司| 上海杉野机械有限公司| 郑州永联机械有限公司| 张家港同大机械有限公司| 重庆精密机械有限公司| 厦门洪海机械有限公司| 机械有限公司经营范围| 农友机械设备有限公司| 首钢伊犁钢铁有限公司| 佛山星光传动机械有限公司| 日照钢铁轧钢有限公司| 厦门银华机械有限公司| 欧力特机械有限公司| 河南北工机械制造有限公司| 山东常美机械有限公司| 盐城益聚达机械有限公司| 台州精密机械有限公司| 佛山市三良机械设备有限公司| 山东岳工机械有限公司| 深圳新劲力机械有限公司| 沂水阳东机械有限公司| 南京福能机械设备有限公司| 潍坊浩泰机械有限公司| 山东国丰机械有限公司| 广东仕诚塑料机械有限公司 | 徐州市机械有限公司| 台州通宇变速机械有限公司| 温州光明印刷机械有限公司| 绍兴机械制造有限公司| 上海起鑫贸易有限公司| 天津国际机械有限公司| 华天机械制造有限公司| 定州宏远机械有限公司| 上海舜诺机械有限公司| 临沂 机械有限公司| 河南云天起重机械有限公司| 南京腾阳机械有限公司| 郑州江河重工有限公司| 贵州红林机械有限公司| 广东万联包装机械有限公司| 威海化工机械有限公司招聘| 浙江精劲机械有限公司| 杭州驰林机械有限公司| 焦作市虹起制动器有限公司| 余姚市机械有限公司| 新乡振动机械有限公司| 嘉善精密机械有限公司| 南京南特精密机械有限公司| 柳州市超凌顺机械制造有限公司 | 无锡精密机械有限公司| 洛阳翼明机械有限公司| 昆山富日精密机械有限公司| 重庆精密机械有限公司| 南京神鹏机械设备有限公司| 常熟市机械有限公司| 常州布勒机械有限公司| 宁波中机械有限公司| 长城机械制造有限公司| 洛阳鹏起实业有限公司| 曲阜天阳机械有限公司| 新余钢铁厂有限公司| 盛达机械设备有限公司| 广州闽欣机械设备有限公司| 青岛昊宇重工有限公司| 青岛大牧人机械有限公司招聘| 常州市昊博机械有限公司| 济南华飞数控机械有限公司| 无锡诺亚机械有限公司| 深圳中施机械设备有限公司| 重庆瀚源机械有限公司| 石家庄钢铁有限公司| 广东食品机械有限公司| 东莞安默琳机械制造技术有限公司 | 常州锐展机械有限公司| 化工机械制造有限公司| 商丘机械设备有限公司| 上海舜诺机械有限公司| 深圳市兴合发齿轮机械有限公司 | 三友医疗机械有限公司| 广州冠浩机械设备有限公司| 西安鸿运机械有限公司| 东方液压机械有限公司| 河北华昌机械设备有限公司| 泉州金鹰机械有限公司| 温州博宇机械有限公司| 康铖机械设备有限公司| 漳州钜钢机械有限公司| 广州机械设备有限公司| 合肥市春晖机械制造有限公司| 重庆江增机械有限公司| 山东米科思机械设备有限公司 | 浙江迅定钢铁有限公司| 常州杭钢卓信机械装备有限公司| 江西 机械有限公司| 中阳钢铁有限公司电话| 台州博州机械有限公司| 烟台鑫海矿山机械有限公司| 成都工程机械有限公司| 咸阳 机械制造有限公司| 安徽国梁机械设备有限公司 | 武汉四方圆机械设备有限公司 | 江苏隆达机械设备有限公司| 成都恒飞机械有限公司| 浙江青山钢铁有限公司| 杭州雅顿过滤机械有限公司 | 江苏锐成机械有限公司| 安徽威萨重工机械有限公司| 咸阳机械制造有限公司| 大连红日机械有限公司| 宁波华表机械制造有限公司| 温州设备机械有限公司| 无锡海天机械有限公司| 宁波美宁机械有限公司| 江门市科杰机械自动化有限公司| 沧州怡和机械有限公司| 东莞亮剑机械有限公司| 江阴 机械制造有限公司| 台州精密机械有限公司| 合肥方圆机械有限公司| 山东莱州机械有限公司| 徐工基础工程机械有限公司| 洛阳友建工程机械有限公司| 大禾众邦机械有限公司| 江苏银华春翔机械制造有限公司 | 斗山工程机械有限公司| 浙江新飞机械有限公司| 上海塑帝机械有限公司| 杭州东田机械有限公司| 江苏宏威重工机床制造有限公司 | 湖南汇杰机械设备有限公司| 上海集嘉机械有限公司| 洛阳奥图机械设备有限公司| 郑州水工机械有限公司招聘| 娄底 机械有限公司| 浙江佶龙机械有限公司| 泉州市力达机械有限公司| 新疆汇合钢铁有限公司| 起航中文小说有限公司| 苏州艾卓精密机械有限公司| 浙江天联机械有限公司| 平湖成功机械有限公司| 耐驰上海机械仪器有限公司| 临沂华立机械有限公司| 温岭宏业机械有限公司| 上海电工机械有限公司| 大连船舶重工船业有限公司| 太平洋机械有限公司| 嘉兴精密机械有限公司| 长沙聚邦机械设备有限公司| 上海戈扬包装机械有限公司| 精密机械设备有限公司| 济宁青科机械有限公司| 嘉宝精密机械有限公司| 广州精密机械有限公司| 柳州欧维姆机械有限公司| 航星洗涤机械(泰州)有限公司| 安徽鸿泰钢铁有限公司| 重庆屯茂机械有限公司| 江苏熔盛重工有限公司| 佛山柯田包装机械有限公司| 浙江斯耐达机械工具有限公司| 上海竹达机械设备有限公司| 湖南嘉龙机械设备贸易有限公司 | 中山精密机械有限公司| 宝鸡市机械有限公司| 建筑机械设备有限公司| 东莞市利瀚机械有限公司| 东莞市世翔精密机械制造有限公司| 布勒机械设备有限公司| 涂装机械设备有限公司| 南阳 机械制造有限公司| 河北普阳钢铁有限公司| 重庆辉昌机械设备有限公司| 上海上丰机械有限公司| 郑州明瑞机械设备有限公司| 永红铸造机械有限公司| 浙江鑫 机械有限公司| 江苏润山机械有限公司| 万金机械配件有限公司| 苏州工业园区嘉宝精密机械有限公司 | 陕西通运机械有限公司| 东莞市嘉鲁特注塑机械有限公司| 浙江嘉元机械制造有限公司| 山东神力起重机械有限公司 | 河南广泰机械有限公司| 张家口机械有限公司| 福建机械工业有限公司| 曲阜天阳机械有限公司| 辽宁春光机械有限公司| 机械(上海)有限公司| 潍坊宇航机械有限公司| 杭州双利机械有限公司| 精密机械加工有限公司| 杭州正驰达精密机械有限公司| 江苏中饮机械有限公司| 赣云食品机械有限公司| 江阴华东机械有限公司| 蚌埠 机械有限公司| 潍坊元鸣机械有限公司| 湖州核汇机械有限公司| 河北清大环保机械有限公司| 云南中天机械有限公司| 斯特机械制造有限公司| 上海山启机械制造有限公司| 荣龙精密机械有限公司| 上海钢铁贸易有限公司| 抚顺石油机械有限公司| 山东大华机械有限公司| 上海辰品食品机械有限公司| 马氏木工机械有限公司| 常州玫尔机械有限公司| 江阴戎辉机械设备制造有限公司| 温州新派机械有限公司| 德瑞机械设备有限公司| 沈阳重工机械有限公司| 郑州水工机械有限公司招聘| 林氏玻璃机械有限公司| 中车南口机械有限公司| 上海威士机械有限公司| 营口京华钢铁有限公司招聘| 河北常富机械有限公司| 珠海仕高玛机械设备有限公司 | 东莞市顺翼机械有限公司| 南通佳宝机械有限公司| 铁岭圣添机械有限公司| 济南 建筑机械有限公司| 永洋钢铁有限公司电话| 南通盛仕达精密机械有限公司| 沈阳三重机械有限公司| 常州浦发机械有限公司| 重村钢模机械工业苏州有限公司| 上海伍行机械设备有限公司| 廊坊德基机械有限公司| 江阴乐帕克智能机械有限公司 | 浙江流遍机械润滑有限公司 | 山东临工工程机械有限公司招聘| 郑州华隆机械制造有限公司 | 山东元裕机械有限公司| 广州市金王机械设备有限公司 | 厦门大禾机械有限公司| 青岛银象机械有限公司| 东莞市康机械有限公司| 科雄精密机械有限公司| 苏州博机械有限公司| 自动化机械设备有限公司| 山东联邦重工有限公司| 康纳机械制造有限公司| 河北冀工机械制造有限公司 | 合肥 机械有限公司| 苏州金纬机械制造有限公司| 长兴军毅机械有限公司| 道依茨法尔机械有限公司| 济南 机械制造有限公司| 广州永胜钢铁制品有限公司| 苏州市恒升机械有限公司| 济南腾越机械制造有限公司| 无锡杨佳机械有限公司| 苏州亿泛精密机械有限公司| 廊坊中建机械有限公司| 武汉东尔机械有限公司| 广州市 包装机械有限公司| 上海达辉机械有限公司| 济南数控机械有限公司| 潍坊坊通机械有限公司| 益阳中源钢铁有限公司| 杭州 机械有限公司| 江阴宗承钢铁有限公司| 浙江三永机械有限公司| 山东博精化工机械有限公司| 无锡纺织机械有限公司| 东莞市博志达工程机械制造有限公司| 合浦惠利机械有限公司| 浙江诚泰化工机械有限公司 | 威海远兴机械有限公司| 芜湖机械制造有限公司| 江阴博丰钢铁有限公司| 昆山拓可机械有限公司| 北京机械设备制造有限公司| 机械(昆山)有限公司| 扬州恒润钢铁有限公司| 武汉千里马工程机械有限公司 | 江苏恒悦机械有限公司| 三明 机械有限公司| 永川海通机械有限公司| 河南隧通机械有限公司| 上海百劲机械有限公司| 青岛鲁耕农业机械有限公司| 重庆庆泰机械有限公司| 南通 机械 有限公司| 山东银鹰炊事机械有限公司| 合肥精密机械有限公司| 章丘大成机械有限公司| 武汉东尔机械有限公司| 泰安市民乐机械制造有限公司| 江西平起实业有限公司| 南京登峰起重设备制造有限公司| 昆山尚亦精密机械有限公司 | 泰州市海锋机械制造有限公司| 河南矿山起重机有限公司销售电话| 南通苏诺特包装机械有限公司| 柳州欧维姆机械有限公司| 富江机械制造有限公司| 江阴伟江机械有限公司| 创达机械制造有限公司| 旭恒精工机械制造有限公司| 昆山苏隆机械制造有限公司| 常州泽威输送机械有限公司| 扬州精辉试验机械有限公司| 珠海康信精密机械有限公司 | 马鞍山钢铁有限公司| 兰州兰石重工有限公司| 浙江双子机械制造有限公司| 上海宾迪机械设备有限公司| 昆山美和机械有限公司| 张家港斯依格机械设备制造有限公司| 浙江先锋机械有限公司| 盐城液压机械有限公司| 浙江东雄重工有限公司| 重庆旺田机械有限公司| 诸城科翔机械有限公司| 威斯特机械有限公司| 嘉泰数控机械有限公司| 机械租赁有限公司名字| 福州 机械制造有限公司| 深圳美鹏机械设备有限公司 | 苏州派普机械有限公司| 大连正丰机械有限公司| 唐山众达机械轧辊有限公司| 东莞市机械有限公司| 长城机械制造有限公司| 河南起重机械有限公司| 同向精密机械有限公司| 肯拉铎机械有限公司| 无锡润和机械有限公司| 唐山国义特种钢铁有限公司| 湘潭 机械制造有限公司| 台湾精密机械有限公司| 佛山精密机械有限公司| 上海埃比西斯机械有限公司| 山东欧劲工程机械有限公司| 济南四通机械有限公司| 宁波力源机械有限公司| 海狮洗涤机械有限公司| 郑州升升机械有限公司| 四川宏华友信石油机械有限公司| 大连万阳重工有限公司| 溧阳三元钢铁有限公司| 杭州驰耐传动机械有限公司| 莱州 机械有限公司| 苏州市星光精密机械有限公司| 苏州英维特精密机械有限公司 | 台州万洲机械有限公司| 无锡市双瑞机械有限公司| 浙江海重重工有限公司| 深圳包装机械有限公司| 派菲奥机械有限公司| 上海轶鹰起重机械有限公司| 东营 机械制造 有限公司| 河北机械进出口有限公司| 潞城兴宝钢铁有限公司| 纸箱机械设备有限公司| 江苏大明重工有限公司| 东阳机械制造有限公司| 诸城市鼎康机械有限公司| 厦门宇龙机械有限公司| 江苏海陵机械有限公司| 濮阳市名利石化机械设备制造有限公司 | 上海杰姆博机械设备有限公司| 丹阳荣嘉精密机械有限公司| 浙江吉隆机械有限公司| 徐州宝丰钢铁有限公司| 潍坊市贝特工程机械有限公司| 福建瑜鼎机械有限公司| 河南茂盛机械制造有限公司| 山东瑞华工程机械有限公司| 广东重工建设监理有限公司怎么样| 盐城丰炜机械制造有限公司| 青岛鑫泉塑料机械有限公司| 常州杰洋精密机械有限公司| 徐工重型机械有限公司| 人和弹簧机械有限公司| 无锡永兴机械制造有限公司| 上海福源机械有限公司| 成都市机械有限公司| 卡骏机械设备有限公司| 广东光信机械有限公司| 上海大松机械有限公司| 商丘 机械设备有限公司| 济南章力机械有限公司| 江苏金韦尔机械有限公司| 龙工江西机械有限公司| 临沂盛德机械有限公司| 招远矿山机械有限公司| 宜兴市机械有限公司| 广州旭众食品机械有限公司| 浙江易锋机械有限公司| 常州纺织机械有限公司| 精密机械加工有限公司| 江西萍乡钢铁有限公司| 上海捷如重工机电设备有限公司 | 天津蓝科机械有限公司| 宝鸡中车时代工程机械有限公司| 青岛科尼乐机械设备有限公司 | 河北宏川机械制造有限公司| 鹤壁市双信矿山机械有限公司| 台州启运机械有限公司| 温州新派机械有限公司| 宿迁 机械 有限公司| 输送机械设备有限公司| 辽宁 机械制造有限公司| 东莞市峰茂机械设备有限公司| 青岛科尼乐重工有限公司| 合肥中达机械制造有限公司| 杭州红磊机械有限公司| 食品有限公司起名大全| 昆明群泰机械有限公司| 豪德机械上海有限公司| 绍兴 机械 有限公司| 温州天马食品包装机械制造有限公司| 福海鑫钢铁有限公司| 金鹰重工有限公司招聘| 厦门天一精密机械有限公司| 山东白龙机械有限公司| 四川阳光机械有限公司| 新乡市大汉振动机械有限公司 | 青岛精密机械有限公司| 山东讴神机械制造有限公司| 威海欧东机械有限公司骗局| 食品机械制造有限公司| 上海龙应机械制造有限公司| 温州市润新机械制造有限公司| 江西九江萍钢钢铁有限公司 | 上海 食品机械有限公司| 宏源机械设备有限公司| 钦州力顺机械有限公司| 中山自动化机械有限公司| 上海小虎机械有限公司| 盘江矿山机械有限公司| 深圳印刷机械深圳有限公司| 常州市雪龙机械制造有限公司 | 艺达精密机械有限公司| 芜湖中安重工自动化装备有限公司 | 西安鸿运机械有限公司| 上海包装机械有限公司| 大连胜龙包装机械有限公司| 山东冠华重工机械有限公司| 温州设备机械有限公司| 泉州得力农林机械有限公司| 三门峡化工机械有限公司| 威海华丰机械有限公司| 无锡市锡恒机械有限公司| 青岛晟森机械有限公司| 兰州华诚石化机械制造有限公司| 九江萍钢钢铁有限公司| 苏州鼎木机械设备有限公司| 旭众食品机械有限公司| 福建泉成机械有限公司| 摩丁机械常州有限公司| 沈阳维用精密机械有限公司招聘| 上海德元机械设备有限公司| 宁波永博机械制造有限公司| 宿迁百通机械有限公司| 无锡械锐机械有限公司| 太仓悦凯精密机械有限公司| 宁波创基机械有限公司| 宁波博旺机械有限公司| 志成机械制造有限公司| 华盛机械制造有限公司| 许昌 机械有限公司| 天津起重设备有限公司| 机械有限公司 机械手| 山东国新起重机械有限公司 | 中交天和机械设备制造有限公司| 堃霖冷冻机械有限公司| 滕州市美力机械有限公司| 徐州徐工基础工程机械有限公司 | 广州赛思达机械设备有限公司| 深圳市精密机械有限公司| 慈溪机械设备有限公司| 工程机械有限公司经营范围| 长葛市机械有限公司| 昆山富邦机械有限公司| 东莞市高臻机械设备有限公司| 爱可机械深圳有限公司| 广州恒星冷冻机械制造有限公司| 优瑞纳斯液压机械有限公司| 常州杰洋精密机械有限公司| 江阴市化工机械有限公司| 万通机械制造有限公司| 山东宏鑫机械有限公司| 缙云县机械有限公司| 扬州沃尔特机械有限公司| 上海山冠机械有限公司| 苏州洁宝机械有限公司| 上海腾迈机械有限公司| 东阳机械制造有限公司| 青岛银象机械有限公司| 宁波市北仑机械制造有限公司| 上海奎星包装机械有限公司| 山东凯达起重机械有限公司| 佛山机械制造有限公司| 上海太腾机械设备有限公司| 东阳市佳先机械制造有限公司| 宁波健信机械有限公司| 上海佳成服装机械有限公司| 上海香宝机械设备有限公司| 盐城机械制造有限公司| 宣城市建林机械有限公司| 广州永晋机械有限公司| 江苏飞耀机械制造有限公司| 广东 钢铁 有限公司| 辽宁富一机械有限公司| 宁波迈拓斯数控机械有限公司| 青岛青科重工有限公司| 金丰机械工业有限公司| 苏州市联佳精密机械有限公司| 合肥汉杰包装机械喷码有限公司 | 昆山鹤鑫精密机械有限公司| 金格瑞机械有限公司| 沧州恒宇机械有限公司| 浙江云广机械制造有限公司| 天烨机械工程有限公司| 荆州石油机械有限公司| 三一汽车起重机械有限公司| 赣云食品机械有限公司| 国研机械设备有限公司| 河北巨牛机械有限公司| 保东农业机械有限公司| 新乡市福泽机械设备有限公司| 志庆机械设备有限公司| 宁波力劲机械有限公司| 苏州联屹精密机械有限公司| 万通机械制造有限公司| 重工机械制造有限公司| 新乡市豫新起重机械有限公司| 江重机械制造有限公司| 温岭林大机械有限公司| 广东恒联食品机械有限公司售后 | 潍坊山水环保机械制造有限公司 | 台一精工机械有限公司| 无锡科创机械设计制造有限公司 | 凯澄起重机械有限公司| 唐山荣信钢铁有限公司| 重庆巨泰机械有限公司| 山东钢铁贸易有限公司| 塑料机械 有限公司| 湖南机械制造有限公司| 广州广重分离机械有限公司 | 旭东机械昆山有限公司| 标准缝纫机菀坪机械有限公司| 上海机械进出口有限公司| 青岛莱恩机械有限公司| 广州华研精密机械有限公司| 南京巴蜀机械有限公司| 上海立帆机械有限公司| 江阴市机械有限公司| 天阳机械制造有限公司| 三鑫重工机械有限公司| 温岭市大众精密机械有限公司| 青岛铸造机械有限公司| 唐山松汀钢铁有限公司| 张家港斯依格机械设备制造有限公司| 天津包装机械有限公司| 苏州科瑞机械有限公司| 河北 机械 有限公司| 同鼎机械设备有限公司| 佛山恒力泰机械有限公司| 普思信机械部件有限公司| 山东业机械有限公司| 安徽机械制造有限公司| 莱州聚峰机械有限公司| 深圳市安格斯机械有限公司| 河南机械设备制造有限公司列表 | 沃洲机械制造有限公司| 广东重工建设监理有限公司怎么样| 精一机械(中山)有限公司| 安丘市 机械有限公司| 佛山三技精密机械有限公司| 广州西力机械有限公司| 大连华锐重工有限公司| 溧阳三元钢铁有限公司| 中原圣起起重机械有限公司| 恒瑞机械制造有限公司| 无锡祥靖机械有限公司| 上海楚尚机械有限公司| 上海文胜机械设备有限公司 | 纸箱机械设备有限公司| 徐州华东机械有限公司| 苏州柯瑞机械有限公司| 上海景林包装机械有限公司| 建筑机械设备有限公司| 湖南汇杰机械设备有限公司| 浙江新德宝机械有限公司| 浙江天鸿传动机械有限公司| 上海东芝机械有限公司| 无锡布勒机械有限公司| 武安裕华钢铁有限公司| 东莞大禹机械有限公司| 科倍隆南京机械有限公司| 长葛鑫鑫机械有限公司| 苏拉纺织机械有限公司| 科华机械制造有限公司| 浙江大鹏机械有限公司| 杭州永创机械有限公司| 常州亚美柯机械设备有限公司 | 世翔精密机械制造有限公司| 深圳起航电商有限公司| 乐陵双鹤机械制造有限公司| 唐山利丰机械有限公司| 温岭华驰机械有限公司| 东莞利瀚机械有限公司| 佛山市松可包装机械有限公司| 青岛同三塑料机械有限公司 | 威海坤豪机械有限公司| 浙江华安机械有限公司| 江苏沃元精密机械有限公司 | 浙江金奔机械制造有限公司| 潍坊钰兴机械有限公司| 中煤盘江重工有限公司| 北京精密机械有限公司| 博路威机械江苏有限公司| 泊头市环保机械有限公司| 标准缝纫机菀坪机械有限公司| 宁波博旺机械有限公司| 北京雄伟京发机械加工有限公司 | 佛山丰堡精密机械有限公司| 宁波人和机械轴承有限公司| 东莞大同机械有限公司| 常州日月机械有限公司| 绍兴联科机械有限公司| 潍坊凯隆机械有限公司| 潍坊重工机械有限公司| 山东凯达起重机械有限公司 | 浙江荣众机械有限公司| 海宁亚东机械有限公司| 中科包装机械有限公司| 佛山市机械制造有限公司| 山东川普机械有限公司| 东莞英豪机械有限公司| 江阴凯迈机械有限公司| 陕西通运机械有限公司| 山东旭升机械有限公司| 上海机械制造有限公司| 常州市日中精密机械有限公司| 济南欧亚德数控机械有限公司| 滁州富达机械电子有限公司| 海的动力机械有限公司| 上海全驰机械有限公司| 江苏 重型机械有限公司| 南京重霸起重设备有限公司| 南通太和机械有限公司| 江阴纺织机械有限公司| 西安科迅机械制造有限公司| 湖北 钢铁有限公司| 河北新钢钢铁有限公司| 无锡盛达机械制造有限公司| 州东方机械有限公司| 湖北川谷机械有限公司| 山东讴神机械制造有限公司| 绍兴越发机械有限公司| 潍坊裕川机械有限公司| 泉州佳升机械有限公司| 青岛 重工 有限公司| 新马木工机械有限公司| 烟台精越达机械设备有限公司| 纽科伦起重机有限公司| 浙江建机起重机械有限公司| 河北国煤机械制造有限公司| 河南省起重机械有限公司| 抚顺中兴重工有限公司| 沈阳捷优机械设备有限公司| 山东金奥机械有限公司| 南通新兴机械制造有限公司| 江重机械制造有限公司| 杭州萧山鼎立机械有限公司| 廊坊机械设备有限公司| 宁波思进机械有限公司| 上海山启机械制造有限公司| 宁波工业机械有限公司| 济宁天鸿机械有限公司| 全氏食品机械(上海)有限公司| 大连胜龙包装机械有限公司| 温州 印刷机械有限公司| 常州常矿起重机械有限公司| 青岛莱恩机械有限公司| 漳州三宝钢铁有限公司| 蚌埠行星机械有限公司| 赣云食品机械有限公司| 河北工程机械有限公司| 上海汉虹精密机械有限公司 | 无锡工源机械有限公司| 西安 机械有限公司| 湖南华菱湘潭钢铁有限公司| 无锡烨隆精密机械有限公司| 江苏青山机械有限公司| 东莞市今塑精密机械有限公司| 烟台 机械有限公司| 武汉钢铁有限公司官网| 青岛华华机械有限公司| 宁波裕民机械工业有限公司 | 丰诺植保机械制造有限公司| 东莞市鑫焘机械有限公司| 成都万欣邦达机械制造有限公司 | 焦作市机械有限公司| 沈阳三重机械有限公司| 浙江富地机械有限公司| 张家港市机械有限公司| 食品机械制造有限公司| 广东富华机械装备制造有限公司 | 徐州徐工施维英机械有限公司| 马鞍山 重工机械有限公司| 友佳精密机械有限公司| 广东正力精密机械有限公司| 山东腾机械有限公司|