Guest User

Untitled

a guest
Mar 14th, 2018
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.78 KB | None | 0 0
  1.  
  2. [MySQL]
  3. ; Allow or prevent persistent links.
  4. mysql.allow_persistent = On
  5.  
  6. ; Maximum number of persistent links. -1 means no limit.
  7. mysql.max_persistent = -1
  8.  
  9. ; Maximum number of links (persistent + non-persistent). -1 means no limit.
  10. mysql.max_links = -1
  11.  
  12. ; Default port number for mysql_connect(). If unset, mysql_connect() will use
  13. ; the $MYSQL_TCP_PORT or the mysql-tcp entry in /etc/services or the
  14. ; compile-time value defined MYSQL_PORT (in that order). Win32 will only look
  15. ; at MYSQL_PORT.
  16. mysql.default_port =
  17.  
  18. ; Default socket name for local MySQL connects. If empty, uses the built-in
  19. ; MySQL defaults.
  20. mysql.default_socket =
  21.  
  22. ; Default host for mysql_connect() (doesn't apply in safe mode).
  23. mysql.default_host =
  24.  
  25. ; Default user for mysql_connect() (doesn't apply in safe mode).
  26. mysql.default_user =
  27.  
  28. ; Default password for mysql_connect() (doesn't apply in safe mode).
  29. ; Note that this is generally a *bad* idea to store passwords in this file.
  30. ; *Any* user with PHP access can run 'echo get_cfg_var("mysql.default_password")
  31. ; and reveal this password! And of course, any users with read access to this
  32. ; file will be able to reveal the password as well.
  33. mysql.default_password =
  34.  
  35. ; Maximum time (in seconds) for connect timeout. -1 means no limit
  36. mysql.connect_timeout = 60
  37.  
  38. ; Trace mode. When trace_mode is active (=On), warnings for table/index scans and
  39. ; SQL-Errors will be displayed.
  40. mysql.trace_mode = Off
  41.  
  42. [MySQLi]
  43.  
  44. ; Maximum number of links. -1 means no limit.
  45. mysqli.max_links = -1
  46.  
  47. ; Default port number for mysqli_connect(). If unset, mysqli_connect() will use
  48. ; the $MYSQL_TCP_PORT or the mysql-tcp entry in /etc/services or the
  49. ; compile-time value defined MYSQL_PORT (in that order). Win32 will only look
  50. ; at MYSQL_PORT.
  51. mysqli.default_port = 3306
  52.  
  53. ; Default socket name for local MySQL connects. If empty, uses the built-in
  54. ; MySQL defaults.
  55. mysqli.default_socket =
  56.  
  57. ; Default host for mysql_connect() (doesn't apply in safe mode).
  58. mysqli.default_host =
  59.  
  60. ; Default user for mysql_connect() (doesn't apply in safe mode).
  61. mysqli.default_user =
  62.  
  63. ; Default password for mysqli_connect() (doesn't apply in safe mode).
  64. ; Note that this is generally a *bad* idea to store passwords in this file.
  65. ; *Any* user with PHP access can run 'echo get_cfg_var("mysqli.default_pw")
  66. ; and reveal this password! And of course, any users with read access to this
  67. ; file will be able to reveal the password as well.
  68. mysqli.default_pw =
  69.  
  70. ; Allow or prevent reconnect
  71. mysqli.reconnect = Off
  72.  
  73. [mSQL]
  74. ; Allow or prevent persistent links.
  75. msql.allow_persistent = On
  76.  
  77. ; Maximum number of persistent links. -1 means no limit.
  78. msql.max_persistent = -1
  79.  
  80. ; Maximum number of links (persistent+non persistent). -1 means no limit.
  81. msql.max_links = -1
Add Comment
Please, Sign In to add comment