Search
 
SCRIPT & CODE EXAMPLE
 

PHP

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';
Comment

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

//step 1: To generate new blowfish secret

simply hit this https://phpsolved.com/phpmyadmin-blowfish-secret-generator/?g=5d94be5065c70
	or
openssl rand -base64 32
//step 2: rename cofig sample of phpmyadmin to config
cp /usr/share/phpmyadmin/config.sample.inc.php /usr/share/phpmyadmin/config.inc.php

//step 3: add the code generated in step 1
$cfg['blowfish_secret'] = 'your_pass_key_here_xkdfsdf@kfa#fsd@sdf';
Comment

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';
Comment

PREVIOUS NEXT
Code Example
Php :: search string inside array of objects php 
Php :: laravel eloquent mass update 
Php :: echo all php global variables 
Php :: php createFromFormat day of week 
Php :: migrate specific file in laravel 
Php :: Installing PHP and Configuring Nginx to Use the PHP Processor 
Php :: textarea laravel migration 
Php :: laravel query builder select first 
Php :: laravel npm build production 
Php :: wpdb get results foreach 
Php :: full month name php 
Php :: laravel set config 
Php :: Class "Controller" not found 
Php :: push collection php 
Php :: square root php 
Php :: laravel auth 6 
Php :: how to store an image in laravel directly from url 
Php :: compare php date with mysql date 
Php :: get_previous_posts_link add class wordpress 
Php :: php echo new line terminal 
Php :: php validate file type 
Php :: contains php 
Php :: Remove the Breadcrumbs on the Shop Entirely 
Php :: drupal 8 twig add id 
Php :: woocommerce remove payment method when totla is 0 
Php :: laravel model where 
Php :: php set http status header 
Php :: php get option value 
Php :: check if session is started 
Php :: symfony set timezone 
ADD CONTENT
Topic
Content
Source link
Name
1+8 =