Answers for "the configuration file now needs a secret passphrase (blowfish_secret). ubuntu"

PHP
0

the configuration file now needs a secret passphrase (blowfish_secret)

cp /usr/share/phpmyadmin/config.sample.inc.php /usr/share/phpmyadmin/config.inc.php
$cfg['blowfish_secret'] = 'KLS$vbc91Lkja$vc@opGbxA278EWopdc';
Posted by: Guest on August-21-2020
0

The configuration file now needs a secret passphrase (blowfish_secret).

//first copy file from 
cp /usr/share/phpmyadmin/config.sample.inc.php /usr/share/phpmyadmin/config.inc.php

//open the file
sudo nano /usr/share/phpmyadmin/config.inc.php
// then find   $cfg['blowfish_secret'] = '';
//set a passkey
$cfg['blowfish_secret'] = 'your_pass_key_here_xkdfsdf@kfa#fsd@sdf';
Posted by: Guest on January-09-2022

Code answers related to "the configuration file now needs a secret passphrase (blowfish_secret). ubuntu"

Browse Popular Code Answers by Language