亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? config.inc.php

?? WEBGAME源碼,有架設說明,只是非常簡單
?? PHP
?? 第 1 頁 / 共 3 頁
字號:
<?php
/* $Id: config.inc.php,v 2.65 2005/08/23 23:08:21 lem9 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.
 */
$cfg['PmaAbsoluteUri'] = '';

/**
 * 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. The maximum length seems to be 46
 * characters.
 */
$cfg['blowfish_secret'] = '';

/**
 * 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
$cfg['Servers'][$i]['port']          = '';          // MySQL port - leave blank for default port
$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')
$cfg['Servers'][$i]['extension']     = 'mysql';     // The php MySQL extension to use ('mysql' or 'mysqli')
$cfg['Servers'][$i]['compress']      = FALSE;       // Use compressed protocol for the MySQL connection
                                                    // (requires 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).
                                                    // The controluser is also
                                                    // used for all relational
                                                    // features (pmadb)
$cfg['Servers'][$i]['auth_type']     = 'config';    // Authentication method (config, http or cookie based)?
$cfg['Servers'][$i]['user']          = 'root';      // MySQL user
$cfg['Servers'][$i]['password']      = 'root';          // MySQL password (only needed
                                                    // with 'config' auth_type)
$cfg['Servers'][$i]['only_db']       = '';     // If set to a db-name, only
                                                    // this db is displayed in left frame
                                                    // It may also be an array of db-names, where sorting order is relevant.
$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]['AllowRoot']     = TRUE;        // whether to allow root login
$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();

/**
 * If you are configuring for only one server, stop here. You can jump to the next
 *   section called "Other core phpMyAdmin settings."
 * The following section allows you to add a second server to this installation.
 */

$i++;
$cfg['Servers'][$i]['host']            = '';
$cfg['Servers'][$i]['port']            = '';
$cfg['Servers'][$i]['socket']          = '';
$cfg['Servers'][$i]['connect_type']    = 'tcp';
$cfg['Servers'][$i]['extension']       = 'mysql';
$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]['AllowRoot']       = TRUE;
$cfg['Servers'][$i]['AllowDeny']['order']
                                       = '';
$cfg['Servers'][$i]['AllowDeny']['rules']
                                       = array();

/**
 * This section allows you to configure a third server for this installation.
 */

$i++;
$cfg['Servers'][$i]['host']            = '';
$cfg['Servers'][$i]['port']            = '';
$cfg['Servers'][$i]['socket']          = '';
$cfg['Servers'][$i]['connect_type']    = 'tcp';
$cfg['Servers'][$i]['extension']       = 'mysql';
$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]['AllowRoot']       = 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.
$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')
$cfg['PersistentConnections']   = FALSE;  // use persistent connections to MySQL database
$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
$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
$cfg['LoginCookieValidity']     = 1800;   // validity of cookie login (in seconds)
$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['LeftFrameDBTree']       = TRUE;    // turn the select-based light menu into a tree
$cfg['LeftFrameDBSeparator']  = '_';     // the separator to sub-tree the select-based light menu tree
$cfg['LeftFrameTableSeparator']= '__';   // Which string will be used to generate table prefixes
                                         // to split/nest 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. Setting ShowTooltipAliasTB to 'nested' will only
                                         // use the Aliases for nested descriptors, not the table itself.

$cfg['LeftDisplayLogo']       = TRUE;   // display logo at top of left frame
$cfg['LeftDisplayServers']    = FALSE;  // display server choice at top of left frame
$cfg['DisplayServersList']    = FALSE;  // server choice as links

// 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;  // whether to display the "MySQL runtime
$cfg['ShowMysqlVars']         = FALSE;  // information", "MySQL system variables", "PHP
$cfg['ShowPhpInfo']           = FALSE;  // 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']   = 'both'; // Use icons instead of text for the navigation bar buttons
                                        // and on right panel top menu (server db table) (TRUE|FALSE|'both')
$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
$cfg['InsertRows']            = 2;      // How many rows can be inserted at one time

$cfg['ForeignKeyDropdownOrder'] =       // Sort order for items in a foreign-key dropdown box. 
    array( 'content-id', 'id-content'); // 'content' is the referenced data, 'id' is the key value.
