config.inc.php 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <?php
  2. /* Servers configuration */
  3. $i = 0;
  4. /* Local server */
  5. $i++;
  6. $cfg['Servers'][$i]['auth_type'] = 'cookie';
  7. $cfg['Servers'][$i]['host'] = 'localhost';
  8. $cfg['Servers'][$i]['connect_type'] = 'tcp';
  9. $cfg['Servers'][$i]['compress'] = true;
  10. $cfg['Servers'][$i]['verbose'] = gethostname();
  11. $cfg['Servers'][$i]['port'] = '';
  12. $cfg['Servers'][$i]['socket'] = '';
  13. $cfg['Servers'][$i]['ssl'] = true;
  14. $cfg['Servers'][$i]['user'] = 'root';
  15. $cfg['Servers'][$i]['password'] = '';
  16. $cfg['Servers'][$i]['pmadb'] = 'phpmyadmin';
  17. $cfg['Servers'][$i]['relation'] = 'pma__relation';
  18. $cfg['Servers'][$i]['table_info'] = 'pma__table_info';
  19. $cfg['Servers'][$i]['table_coords'] = 'pma__table_coords';
  20. $cfg['Servers'][$i]['pdf_pages'] = 'pma__pdf_pages';
  21. $cfg['Servers'][$i]['column_info'] = 'pma__column_info';
  22. $cfg['Servers'][$i]['bookmarktable'] = 'pma__bookmark';
  23. $cfg['Servers'][$i]['history'] = 'pma__history';
  24. $cfg['Servers'][$i]['designer_coords'] = 'pma__designer_coords';
  25. $cfg['Servers'][$i]['recent'] = 'pma__recent';
  26. $cfg['Servers'][$i]['table_uiprefs'] = 'pma__table_uiprefs';
  27. $cfg['Servers'][$i]['tracking'] = 'pma__tracking';
  28. $cfg['Servers'][$i]['userconfig'] = 'pma__userconfig';
  29. $cfg['Servers'][$i]['navigationhiding'] = 'pma__navigationhiding';
  30. $cfg['Servers'][$i]['savedsearches'] = 'pma__savedsearches';
  31. $cfg['Servers'][$i]['users'] = 'pma__users';
  32. $cfg['Servers'][$i]['usergroups'] = 'pma__usergroups';
  33. $cfg['Servers'][$i]['controluser'] = 'pma';
  34. $cfg['Servers'][$i]['controlpass'] = 'pmapass';
  35. /* End of servers configuration */
  36. $cfg['blowfish_secret'] = 'sEF45WT2LQEcxzUj$'; // Changeme
  37. $cfg['UploadDir'] = '';
  38. $cfg['SaveDir'] = '';
  39. $cfg['ShowDbStructureCreation'] = true;
  40. $cfg['ShowDbStructureLastUpdate'] = true;
  41. $cfg['ShowDbStructureLastCheck'] = true;
  42. $cfg['DefaultLang'] = 'en';
  43. $cfg['ServerDefault'] = 1;
  44. ?>