我试图实施hashover 脚本。 我按照说明操作,但是我收到了这个错误:
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';
两条线都有相同的错误。
答案 0 :(得分:2)
我们可以在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'
等等。请确保更改所有这些值