2023年11月6日 星期一

phpMyAdmin 錯誤訊息,如何解決


警告錯誤問題
  1. 找不到 PHP 的 mbstring 擴充套件,且您正使用多位元組字元編碼。 若沒有 mbstring 擴充套件 phpMyAdmin 將無法正確分割字串,這可能造成奇怪的錯誤。
  2. The configuration file needs a valid key for cookie encryption. A temporary key was automatically generated for you. Please refer to the documentation.
  3. 無法存取 $cfg['TempDir'] (/var/www/html/phpMyAdmin/tmp/)。phpMyAdmin 會無法快取模版,並且會因為此原因變得很慢。



#使用系統為Ubuntu20
1.安裝
mbstring,這裡是安裝PHP8.1
apt-get install php8.1-mbstring


2.修改配置文件
vi config.sample.inc.php
$cfg['Servers'][$i]['host'] = '127.0.0.1';#修改內容,修復登入real_connect()錯誤問題
$cfg['blowfish_secret'] = 'cJdDwVSRl56nh6prGXNGmc3btnOXcGcH'; #加入這一行

3.開啟暫存區
mkdir tmp #建立暫存區
chmod 777 tmp #提高權限


★完成
systemctl restart apache2









沒有留言:

張貼留言