$cfg['ForeignKeyMaxLimit'] = 100;       // A dropdown will be used if fewer items are present


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

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美r级电影在线观看| 国产99久久久精品| 一区二区三区欧美视频| 99国产精品久久久久久久久久久| 日本成人超碰在线观看| 久久超级碰视频| 风间由美一区二区av101| 成人毛片在线观看| 欧美中文字幕一区二区三区| 欧美一级午夜免费电影| 国产亚洲精久久久久久| 夜色激情一区二区| 国产一区二区电影| 国产精品综合一区二区三区| 国产精品乡下勾搭老头1| 中文字幕av在线一区二区三区| 国产欧美日韩久久| 亚洲小少妇裸体bbw| 国产成人精品免费网站| 欧美精品久久99久久在免费线| 日本一区二区三区电影| 亚洲综合久久久久| 国产一区二区三区香蕉| 欧美日韩五月天| 中文字幕一区二区三区乱码在线| 亚洲成人动漫在线免费观看| 午夜视黄欧洲亚洲| 国产69精品一区二区亚洲孕妇 | 粉嫩aⅴ一区二区三区四区五区| 在线观看亚洲精品视频| 中文字幕欧美激情一区| 亚洲一区二区精品久久av| 91在线视频观看| 中文字幕一区二区三中文字幕| 国产尤物一区二区| 日韩欧美激情在线| 精品一区二区三区的国产在线播放| 欧美视频在线观看一区| 视频一区在线视频| 欧美一级在线免费| 国产美女在线观看一区| 久久久www免费人成精品| 欧美一级理论片| 九色综合国产一区二区三区| 麻豆精品一区二区三区| 日韩一区二区三区观看| 91精品国产色综合久久ai换脸 | 欧美日韩免费一区二区三区视频| 日本在线播放一区二区三区| 欧美日韩一区二区三区免费看| 亚洲免费观看视频| 91麻豆精品国产91久久久资源速度 | 色欧美88888久久久久久影院| 国产精品久久久久一区| 91麻豆国产福利精品| 麻豆精品一区二区三区| 一区二区三区四区乱视频| 日韩欧美成人一区二区| 91捆绑美女网站| 精品夜夜嗨av一区二区三区| 中文字幕一区视频| 日韩亚洲欧美一区| 欧美性高清videossexo| 成人黄色电影在线| 国产91精品在线观看| jlzzjlzz亚洲日本少妇| 国产精品综合在线视频| 国产精品久久久久久亚洲伦| 日韩一区二区高清| 久久亚洲精精品中文字幕早川悠里| 精品一区二区影视| 国产成人精品亚洲777人妖| 亚洲日本电影在线| 亚洲美女在线一区| 亚洲视频狠狠干| 午夜视频在线观看一区| 国产成人免费在线观看不卡| 国产精品美女久久久久久久| 成人va在线观看| 亚洲福利一二三区| 日韩女优av电影| 国产成人午夜片在线观看高清观看| 中文字幕在线视频一区| 日韩欧美在线观看一区二区三区| 国产成人精品免费网站| 视频在线观看91| 国产精品嫩草99a| 欧美韩国日本一区| 中文字幕在线不卡| 久久精品视频免费| 蜜臀av国产精品久久久久| 久草这里只有精品视频| 日本亚洲最大的色成网站www| 亚洲成人免费在线| 26uuu精品一区二区三区四区在线 26uuu精品一区二区在线观看 | 欧美肥妇bbw| 91高清在线观看| jizz一区二区| 99精品视频一区| 欧美大片一区二区| 精品一区二区三区日韩| 亚洲色图第一区| 国产精品视频一区二区三区不卡| 久久综合九色综合欧美亚洲| 久久久久久久国产精品影院| 国产午夜一区二区三区| 亚洲美女区一区| 日本中文字幕一区| 国产麻豆成人精品| 欧美极品少妇xxxxⅹ高跟鞋 | 亚洲va欧美va天堂v国产综合| 亚洲午夜一二三区视频| 国产精品自拍在线| 99精品视频一区| 欧美精品色综合| 久久久久国产精品人| 一区二区三区在线视频观看| 久久99久久久欧美国产| 国产福利一区二区三区视频在线| 成人理论电影网| 91麻豆精品国产91久久久使用方法 | 欧美色图在线观看| 欧美在线观看视频在线| 国模娜娜一区二区三区| 欧美亚洲一区二区在线| 国产日韩欧美精品综合| 久久97超碰国产精品超碰| 欧洲一区二区三区免费视频| 久久久久久久综合色一本| 性做久久久久久久久| av男人天堂一区| 久久网这里都是精品| 亚洲激情图片小说视频| 亚洲欧洲www| www.在线欧美| 在线一区二区三区做爰视频网站| 老司机精品视频一区二区三区| 成人一区二区三区视频在线观看| 欧美一区二区黄色| 日韩精品一级二级| 91精品婷婷国产综合久久竹菊| 一级精品视频在线观看宜春院| 91丨九色丨黑人外教| 亚洲精品国久久99热| 欧美无砖专区一中文字| 亚州成人在线电影| 日产国产高清一区二区三区| 欧美男男青年gay1069videost| 国产精品美日韩| 亚洲福利一二三区| 精久久久久久久久久久| 精品国精品国产| 成人综合在线观看| 久久亚洲综合色一区二区三区 | 国产真实乱偷精品视频免| 综合网在线视频| 777奇米成人网| 懂色av一区二区三区蜜臀| 亚洲伦理在线精品| 日韩欧美视频在线 | 欧美久久一区二区| 国产一区二区久久| 一区二区三区丝袜| 26uuu亚洲婷婷狠狠天堂| 亚洲一二三区不卡| 国产精品天干天干在观线| 欧美日韩黄视频| caoporn国产精品| 另类欧美日韩国产在线| 一区二区三区在线高清| 久久久久久97三级| 91精品国产综合久久蜜臀| 99久久国产综合精品女不卡| 天堂久久久久va久久久久| 精品在线播放免费| 热久久久久久久| 欧美精品色综合| 欧美一区二视频| 日韩一卡二卡三卡四卡| 日韩一二三四区| 久久综合色播五月| 国产精品久久久久一区| 国产精品丝袜黑色高跟| 亚洲天天做日日做天天谢日日欢 | 日日噜噜夜夜狠狠视频欧美人| 亚洲成人777| 日产欧产美韩系列久久99| 国产美女一区二区| 国产精品资源在线观看| 成人精品小蝌蚪| 色先锋aa成人| 日韩精品资源二区在线| 国产精品乡下勾搭老头1| www.欧美日韩| 欧美午夜精品久久久久久超碰| 日韩欧美中文一区| 中文字幕在线一区免费| 美美哒免费高清在线观看视频一区二区 | 欧美大度的电影原声| 一色桃子久久精品亚洲|