Discuz!官方免费开源建站系统

 找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索

求助,我的phpMyAdmin问题!

[复制链接]
3x100 发表于 2006-1-27 10:59:13 | 显示全部楼层 |阅读模式
我的phpMyAdmin装好了打不开,全是乱码,如下图,请教高人如何搞!
homer2000 发表于 2006-1-29 08:58:20 | 显示全部楼层
应该是语言设置的不对...
回复

使用道具 举报

qelyw 发表于 2006-1-29 10:56:39 | 显示全部楼层
没有连接到sql服务器
回复

使用道具 举报

qq12300 发表于 2006-1-29 15:30:33 | 显示全部楼层
没有修改文件config.default.php
我发个给你修改好了的
  1. <?php

  2. /* !!! DO NOT EDIT THIS FILE, EDIT config.inc.php INSTEAD !!! */

  3. /* $Id: config.default.php,v 2.20.2.1 2005/11/23 10:34:32 nijel Exp $ */
  4. // vim: expandtab sw=4 ts=4 sts=4:

  5. /**
  6. * phpMyAdmin default configuration, you can copy values from here to your
  7. * config.inc.php
  8. *
  9. * All directives are explained in Documentation.html
  10. */


  11. /**
  12. * Your phpMyAdmin URL.
  13. *
  14. * Complete the variable below with the full url ie
  15. *    http://www.your_web.net/path_to_your_phpMyAdmin_directory/
  16. *
  17. * It must contain characters that are valid for a URL, and the path is
  18. * case sensitive on some Web servers, for example Unix-based servers.
  19. *
  20. * In most cases you can leave this variable empty, as the correct value
  21. * will be detected automatically. However, we recommend that you do
  22. * test to see that the auto-detection code works in your system. A good
  23. * test is to browse a table, then edit a row and save it.  There will be
  24. * an error message if phpMyAdmin cannot auto-detect the correct value.
  25. */
  26. $cfg['PmaAbsoluteUri'] = '';

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

  32. /**
  33. * The 'cookie' auth_type uses blowfish algorithm to encrypt the password. If
  34. * at least one server configuration uses 'cookie' auth_type, enter here a
  35. * passphrase that will be used by blowfish. The maximum length seems to be 46
  36. * characters.
  37. */
  38. $cfg['blowfish_secret'] = 'cookie';

  39. /**
  40. * Server(s) configuration
  41. */
  42. $i = 0;
  43. // The $cfg['Servers'] array starts with $cfg['Servers'][1].  Do not use
  44. // $cfg['Servers'][0]. You can disable a server config entry by setting host
  45. // to ''. If you want more than one server, just copy following section
  46. // (including $i incrementation) serveral times. There is no need to define
  47. // full server array, just define values you need to change.
  48. $i++;
  49. $cfg['Servers'][$i]['host']          = 'localhost'; // MySQL hostname or IP address
  50. $cfg['Servers'][$i]['port']          = '';          // MySQL port - leave blank for default port
  51. $cfg['Servers'][$i]['socket']        = '';          // Path to the socket - leave blank for default socket
  52. $cfg['Servers'][$i]['connect_type']  = 'tcp';       // How to connect to MySQL server ('tcp' or 'socket')
  53. $cfg['Servers'][$i]['extension']     = 'mysql';     // The php MySQL extension to use ('mysql' or 'mysqli')
  54. $cfg['Servers'][$i]['compress']      = FALSE;       // Use compressed protocol for the MySQL connection
  55.                                                     // (requires PHP >= 4.3.0)
  56. $cfg['Servers'][$i]['controluser']   = '';          // MySQL control user settings
  57.                                                     // (this user must have read-only
  58. $cfg['Servers'][$i]['controlpass']   = '';          // access to the "mysql/user"
  59.                                                     // and "mysql/db" tables).
  60.                                                     // The controluser is also
  61.                                                     // used for all relational
  62.                                                     // features (pmadb)
  63. $cfg['Servers'][$i]['auth_type']     = 'cookie';    // Authentication method (config, http or cookie based)?
  64. $cfg['Servers'][$i]['user']          = 'root';      // MySQL user
  65. $cfg['Servers'][$i]['password']      = '';          // MySQL password (only needed
  66.                                                     // with 'config' auth_type)
  67. $cfg['Servers'][$i]['only_db']       = '';          // If set to a db-name, only
  68.                                                     // this db is displayed in left frame
  69.                                                     // It may also be an array of db-names, where sorting order is relevant.
  70. $cfg['Servers'][$i]['verbose']       = '';          // Verbose name for this host - leave blank to show the hostname

  71. $cfg['Servers'][$i]['pmadb']         = '';          // Database used for Relation, Bookmark and PDF Features
  72.                                                     // (see scripts/create_tables.sql)
  73.                                                     //   - leave blank for no support
  74.                                                     //     DEFAULT: 'phpmyadmin'
  75. $cfg['Servers'][$i]['bookmarktable'] = '';          // Bookmark table
  76.                                                     //   - leave blank for no bookmark support
  77.                                                     //     DEFAULT: 'pma_bookmark'
  78. $cfg['Servers'][$i]['relation']      = '';          // table to describe the relation between links (see doc)
  79.                                                     //   - leave blank for no relation-links support
  80.                                                     //     DEFAULT: 'pma_relation'
  81. $cfg['Servers'][$i]['table_info']    = '';          // table to describe the display fields
  82.                                                     //   - leave blank for no display fields support
  83.                                                     //     DEFAULT: 'pma_table_info'
  84. $cfg['Servers'][$i]['table_coords']  = '';          // table to describe the tables position for the PDF schema
  85.                                                     //   - leave blank for no PDF schema support
  86.                                                     //     DEFAULT: 'pma_table_coords'
  87. $cfg['Servers'][$i]['pdf_pages']     = '';          // table to describe pages of relationpdf
  88.                                                     //   - leave blank if you don't want to use this
  89.                                                     //     DEFAULT: 'pma_pdf_pages'
  90. $cfg['Servers'][$i]['column_info']   = '';          // table to store column information
  91.                                                     //   - leave blank for no column comments/mime types
  92.                                                     //     DEFAULT: 'pma_column_info'
  93. $cfg['Servers'][$i]['history']       = '';          // table to store SQL history
  94.                                                     //   - leave blank for no SQL query history
  95.                                                     //     DEFAULT: 'pma_history'
  96. $cfg['Servers'][$i]['verbose_check'] = TRUE;        // set to FALSE if you know that your pma_* tables
  97.                                                     // are up to date. This prevents compatibility
  98.                                                     // checks and thereby increases performance.
  99. $cfg['Servers'][$i]['AllowRoot']     = TRUE;        // whether to allow root login
  100. $cfg['Servers'][$i]['AllowDeny']['order']           // Host authentication order, leave blank to not use
  101.                                      = '';
  102. $cfg['Servers'][$i]['AllowDeny']['rules']           // Host authentication rules, leave blank for defaults
  103.                                      = array();

  104. // If you have more than one server configured, you can set $cfg['ServerDefault']
  105. // to any one of them to autoconnect to that server when phpMyAdmin is started,
  106. // or set it to 0 to be given a list of servers without logging in
  107. // If you have only one server configured, $cfg['ServerDefault'] *MUST* be
  108. // set to that server.
  109. $cfg['ServerDefault'] = 1;              // Default server (0 = no default server)

  110. /**
  111. * Other core phpMyAdmin settings
  112. */
  113. $cfg['OBGzip']                  = 'auto'; // use GZIP output buffering if possible (TRUE|FALSE|'auto')
  114. $cfg['PersistentConnections']   = FALSE;  // use persistent connections to MySQL database
  115. $cfg['ForceSLL']                = FALSE;  // whether to force using https
  116. $cfg['ExecTimeLimit']           = 300;    // maximum execution time in seconds (0 for no limit)
  117. $cfg['SkipLockedTables']        = FALSE;  // mark used tables, make possible to show
  118.                                           // locked tables (since MySQL 3.23.30)
  119. $cfg['ShowSQL']                 = TRUE;   // show SQL queries as run
  120. $cfg['AllowUserDropDatabase']   = FALSE;  // show a 'Drop database' link to normal users
  121. $cfg['Confirm']                 = TRUE;   // confirm 'DROP TABLE' & 'DROP DATABASE'
  122. $cfg['LoginCookieRecall']       = TRUE;   // recall previous login in cookie auth. mode or not
  123. $cfg['LoginCookieValidity']     = 1800;   // validity of cookie login (in seconds)
  124. $cfg['UseDbSearch']             = TRUE;   // whether to enable the "database search" feature
  125.                                           // or not
  126. $cfg['IgnoreMultiSubmitErrors'] = FALSE;  // if set to true, PMA continues computing multiple-statement queries
  127.                                           // even if one of the queries failed
  128. $cfg['VerboseMultiSubmit']      = TRUE;   // if set to true, PMA will show the affected rows of EACH statement on
  129.                                           // multiple-statement queries. See the libraries/import.php file for
  130.                                           // hardcoded defaults on how many queries a statement may contain!
  131. $cfg['AllowArbitraryServer']    = FALSE;  // allow login to any user entered server in cookie based auth

  132. // Left frame setup
  133. $cfg['LeftFrameLight']        = TRUE;    // use a select-based menu and display only the
  134.                                          // current tables in the left frame.
  135. $cfg['LeftFrameDBTree']       = TRUE;    // turn the select-based light menu into a tree
  136. $cfg['LeftFrameDBSeparator']  = '_';     // the separator to sub-tree the select-based light menu tree
  137. $cfg['LeftFrameTableSeparator']= '__';   // Which string will be used to generate table prefixes
  138.                                          // to split/nest tables into multiple categories
  139. $cfg['LeftFrameTableLevel']   = '1';     // How many sublevels should be displayed when splitting
  140.                                          // up tables by the above Separator
  141. $cfg['ShowTooltip']           = TRUE;    // display table comment as tooltip in left frame
  142. $cfg['ShowTooltipAliasDB']    = FALSE;   // if ShowToolTip is enabled, this defines that table/db comments
  143. $cfg['ShowTooltipAliasTB']    = FALSE;   // are shown (in the left menu and db_details_structure) instead of
  144.                                          // table/db names. Setting ShowTooltipAliasTB to 'nested' will only
  145.                                          // use the Aliases for nested descriptors, not the table itself.

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

  149. // In the main frame, at startup...
  150. $cfg['ShowStats']             = TRUE;   // allow to display statistics and space usage in
  151.                                         // the pages about database details and table
  152.                                         // properties
  153. $cfg['ShowPhpInfo']           = FALSE;  // information" and "change password" links for
  154. $cfg['ShowChgPassword']       = FALSE;  // simple users or not
  155. $cfg['SuggestDBName']         = TRUE;   // suggest a new DB name if possible (false = keep empty)

  156. // In browse mode...
  157. $cfg['ShowBlob']              = FALSE;  // display blob field contents
  158. $cfg['NavigationBarIconic']   = 'both'; // Use icons instead of text for the navigation bar buttons
  159.                                         // and on right panel top menu (server db table) (TRUE|FALSE|'both')
  160. $cfg['ShowAll']               = FALSE;  // allows to display all the rows
  161. $cfg['MaxRows']               = 30;     // maximum number of rows to display
  162. $cfg['Order']                 = 'ASC';  // default for 'ORDER BY' clause (valid
  163.                                         // values are 'ASC', 'DESC' or 'SMART' -ie
  164.                                         // descending order for fields of type
  165.                                         // TIME, DATE, DATETIME & TIMESTAMP,
  166.                                         // ascending order else-)

  167. // In edit mode...
  168. $cfg['ProtectBinary']         = 'blob'; // disallow editing of binary fields
  169.                                         // valid values are:
  170.                                         //   FALSE  allow editing
  171.                                         //   'blob' allow editing except for BLOB fields
  172.                                         //   'all'  disallow editing
  173. $cfg['ShowFunctionFields']    = TRUE;   // Display the function fields in edit/insert mode
  174. $cfg['CharEditing']           = 'input';
  175.                                         // Which editor should be used for CHAR/VARCHAR fields:
  176.                                         //  input - allows limiting of input length
  177.                                         //  textarea - allows newlines in fields
  178. $cfg['InsertRows']            = 2;      // How many rows can be inserted at one time

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


  182. // For the export features...
  183. $cfg['ZipDump']               = TRUE;   // Allow the use of zip/gzip/bzip
  184. $cfg['GZipDump']              = TRUE;   // compression for
  185. $cfg['BZipDump']              = TRUE;   // dump files
  186. $cfg['CompressOnFly']         = TRUE;   // Will compress gzip/bzip2 exports on
  187.                                         // fly without need for much memory.
  188.                                         // If you encounter problems with
  189.                                         // created gzip/bzip2 files disable
  190.                                         // this feature.

  191. // Tabs display settings
  192. $cfg['LightTabs']             = FALSE;  // use graphically less intense menu tabs
  193. $cfg['PropertiesIconic']      = TRUE;   // Use icons instead of text for the table display of a database (TRUE|FALSE|'both')
  194. $cfg['PropertiesNumColumns']  = 1;      // How many columns should be used for table display of a database?
  195.                                         // (a value larger than 1 results in some information being hidden)

  196. $cfg['DefaultTabServer']      = 'main.php';
  197.                                    // Possible values:
  198.                                    // 'main.php' = the welcome page
  199.                                    // (recommended for multiuser setups)
  200.                                    // 'server_databases.php' = list of databases
  201.                                    // 'server_status.php' = runtime information
  202.                                    // 'server_variables.php' = MySQL server variables
  203.                                    // 'server_privileges.php' = user management
  204.                                    // 'server_processlist.php' = process list
  205. $cfg['DefaultTabDatabase']    = 'db_details_structure.php';
  206.                                    // Possible values:
  207.                                    // 'db_details_structure.php' = tables list
  208.                                    // 'db_details.php' = sql form
  209.                                    // 'db_search.php' = search query
  210.                                    // 'db_operations.php' = operations on database
  211. $cfg['DefaultTabTable']       = 'tbl_properties_structure.php';
  212.                                    // Possible values:
  213.                                    // 'tbl_properties_structure.php' = fields list
  214.                                    // 'tbl_properties.php' = sql form
  215.                                    // 'tbl_select.php = select page
  216.                                    // 'tbl_change.php = insert row page

  217. /**
  218. * Export defaults
  219. */

  220. $cfg['Export']['format']                    = 'sql';  // sql/latex/excel/csv/xml/xls/htmlexcel/htmlword
  221. $cfg['Export']['compression']               = 'none'; // none/zip/gzip/bzip2

  222. $cfg['Export']['asfile']                    = FALSE;
  223. $cfg['Export']['charset']                   = '';
  224. $cfg['Export']['onserver']                  = FALSE;
  225. $cfg['Export']['onserver_overwrite']        = FALSE;
  226. $cfg['Export']['remember_file_template']    = TRUE;
  227. $cfg['Export']['file_template_table']       = '__TABLE__';
  228. $cfg['Export']['file_template_database']    = '__DB__';
  229. $cfg['Export']['file_template_server']      = '__SERVER__';

  230. $cfg['Export']['htmlexcel_columns']         = FALSE;
  231. $cfg['Export']['htmlexcel_null']            = 'NULL';

  232. $cfg['Export']['htmlword_structure']        = TRUE;
  233. $cfg['Export']['htmlword_data']             = TRUE;
  234. $cfg['Export']['htmlword_columns']          = FALSE;
  235. $cfg['Export']['htmlword_null']             = 'NULL';

  236. $cfg['Export']['xls_columns']               = FALSE;
  237. $cfg['Export']['xls_null']                  = 'NULL';

  238. $cfg['Export']['csv_columns']               = FALSE;
  239. $cfg['Export']['csv_null']                  = 'NULL';
  240. $cfg['Export']['csv_separator']             = ';';
  241. $cfg['Export']['csv_enclosed']              = '&quot;';
  242. $cfg['Export']['csv_escaped']               = '\\';
  243. $cfg['Export']['csv_terminated']            = 'AUTO';
  244. $cfg['Export']['excel_columns']             = FALSE;
  245. $cfg['Export']['excel_null']                = 'NULL';
  246. $cfg['Export']['excel_edition']             = 'win'; // win/mac

  247. $cfg['Export']['latex_structure']           = TRUE;
  248. $cfg['Export']['latex_data']                = TRUE;
  249. $cfg['Export']['latex_columns']             = TRUE;
  250. $cfg['Export']['latex_relation']            = TRUE;
  251. $cfg['Export']['latex_comments']            = TRUE;
  252. $cfg['Export']['latex_mime']                = TRUE;
  253. $cfg['Export']['latex_null']                = '\textit{NULL}';
  254. $cfg['Export']['latex_caption']             = TRUE;
  255. $cfg['Export']['latex_data_label']          = 'tab:__TABLE__-data';
  256. $cfg['Export']['latex_structure_label']     = 'tab:__TABLE__-structure';

  257. $cfg['Export']['sql_structure']             = TRUE;
  258. $cfg['Export']['sql_data']                  = TRUE;
  259. $cfg['Export']['sql_compat']                = 'NONE';
  260. $cfg['Export']['sql_disable_fk']            = FALSE;
  261. $cfg['Export']['sql_use_transaction']       = FALSE;
  262. $cfg['Export']['sql_drop_database']         = FALSE;
  263. $cfg['Export']['sql_drop_table']            = FALSE;
  264. $cfg['Export']['sql_if_not_exists']         = FALSE;
  265. $cfg['Export']['sql_auto_increment']        = TRUE;
  266. $cfg['Export']['sql_backquotes']            = TRUE;
  267. $cfg['Export']['sql_dates']                 = FALSE;
  268. $cfg['Export']['sql_relation']              = FALSE;
  269. $cfg['Export']['sql_columns']               = FALSE;
  270. $cfg['Export']['sql_delayed']               = FALSE;
  271. $cfg['Export']['sql_ignore']                = FALSE;
  272. $cfg['Export']['sql_hex_for_binary']        = TRUE;
  273. $cfg['Export']['sql_type']                  = 'insert'; // insert/update/replace
  274. $cfg['Export']['sql_extended']              = FALSE;
  275. $cfg['Export']['sql_max_query_size']        = 50000;
  276. $cfg['Export']['sql_comments']              = FALSE;
  277. $cfg['Export']['sql_mime']                  = FALSE;
  278. $cfg['Export']['sql_header_comment']        = ''; // \n is replaced by new line

  279. /**
  280. * Import defaults
  281. */
  282. $cfg['Import']['format'] = 'sql';
  283. $cfg['Import']['allow_interrupt'] = TRUE;
  284. $cfg['Import']['skip_queries'] = '0';
  285. $cfg['Import']['csv_replace'] = FALSE;
  286. $cfg['Import']['csv_terminated'] = ';';
  287. $cfg['Import']['csv_enclosed'] = '"';
  288. $cfg['Import']['csv_escaped'] = '\\';
  289. $cfg['Import']['csv_new_line'] = 'auto';
  290. $cfg['Import']['csv_columns'] = '';
  291. $cfg['Import']['ldi_replace'] = FALSE;
  292. $cfg['Import']['ldi_terminated'] = ';';
  293. $cfg['Import']['ldi_enclosed'] = '"';
  294. $cfg['Import']['ldi_escaped'] = '\\';
  295. $cfg['Import']['ldi_new_line'] = 'auto';
  296. $cfg['Import']['ldi_columns'] = '';
  297. $cfg['Import']['ldi_local_option'] = 'auto'; // 'auto' for autodetection, TRUE or FALSE for forcing


  298. /**
  299. * Link to the official MySQL documentation.
  300. * Be sure to include no trailing slash on the path.
  301. * See http://dev.mysql.com/doc/ for more information
  302. * about MySQL manuals and their types.
  303. */
  304. $cfg['MySQLManualBase'] = 'http://dev.mysql.com/doc/refman';

  305. /**
  306. * Type of MySQL documentation:
  307. *   viewable   - "viewable online", current one used on MySQL website
  308. *   searchable - "Searchable, with user comments"
  309. *   chapters   - "HTML, one page per chapter"
  310. *   chapters_old - "HTML, one page per chapter", format used prior to MySQL 5.0 release
  311. *   big        - "HTML, all on one page"
  312. *   old        - old style used in phpMyAdmin 2.3.0 and sooner
  313. *   none       - do not show documentation links
  314. */
  315. $cfg['MySQLManualType'] = 'viewable';


  316. /**
  317. * PDF options
  318. */
  319. $cfg['PDFPageSizes']        = array('A3', 'A4', 'A5', 'letter', 'legal');
  320. $cfg['PDFDefaultPageSize']  = 'A4';


  321. /**
  322. * Language and charset conversion settings
  323. */
  324. // Default language to use, if not browser-defined or user-defined
  325. $cfg['DefaultLang'] = 'en-iso-8859-1';

  326. // Force: always use this language - must be defined in
  327. //        libraries/select_lang.lib.php
  328. // $cfg['Lang']     = 'en-iso-8859-1';

  329. // Regullar expression to limit listed languages, eg. '^(cs|en)' for Czech and
  330. // English only
  331. $cfg['FilterLanguages'] = '';

  332. // Default charset to use for recoding of MySQL queries, does not take
  333. // any effect when charsets recoding is switched off by
  334. // $cfg['AllowAnywhereRecoding'] or in language file
  335. // (see $cfg['AvailableCharsets'] to possible choices, you can add your own)
  336. $cfg['DefaultCharset'] = 'iso-8859-1';

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

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

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

  353. // Available charsets for MySQL conversion. currently contains all which could
  354. // be found in lang/* files and few more.
  355. // Charsets will be shown in same order as here listed, so if you frequently
  356. // use some of these move them to the top.
  357. $cfg['AvailableCharsets'] = array(
  358.     'iso-8859-1',
  359.     'iso-8859-2',
  360.     'iso-8859-3',
  361.     'iso-8859-4',
  362.     'iso-8859-5',
  363.     'iso-8859-6',
  364.     'iso-8859-7',
  365.     'iso-8859-8',
  366.     'iso-8859-9',
  367.     'iso-8859-10',
  368.     'iso-8859-11',
  369.     'iso-8859-12',
  370.     'iso-8859-13',
  371.     'iso-8859-14',
  372.     'iso-8859-15',
  373.     'windows-1250',
  374.     'windows-1251',
  375.     'windows-1252',
  376.     'windows-1256',
  377.     'windows-1257',
  378.     'koi8-r',
  379.     'big5',
  380.     'gb2312',
  381.     'utf-16',
  382.     'utf-8',
  383.     'utf-7',
  384.     'x-user-defined',
  385.     'euc-jp',
  386.     'ks_c_5601-1987',
  387.     'tis-620',
  388.     'SHIFT_JIS'
  389. );

  390. /**
  391. * Customization & design
  392. *
  393. * The graphical settings are now located in themes/themename/layout.inc.php
  394. */

  395. $cfg['LeftPointerEnable']   = TRUE;         // enable the left panel pointer
  396.                                             // (used when LeftFrameLight is FALSE)
  397.                                             // see also LeftPointerColor
  398.                                             // in layout.inc.php

  399. $cfg['BrowsePointerEnable'] = TRUE;        // enable the browse pointer
  400.                                             // see also BrowsePointerColor
  401.                                             // in layout.inc.php

  402. $cfg['BrowseMarkerEnable'] = TRUE;         // enable the browse marker
  403.                                             // see also BrowseMarkerColor
  404.                                             // in layout.inc.php

  405. $cfg['TextareaCols']        = 40;           // textarea size (columns) in edit mode
  406.                                             // (this value will be emphasized (*2) for sql
  407.                                             // query textareas and (*1.25) for query window)
  408. $cfg['TextareaRows']        = 7;            // textarea size (rows) in edit mode
  409. $cfg['LongtextDoubleTextarea'] = TRUE;      // double size of textarea size for longtext fields
  410. $cfg['TextareaAutoSelect']  = TRUE;         // autoselect when clicking in the textarea of the querybox
  411. $cfg['CharTextareaCols']    = 40;           // textarea size (columns) for CHAR/VARCHAR
  412. $cfg['CharTextareaRows']    = 2;            // textarea size (rows) for CHAR/VARCHAR
  413. $cfg['CtrlArrowsMoving']    = TRUE;         // Enable Ctrl+Arrows moving between fields when editing?
  414. $cfg['LimitChars']          = 50;           // Max field data length in browse mode for all non-numeric fields
  415. $cfg['ModifyDeleteAtLeft']  = TRUE;         // show edit/delete links on left side of browse
  416.                                             // (or at the top with vertical browse)
  417. $cfg['ModifyDeleteAtRight'] = FALSE;        // show edit/delete links on right side of browse
  418.                                             // (or at the bottom with vertical browse)
  419. $cfg['DefaultDisplay']      = 'horizontal'; // default display direction
  420.                                             // (horizontal|vertical|horizontalflipped)
  421. $cfg['DefaultPropDisplay']  = 'horizontal'; // default display direction for altering/
  422.                                             // creating columns (tbl_properties)
  423.                                             // (horizontal|vertical)

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

  429. $cfg['EditInWindow']        = TRUE;         // Set to TRUE if Edit link should open the query to edit in the query window (assuming Javascript is enabled), and to FALSE if we should edit in the right panel
  430. $cfg['QueryWindowWidth']    = 550;          // Width of Query window
  431. $cfg['QueryWindowHeight']   = 310;          // Height of Query window
  432. $cfg['QueryHistoryDB']      = FALSE;         // Set to TRUE if you want DB-based query history.
  433.                                             // If FALSE, this utilizes JS-routines to display
  434.                                             // query history (lost by window close)
  435. $cfg['QueryWindowDefTab']   = 'sql';        // which tab to display in the querywindow on startup
  436.                                             // (sql|files|history|full)
  437. $cfg['QueryHistoryMax']     = 25;           // When using DB-based query history, how many entries
  438.                                             // should be kept?
  439. $cfg['BrowseMIME']          = TRUE;         // Use MIME-Types (stored in column comments table) for
  440. $cfg['MaxExactCount']       = 20000;        // When approximate count < this, PMA will get exact count for
  441.                                             // table rows.
  442. $cfg['WYSIWYG-PDF']         = TRUE;         // Utilize DHTML/JS capabilities to allow WYSIWYG editing of
  443.                                             // the PDF page editor. Requires an IE6/Mozilla based browser.

  444. $cfg['NaturalOrder']        = TRUE;         // Sort table and database in natural order


  445. //-----------------------------------------------------------------------------
  446. // custom-setup by mkkeck: 2004-05-04
  447. //    some specials for new icons and scrollings
  448. // FIXME:
  449. // 2004-05-08 rabus: We need to rearrange these variables.

  450. $cfg['ShowHttpHostTitle']   = TRUE;            // show HttpHost in browsers window title (true|false)?
  451. $cfg['SetHttpHostTitle']    = '';              // if ShowHttpHostTitle=true, please set your host (server)
  452.                                              // or an other string, wich should be shown in browsers window title.
  453.                                              // If not set (or empty), the PMA will get your real Host-Adress.

  454. $cfg['ErrorIconic']          = TRUE;    // show some icons for warning, error and information messages (true|false)?
  455. $cfg['MainPageIconic']       = TRUE;    // show icons in list on main page and on menu tabs (true|false)?
  456. $cfg['ReplaceHelpImg']       = TRUE;    // show help button instead of strDocu (true|false)?

  457. // theme manager
  458. $cfg['ThemePath']           = './themes';    // using themes manager please set up here the path to 'themes'
  459.                                              // else leave empty
  460. $cfg['ThemeManager']        = TRUE;          // if you want to use selectable themes and if ThemesPath not empty
  461.                                              // set it to true, else set it to false (default is false);
  462. $cfg['ThemeDefault']        = 'original';         // set up default theme, if ThemePath not empty
  463.                                              // you can set up here an valid path to themes or 'original' for
  464.                                              // the original pma-theme
  465. $cfg['ThemePerServer']      = FALSE;         // allow diferent theme for each configured server

  466. //-----------------------------------------------------------------------------


  467. /**
  468. * Default queries
  469. * %d will be replaced by the database name.
  470. * %t will be replaced by the table name.
  471. * %f will be replaced by a list of field names.
  472. * (%t and %f only applies to DefaultQueryTable)
  473. */
  474. $cfg['DefaultQueryTable']    = 'SELECT * FROM %t WHERE 1';
  475. $cfg['DefaultQueryDatabase'] = '';

  476. /**
  477. * SQL Query box settings
  478. * These are the links display in all of the SQL Query boxes
  479. */
  480. $cfg['SQLQuery']['Edit']      = TRUE;       // Edit link to change a query
  481. $cfg['SQLQuery']['Explain']   = TRUE;       // EXPLAIN on SELECT queries
  482. $cfg['SQLQuery']['ShowAsPHP'] = TRUE;       // Wrap a query in PHP
  483. $cfg['SQLQuery']['Validate']  = FALSE;      // Validate a query (see $cfg['SQLValidator'] as well)
  484. $cfg['SQLQuery']['Refresh']   = TRUE;       // Refresh the results page


  485. /**
  486. * Webserver upload/save/import directories
  487. */
  488. $cfg['UploadDir']             = '';         // Directory for uploaded files that can be executed by
  489.                                             // phpMyAdmin. For example './upload'. Leave empty for
  490.                                             // no upload directory support. Use %u for username
  491.                                             // inclusion.
  492. $cfg['SaveDir']               = '';         // Directory where phpMyAdmin can save exported data on
  493.                                             // server. For example './save'. Leave empty for no save
  494.                                             // directory support. Use %u for username inclusion.
  495. $cfg['docSQLDir']             = '';         // Directory for docSQL imports, phpMyAdmin can import
  496.                                             // docSQL files from that directory. For example
  497.                                             // './docSQL'. Leave empty for no docSQL import support.
  498. $cfg['TempDir']               = '';         // Directory where phpMyAdmin can save temporary files.
  499.                                             // This is needed for MS Excel export, see documentation
  500.                                             // how to enable that.


  501. /**
  502. * Misc. settings
  503. */
  504. $cfg['GD2Available']          = 'auto';     // Is GD >= 2 available? Set to yes/no/auto. 'auto'
  505.                                             // does autodetection, which is a bit expensive for
  506.                                             // php < 4.3.0, but it is the only safe vay how to
  507.                                             // determine GD version.
  508. /**
  509. * SQL Parser Settings
  510. */
  511. $cfg['SQP']['fmtType']      = 'html';       // Pretty-printing style to use on queries (html, text, none)
  512. $cfg['SQP']['fmtInd']       = '1';          // Amount to indent each level (floats ok)
  513. $cfg['SQP']['fmtIndUnit']   = 'em';         // Units for indenting each level (CSS Types - {em,px,pt})
  514. // The graphical settings are now located in themes/themename/layout.inc.php

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

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


  533. /**
  534. * MySQL settings
  535. */
  536. // Column types;
  537. // varchar, tinyint, text and date are listed first, based on estimated popularity
  538. $cfg['ColumnTypes'] = array(
  539.    'VARCHAR',
  540.    'TINYINT',
  541.    'TEXT',
  542.    'DATE',
  543.    'SMALLINT',
  544.    'MEDIUMINT',
  545.    'INT',
  546.    'BIGINT',
  547.    'FLOAT',
  548.    'DOUBLE',
  549.    'DECIMAL',
  550.    'DATETIME',
  551.    'TIMESTAMP',
  552.    'TIME',
  553.    'YEAR',
  554.    'CHAR',
  555.    'TINYBLOB',
  556.    'TINYTEXT',
  557.    'BLOB',
  558.    'MEDIUMBLOB',
  559.    'MEDIUMTEXT',
  560.    'LONGBLOB',
  561.    'LONGTEXT',
  562.    'ENUM',
  563.    'SET',
  564.    'BOOL'
  565. );

  566. // Attributes
  567. // Note: the "ON UPDATE CURRENT_TIMESTAMP" attribute is added dynamically
  568. // for MySQL >= 4.1.2, in tbl_properties.inc.php

  569. $cfg['AttributeTypes'] = array(
  570.    '',
  571.    'BINARY',
  572.    'UNSIGNED',
  573.    'UNSIGNED ZEROFILL'
  574. );

  575. // Available functions
  576. if ($cfg['ShowFunctionFields']) {
  577.     $cfg['Functions'] = array(
  578.        'ASCII',
  579.        'CHAR',
  580.        'SOUNDEX',
  581.        'LCASE',
  582.        'UCASE',
  583.        'NOW',
  584.        'PASSWORD',
  585.        'OLD_PASSWORD',
  586.        'MD5',
  587.        'SHA1',
  588.        'ENCRYPT',
  589.        'COMPRESS',
  590.        'UNCOMPRESS',
  591.        'RAND',
  592.        'LAST_INSERT_ID',
  593.        'COUNT',
  594.        'AVG',
  595.        'SUM',
  596.        'CURDATE',
  597.        'CURTIME',
  598.        'FROM_DAYS',
  599.        'FROM_UNIXTIME',
  600.        'PERIOD_ADD',
  601.        'PERIOD_DIFF',
  602.        'TO_DAYS',
  603.        'UNIX_TIMESTAMP',
  604.        'USER',
  605.        'WEEKDAY',
  606.        'CONCAT'
  607.     );

  608.     // Which column types will be mapped to which Group?
  609.     $cfg['RestrictColumnTypes'] = array(
  610.        'VARCHAR'      => 'FUNC_CHAR',
  611.        'TINYINT'      => 'FUNC_NUMBER',
  612.        'TEXT'         => 'FUNC_CHAR',
  613.        'DATE'         => 'FUNC_DATE',
  614.        'SMALLINT'     => 'FUNC_NUMBER',
  615.        'MEDIUMINT'    => 'FUNC_NUMBER',
  616.        'INT'          => 'FUNC_NUMBER',
  617.        'BIGINT'       => 'FUNC_NUMBER',
  618.        'FLOAT'        => 'FUNC_NUMBER',
  619.        'DOUBLE'       => 'FUNC_NUMBER',
  620.        'DECIMAL'      => 'FUNC_NUMBER',
  621.        'DATETIME'     => 'FUNC_DATE',
  622.        'TIMESTAMP'    => 'FUNC_DATE',
  623.        'TIME'         => 'FUNC_DATE',
  624.        'YEAR'         => 'FUNC_DATE',
  625.        'CHAR'         => 'FUNC_CHAR',
  626.        'TINYBLOB'     => 'FUNC_CHAR',
  627.        'TINYTEXT'     => 'FUNC_CHAR',
  628.        'BLOB'         => 'FUNC_CHAR',
  629.        'MEDIUMBLOB'   => 'FUNC_CHAR',
  630.        'MEDIUMTEXT'   => 'FUNC_CHAR',
  631.        'LONGBLOB'     => 'FUNC_CHAR',
  632.        'LONGTEXT'     => 'FUNC_CHAR',
  633.        'ENUM'         => '',
  634.        'SET'          => ''
  635.     );

  636.     // Map above defined groups to any function
  637.     $cfg['RestrictFunctions'] = array(
  638.         'FUNC_CHAR'   => array(
  639.             'ASCII',
  640.             'CHAR',
  641.             'SOUNDEX',
  642.             'LCASE',
  643.             'UCASE',
  644.             'PASSWORD',
  645.             'OLD_PASSWORD',
  646.             'MD5',
  647.             'SHA1',
  648.             'ENCRYPT',
  649.             'COMPRESS',
  650.             'UNCOMPRESS',
  651.             'LAST_INSERT_ID',
  652.             'USER',
  653.             'CONCAT'
  654.         ),

  655.         'FUNC_DATE'   => array(
  656.             'NOW',
  657.             'CURDATE',
  658.             'CURTIME',
  659.             'FROM_DAYS',
  660.             'FROM_UNIXTIME',
  661.             'PERIOD_ADD',
  662.             'PERIOD_DIFF',
  663.             'TO_DAYS',
  664.             'UNIX_TIMESTAMP',
  665.             'WEEKDAY'
  666.         ),

  667.         'FUNC_NUMBER' => array(
  668.             'ASCII',
  669.             'CHAR',
  670.             'MD5',
  671.             'SHA1',
  672.             'ENCRYPT',
  673.             'RAND',
  674.             'LAST_INSERT_ID',
  675.             'UNIX_TIMESTAMP',
  676.             'COUNT',
  677.             'AVG',
  678.             'SUM'
  679.         )
  680.     );

  681.     // Default functions for above defined groups
  682.     $cfg['DefaultFunctions'] = array(
  683.         'FUNC_CHAR'         => '',
  684.         'FUNC_DATE'         => '',
  685.         'FUNC_NUMBER'       => '',
  686.         'first_timestamp'   => 'NOW'
  687.     );


  688. } // end if

  689. // Search operators
  690. $cfg['NumOperators'] = array(
  691.    '=',
  692.    '>',
  693.    '>=',
  694.    '<',
  695.    '<=',
  696.    '!=',
  697.    'LIKE',
  698.    'NOT LIKE'
  699. );

  700. $cfg['TextOperators'] = array(
  701.    'LIKE',
  702.    'LIKE %...%',
  703.    'NOT LIKE',
  704.    '=',
  705.    '!=',
  706.    'REGEXP',
  707.    'NOT REGEXP'
  708. );

  709. $cfg['EnumOperators'] = array(
  710.    '=',
  711.    '!='
  712. );

  713. $cfg['SetOperators'] = array(
  714.    'IN',
  715.    'NOT IN'
  716. );

  717. $cfg['NullOperators'] = array(
  718.    'IS NULL',
  719.    'IS NOT NULL'
  720. );

  721. $cfg['UnaryOperators'] = array(
  722.    'IS NULL'     => 1,
  723.    'IS NOT NULL' => 1
  724. );

  725. ?>
复制代码
回复

使用道具 举报

 楼主| 3x100 发表于 2007-1-29 16:15:02 | 显示全部楼层
虽然早已解决,但是还是要感谢各位的热心回答!
回复

使用道具 举报

pc77maikongjian 发表于 2007-1-29 20:59:01 | 显示全部楼层
部分数据表的字符与论坛不符造成的,到PMA查看并修正即可
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

手机版|小黑屋|Discuz! 官方站 ( 皖ICP备16010102号 )star

GMT+8, 2025-1-11 18:35 , Processed in 0.029381 second(s), 5 queries , Gzip On, Redis On.

Powered by Discuz! X3.4

Copyright © 2001-2023, Tencent Cloud.

快速回复 返回顶部 返回列表