Advertisement
Guest User

Untitled

a guest
Jul 24th, 2012
1,476
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.31 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'] = 'root';
  21. $cfg['Servers'][$i]['password'] = '';
  22. $cfg['Servers'][$i]['extension'] = 'mysql';
  23. $cfg['Servers'][$i]['AllowNoPassword'] = true;
  24.  
  25. /* User for advanced features */
  26. $cfg['Servers'][$i]['controluser'] = 'pma';
  27. $cfg['Servers'][$i]['controlpass'] = '';
  28.  
  29. /* Advanced phpMyAdmin features */
  30. $cfg['Servers'][$i]['pmadb'] = 'phpmyadmin';
  31. $cfg['Servers'][$i]['bookmarktable'] = 'pma_bookmark';
  32. $cfg['Servers'][$i]['relation'] = 'pma_relation';
  33. $cfg['Servers'][$i]['table_info'] = 'pma_table_info';
  34. $cfg['Servers'][$i]['table_coords'] = 'pma_table_coords';
  35. $cfg['Servers'][$i]['pdf_pages'] = 'pma_pdf_pages';
  36. $cfg['Servers'][$i]['column_info'] = 'pma_column_info';
  37. $cfg['Servers'][$i]['history'] = 'pma_history';
  38. $cfg['Servers'][$i]['designer_coords'] = 'pma_designer_coords';
  39. $cfg['Servers'][$i]['tracking'] = 'pma_tracking';
  40. $cfg['Servers'][$i]['userconfig'] = 'pma_userconfig';
  41.  
  42. /*
  43. * End of servers configuration
  44. */
  45.  
  46. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement