Advertisement
wehandler

Config sample MySQL

Mar 22nd, 2019
197
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.48 KB | None | 0 0
  1. <?php
  2. /**
  3.  * This is needed for cookie based authentication to encrypt password in
  4.  * cookie. Needs to be 32 chars long.
  5.  */
  6. $cfg['blowfish_secret'] = 'n34uLaA3lvexVi6RaSG3T1BTna123m78'; /* YOU MUST FILL IN THIS FOR COOKIE AUTH! */
  7. /* Authentication type */
  8. $cfg['Servers'][$i]['user'] = 'root'; //mysql username here
  9. $cfg['Servers'][$i]['password'] = '123123'; //mysql password here. here you need to add the password which you setup at the time of mysql server authentication setup.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement