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 :: php remove characters not numbers or letters 
Php :: get_posts category 
Php :: php get location of user 
Php :: call metho din config laravel 
Php :: remove create in nova resource 
Php :: kill php process mac 
Php :: php artisan migrate nothing to migrate 
Php :: how to get javascript variable value in php 
Php :: How to check current URL inside @if statement in Laravel 
Php :: Get html by ajax 
Php :: print date in php 
Php :: php text colors 
Php :: get domain from subdomain php 
Php :: return error when duplicated laravel 
Php :: mobile no validation laravel 
Php :: get site url with protocol in php 
Php :: merge two objects in php 
Php :: regex for email php 
Php :: alert php 
Php :: php loop through string 
Php :: doctrine php driver execption 
Php :: wordpress disable xmlrpc 
Php :: file original extensions laravel 
Php :: laravel eloquent order by alphabetical order 
Php :: php get all function arguments 
Php :: add like and equal in same query in laravel 
Php :: WP_Comment_Query get total number of comments fetched 
Php :: have_rows count acf php 
Php :: php file get content json 
Php :: php file get content replacing & with & 
ADD CONTENT
Topic
Content
Source link
Name
4+7 =