Advertisement
anticims19

config.inc

Mar 16th, 2014
149
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.18 KB | None | 0 0
  1. <?php
  2. /*
  3.  * This is needed for cookie based authentication to encrypt password in
  4.  * cookie
  5.  */
  6. $cfg['blowfish_secret'] = 'xampp'; /* YOU SHOULD CHANGE THIS FOR A MORE SECURE COOKIE AUTH! */
  7.  
  8. /*
  9.  * Servers configuration
  10.  */
  11. $i = 0;
  12.  
  13. /*
  14.  * First server
  15.  */
  16. $i++;
  17.  
  18. /* Authentication type and info */
  19. $cfg['Servers'][$i]['auth_type'] = 'config';
  20. $cfg['Servers'][$i]['user'] = 'localhost';
  21. $cfg['Servers'][$i]['password'] = 'admin12345';
  22. $cfg['Servers'][$i]['AllowNoPasswordRoot'] = true;
  23.  
  24. /* User for advanced features */
  25. $cfg['Servers'][$i]['controluser'] = 'pma';
  26. $cfg['Servers'][$i]['controlpass'] = '';
  27.  
  28. /* Advanced phpMyAdmin features */
  29. $cfg['Servers'][$i]['pmadb'] = 'phpmyadmin';
  30. $cfg['Servers'][$i]['bookmarktable'] = 'pma_bookmark';
  31. $cfg['Servers'][$i]['relation'] = 'pma_relation';
  32. $cfg['Servers'][$i]['table_info'] = 'pma_table_info';
  33. $cfg['Servers'][$i]['table_coords'] = 'pma_table_coords';
  34. $cfg['Servers'][$i]['pdf_pages'] = 'pma_pdf_pages';
  35. $cfg['Servers'][$i]['column_info'] = 'pma_column_info';
  36. $cfg['Servers'][$i]['history'] = 'pma_history';
  37. $cfg['Servers'][$i]['designer_coords'] = 'pma_designer_coords';
  38.  
  39. /*
  40.  * End of servers configuration
  41.  */
  42.  
  43. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement