Guest User

Untitled

a guest
Jan 13th, 2018
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.21 KB | None | 0 0
  1. <?php
  2. /* vim: set expandtab sw=4 ts=4 sts=4: */
  3. /**
  4. * phpMyAdmin sample configuration, you can use it as base for
  5. * manual configuration. For easier setup you can use setup/
  6. *
  7. * All directives are explained in Documentation.html and on phpMyAdmin
  8. * wiki <http://wiki.phpmyadmin.net>.
  9. *
  10. * @version $Id$
  11. * @package phpMyAdmin
  12. */
  13.  
  14. /*
  15. * This is needed for cookie based authentication to encrypt password in
  16. * cookie
  17. */
  18. $cfg['blowfish_secret'] = 'fbtbbccfbbtjjybvhcrdtfbyhgujybtvhr'; /* YOU MUST FILL IN THIS FOR COOKIE AUTH! */
  19.  
  20. /*
  21. * Servers configuration
  22. */
  23. $i = 0;
  24.  
  25. /*
  26. * First server
  27. */
  28. $i++;
  29. /* Authentication type */
  30. $cfg['Servers'][$i]['auth_type'] = 'cookie';
  31. /* Server parameters */
  32. $cfg['Servers'][$i]['host'] = 'localhost';
  33. $cfg['Servers'][$i]['connect_type'] = 'tcp';
  34. $cfg['Servers'][$i]['compress'] = false;
  35. /* Select mysqli if your server has it */
  36. $cfg['Servers'][$i]['extension'] = 'mysql';
  37. $cfg['Servers'][$i]['AllowNoPassword'] = true;
  38.  
  39. /* rajk - for blobstreaming */
  40. $cfg['Servers'][$i]['bs_garbage_threshold'] = 50;
  41. $cfg['Servers'][$i]['bs_repository_threshold'] = '32M';
  42. $cfg['Servers'][$i]['bs_temp_blob_timeout'] = 600;
  43. $cfg['Servers'][$i]['bs_temp_log_threshold'] = '32M';
  44.  
  45. /* User for advanced features */
  46. $cfg['Servers'][$i]['controluser'] = 'root';
  47. $cfg['Servers'][$i]['controlpass'] = 'Daiva3791!!';
  48. /* Advanced phpMyAdmin features */
  49. // $cfg['Servers'][$i]['pmadb'] = 'phpmyadmin';
  50. // $cfg['Servers'][$i]['bookmarktable'] = 'pma_bookmark';
  51. // $cfg['Servers'][$i]['relation'] = 'pma_relation';
  52. // $cfg['Servers'][$i]['table_info'] = 'pma_table_info';
  53. // $cfg['Servers'][$i]['table_coords'] = 'pma_table_coords';
  54. // $cfg['Servers'][$i]['pdf_pages'] = 'pma_pdf_pages';
  55. // $cfg['Servers'][$i]['column_info'] = 'pma_column_info';
  56. // $cfg['Servers'][$i]['history'] = 'pma_history';
  57. // $cfg['Servers'][$i]['tracking'] = 'pma_tracking';
  58. // $cfg['Servers'][$i]['designer_coords'] = 'pma_designer_coords';
  59. /* Contrib / Swekey authentication */
  60. $cfg['Servers'][$i]['auth_swekey_config'] = '/etc/swekey-pma.conf';
  61.  
  62. /*
  63. * End of servers configuration
  64. */
  65.  
  66. /*
  67. * Directories for saving/loading files from server
  68. */
  69. $cfg['UploadDir'] = '';
  70. $cfg['SaveDir'] = '';
  71.  
  72. ?>
Advertisement
Add Comment
Please, Sign In to add comment