config.inc.php 987 B

12345678910111213141516171819202122232425262728293031323334353637
  1. <?php
  2. /* PHPmyadmin config for Hestia 1.3.3 > */
  3. /* vim: set expandtab sw=4 ts=4 sts=4: */
  4. /**
  5. * All directives are explained in documentation in the doc/ folder
  6. * or at <https://docs.phpmyadmin.net/>.
  7. *
  8. * @package PhpMyAdmin
  9. */
  10. declare(strict_types=1);
  11. /**
  12. * This is needed for cookie based authentication to encrypt password in
  13. * cookie. Needs to be 32 chars long.
  14. */
  15. $cfg['blowfish_secret'] = '%blowfish_secret%'; /* YOU MUST FILL IN THIS FOR COOKIE AUTH! */
  16. /**
  17. * Directories for saving/loading files from server
  18. */
  19. $cfg['UploadDir'] = '';
  20. $cfg['SaveDir'] = '';
  21. /**
  22. * You can find more configuration options in the documentation
  23. * in the doc/ folder or at <https://docs.phpmyadmin.net/>.
  24. */
  25. //start with 1 other wise it doesn't work
  26. $i = 1;
  27. foreach (glob('/etc/phpmyadmin/conf.d/*.php') as $filename)
  28. {
  29. include($filename);
  30. /*Don't remove / alter code here below this will add SSO support for all servers*/
  31. //Add Hestia SSO code here
  32. $i++;
  33. }