这里的unique是什么意思(hashhover script)


What unique means here (hashover script)?

我正在尝试实现哈希脚本。我按照说明,但我得到这个错误:

HashOver:/HashOver/scripts/secrets.php中的变量值必须是唯一的

什么独特的意思?在我的secret.php加密线上

// Unique 8 to 32 character encryption key
$encryption_key     = 'e10adc3949ba59abbe56e057f20f883e';

我也试过:

// Unique 8 to 32 character encryption key
$encryption_key     = '12345678';

两行同样错误

我们可以看到在hashover.php

// Exit if encryption key, notification email, or administrative nickname or password set to defaults
if ($encryption_key == '8CharKey' || $notification_email == 'example@example.com' || $admin_nickname == 'admin' || $admin_password == 'passwd') {
    exit(jsAddSlashes('<b>HashOver:</b> The variable values in /hashover/scripts/secrets.php need to be UNIQUE.', 'single'));
}

意味着$admin_nickname不应该是'admin', $notification_email不应该是'example@example.com'等等。确保您更改了所有这些值