home *** CD-ROM | disk | FTP | other *** search
/ PC World 2001 August / PCWorld_2001-08_cd.bin / Komunikace / phptriad / phptriadsetup2-11.exe / htdocs / phpMyAdmin / config.inc.php < prev    next >
PHP Script  |  2000-08-20  |  3KB  |  119 lines

  1. <?php
  2. /* $Id: config.inc.php,v 1.28 2000/07/13 13:52:48 tobias Exp $ */
  3.  
  4. /*
  5.  *  phpMyAdmin Configuration File
  6.  *  All directives are explained in Documentation.html
  7.  */
  8.  
  9. // The $cfgServers array starts with $cfgServers[1].  Do not use $cfgServers[0].
  10. // You can disable a server config entry by setting host to ''.
  11. $cfgServers[1]['host'] = 'localhost';           // MySQL hostname
  12. $cfgServers[1]['port'] = '';                    // MySQL port - leave blank for default port
  13. $cfgServers[1]['adv_auth'] = false;             // Use advanced authentication?
  14. $cfgServers[1]['stduser'] = 'root';             // MySQL standard user (only needed with advanced auth)
  15. $cfgServers[1]['stdpass'] = '';                 // MySQL standard password (only needed with advanced auth)
  16. $cfgServers[1]['user'] = 'root';                // MySQL user (only needed with basic auth)
  17. $cfgServers[1]['password'] = '';                // MySQL password (only needed with basic auth)
  18. $cfgServers[1]['only_db'] = '';                 // If set to a db-name, only this db is accessible
  19. $cfgServers[1]['verbose'] = '';                 // Verbose name for this host - leave blank to show the hostname
  20.  
  21. $cfgServers[2]['host'] = '';
  22. $cfgServers[2]['port'] = '';
  23. $cfgServers[2]['adv_auth'] = false;
  24. $cfgServers[2]['stduser'] = '';
  25. $cfgServers[2]['stdpass'] = '';
  26. $cfgServers[2]['user'] = '';
  27. $cfgServers[2]['password'] = '';
  28. $cfgServers[2]['only_db'] = '';
  29. $cfgServers[2]['verbose'] = '';
  30.  
  31. $cfgServers[3]['host'] = '';
  32. $cfgServers[3]['port'] = '';
  33. $cfgServers[3]['adv_auth'] = false;
  34. $cfgServers[3]['stduser'] = '';
  35. $cfgServers[3]['stdpass'] = '';
  36. $cfgServers[3]['user'] = 'root';
  37. $cfgServers[3]['password'] = '';
  38. $cfgServers[3]['only_db'] = '';
  39. $cfgServers[3]['verbose'] = '';
  40.  
  41. // If you have more than one server configured, you can set $cfgServerDefault
  42. // to any one of them to autoconnect to that server when phpMyAdmin is started,
  43. // or set it to 0 to be given a list of servers without logging in
  44. // If you have only one server configured, $cfgServerDefault *MUST* be
  45. // set to that server.
  46. $cfgServerDefault = 1;                            // Default server  (0 = no default server)
  47. $cfgServer = '';
  48. unset($cfgServers[0]);
  49.  
  50. $cfgManualBase = "http://www.mysql.com/documentation/mysql/bychapter/";
  51.  
  52. $cfgConfirm = true;
  53. $cfgPersistentConnections = false;
  54.  
  55. $cfgBorder      = "0";
  56. $cfgThBgcolor  = "#D3DCE3";
  57. $cfgBgcolorOne = "#CCCCCC";
  58. $cfgBgcolorTwo = "#DDDDDD";
  59. $cfgMaxRows = 30;
  60. $cfgMaxInputsize = "300px";
  61. $cfgOrder = "ASC";
  62. $cfgShowBlob = true;
  63. $cfgShowSQL = true;
  64.  
  65. require("english.inc.php");
  66.  
  67. $cfgColumnTypes = array(
  68.    "TINYINT",
  69.    "SMALLINT",
  70.    "MEDIUMINT",
  71.    "INT",
  72.    "BIGINT",
  73.    "FLOAT",
  74.    "DOUBLE",
  75.    "DECIMAL",
  76.    "DATE",
  77.    "DATETIME",
  78.    "TIMESTAMP",
  79.    "TIME",
  80.    "YEAR",
  81.    "CHAR",
  82.    "VARCHAR",
  83.    "TINYBLOB",
  84.    "TINYTEXT",
  85.    "TEXT",
  86.    "BLOB",
  87.    "MEDIUMBLOB",
  88.    "MEDIUMTEXT",
  89.    "LONGBLOB",
  90.    "LONGTEXT",
  91.    "ENUM",
  92.    "SET");
  93.  
  94. $cfgFunctions = array(
  95.    "ASCII",
  96.    "CHAR",
  97.    "SOUNDEX",
  98.    "CURDATE",
  99.    "CURTIME",
  100.    "FROM_DAYS",
  101.    "FROM_UNIXTIME",
  102.    "NOW",
  103.    "PASSWORD",
  104.    "PERIOD_ADD",
  105.    "PERIOD_DIFF",
  106.    "TO_DAYS",
  107.    "USER",
  108.    "WEEKDAY",
  109.    "RAND");
  110.  
  111. $cfgAttributeTypes = array(
  112.    "",
  113.    "BINARY",
  114.    "UNSIGNED",
  115.    "UNSIGNED ZEROFILL");
  116.  
  117. // Setting magic_quotes_runtime - do not change!
  118. set_magic_quotes_runtime(0);
  119. ?>