config.manyhosts.inc.php 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <?php
  2. /**
  3. * This example configuration shows how to configure phpMyAdmin for
  4. * many hosts that all have identical configuration otherwise. To add
  5. * a new host, just drop it into $hosts below. Contributed by
  6. * Matthew Hawkins.
  7. *
  8. * @package PhpMyAdmin
  9. * @subpackage Example
  10. */
  11. $i=0;
  12. $hosts = array (
  13. "foo.example.com",
  14. "bar.example.com",
  15. "baz.example.com",
  16. "quux.example.com",
  17. );
  18. foreach ($hosts as $host) {
  19. $i++;
  20. $cfg['Servers'][$i]['host'] = $host;
  21. $cfg['Servers'][$i]['port'] = '';
  22. $cfg['Servers'][$i]['socket'] = '';
  23. $cfg['Servers'][$i]['compress'] = false;
  24. $cfg['Servers'][$i]['controluser'] = 'pma';
  25. $cfg['Servers'][$i]['controlpass'] = 'pmapass';
  26. $cfg['Servers'][$i]['auth_type'] = 'cookie';
  27. $cfg['Servers'][$i]['user'] = '';
  28. $cfg['Servers'][$i]['password'] = '';
  29. $cfg['Servers'][$i]['only_db'] = '';
  30. $cfg['Servers'][$i]['verbose'] = '';
  31. $cfg['Servers'][$i]['pmadb'] = 'phpmyadmin';
  32. $cfg['Servers'][$i]['bookmarktable'] = 'pma__bookmark';
  33. $cfg['Servers'][$i]['relation'] = 'pma__relation';
  34. $cfg['Servers'][$i]['table_info'] = 'pma__table_info';
  35. $cfg['Servers'][$i]['table_coords'] = 'pma__table_coords';
  36. $cfg['Servers'][$i]['pdf_pages'] = 'pma__pdf_pages';
  37. $cfg['Servers'][$i]['column_info'] = 'pma__column_info';
  38. $cfg['Servers'][$i]['history'] = 'pma__history';
  39. $cfg['Servers'][$i]['table_uiprefs'] = 'pma__table_uiprefs';
  40. $cfg['Servers'][$i]['tracking'] = 'pma__tracking';
  41. $cfg['Servers'][$i]['userconfig'] = 'pma__userconfig';
  42. $cfg['Servers'][$i]['recent'] = 'pma__recent';
  43. $cfg['Servers'][$i]['users'] = 'pma__users';
  44. $cfg['Servers'][$i]['usergroups'] = 'pma__usergroups';
  45. $cfg['Servers'][$i]['navigationhiding'] = 'pma__navigationhiding';
  46. $cfg['Servers'][$i]['savedsearches'] = 'pma__savedsearches';
  47. $cfg['Servers'][$i]['central_columns'] = 'pma__central_columns';
  48. $cfg['Servers'][$i]['designer_settings'] = 'pma__designer_settings';
  49. $cfg['Servers'][$i]['export_templates'] = 'pma__export_templates';
  50. }