[SOLVED] phpmyadmin error: The configuration file now needs a secret

Tagged:  
phpMyAdmin Logo

If newly installed phpMyAdmin dont working because of a blowfish error,
open file /usr/share/phpmyadmin/config.inc.php

nano -w /usr/share/phpmyadmin/config.inc.php

and add anything to this line:
$cfg['blowfish_secret'] = '';
like
$cfg['blowfish_secret'] = 'thing';
after saving phpMyAdmin should work.

If you dont prefer cookie auth (which I'd prefer), changing
$cfg['Servers'][$i]['auth_type'] = 'cookie'; line to $cfg['Servers'][$i]['auth_type'] = 'http'; is probable.

Comments

Post new comment

The content of this field is kept private and will not be shown publicly.
  • Web page addresses and e-mail addresses turn into links automatically.
  • Allowed HTML tags: <a> <em> <strong> <cite> <code> <ul> <ol> <li> <dl> <dt> <dd>
  • Lines and paragraphs break automatically.

More information about formatting options

CAPTCHA
This question is for testing whether you are a human visitor and to prevent automated spam submissions.
 888        .d8888b.                       8888888888           
888 d88P Y88b d88P
888 .d88P d88P
88888b. 8888" 888 888 88888b. d88P 8888b.
888 "88b "Y8b. `Y8bd8P' 888 "88b 88888888 "88b
888 888 888 888 X88K 888 888 d88P .d888888
888 888 Y88b d88P .d8""8b. 888 888 d88P 888 888
888 888 "Y8888P" 888 888 888 888 d88P "Y888888


Enter the code depicted in ASCII art style.

Similar

  • New technique to win olimpics -

    New technique to win olimpics

    At the 1968 Olympics, Dick Fosbury took the athletics world by surprise with an unusual high-jump technique.

  • Printing mysql_error -

    Printing mysql_error

    This is a code snipped to print mysql error.
    If there is no error mysql_error returns null, thus if evaluates false and there is no output.

  • multiple ON DUPLICATE KEY UPDATE -

    multiple ON DUPLICATE KEY UPDATE

    Here is an example of how to update multiple columns using values supplied in the INSERT statement. This assumes that column 'a' is the unique key.

  • multiple ON DUPLICATE KEY UPDATE -

    multiple ON DUPLICATE KEY UPDATE

    Here is an example of how to update multiple columns using values supplied in the INSERT statement. This assumes that column 'a' is the unique key.

  • php unlink recursive -

    php unlink recursive

    The shortest recursive delete possible.

    <?php
    /**
    * Delete a file or recursively delete a directory
    *
    * @param string $str Path to file or directory
    */