From 059fd97c64f62a913fa44ea2adf18f9e914cd4a0 Mon Sep 17 00:00:00 2001 From: Kevin Reed Date: Thu, 30 May 2019 08:28:55 -0500 Subject: [PATCH] web: clarify that the html/ops scripts for creating account ownership keys needs to be run from the command line --- html/ops/check_account_ownership_keys.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/html/ops/check_account_ownership_keys.php b/html/ops/check_account_ownership_keys.php index 892290ef9a..da3580a156 100644 --- a/html/ops/check_account_ownership_keys.php +++ b/html/ops/check_account_ownership_keys.php @@ -23,13 +23,13 @@ require_once("../inc/account_ownership.inc"); admin_page_head("Account Ownership Keys"); if (!file_exists($account_ownership_private_key_file_path)) { - echo "

The account ownership private key '" . $account_ownership_private_key_file_name . "' doesn't exist. Please run the 'generate_account_ownership_keys.php' script in the BOINC web server ops directory.

"; + echo "

The account ownership private key '" . $account_ownership_private_key_file_name . "' doesn't exist. Please run the 'generate_account_ownership_keys.php' script from the command line in the BOINC web server ops directory.

"; } else { echo "

The account ownership private key '" . $account_ownership_private_key_file_name . "' exists.

"; } if (!file_exists($account_ownership_public_key_file_path)) { - echo "

The account ownership public key '" . $account_ownership_public_key_file_name . "' doesn't exist. Please run the 'generate_account_ownership_keys.php' script in the BOINC web server ops directory.

"; + echo "

The account ownership public key '" . $account_ownership_public_key_file_name . "' doesn't exist. Please run the 'generate_account_ownership_keys.php' script from the command line in the BOINC web server ops directory.

"; } else { echo "

The account ownership public key '" . $account_ownership_public_key_file_name . "' exists.

"; }