phpMyAdmin配置檔案中的密文(blowfish_secret)太短

甲骨文技術支援發表於2018-03-02

在phpMyAdmin頁面上報錯配置檔案中的密文(blowfish_secret)太短

檢視下配置檔案more config.inc.php
  1. /**
  2.  * This is needed for cookie based authentication to encrypt password in
  3.  * cookie. Needs to be 32 chars long.
  4.  */
  5. $cfg['blowfish_secret'] = 'abcdefghijklmnopqrstuvwxyzabcdefgh'; /* YOU SHOULD CHANGE THIS FOR A MORE SECURE COOKIE AUTH! */
因為我把$cfg['Servers'][$i]['auth_type'] 引數從config改為了cookie,我覺得這樣更方便,但是上面的引數要求cookie模式必須加長引數的值,預設是"xampp",顯然不夠32位,隨便設定一個夠32位即可。

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/20893244/viewspace-2151435/,如需轉載,請註明出處,否則將追究法律責任。

相關文章