diff --git a/application/controllers/Update.php b/application/controllers/Update.php index 5c6937735..b3b3ef253 100644 --- a/application/controllers/Update.php +++ b/application/controllers/Update.php @@ -211,7 +211,7 @@ class Update extends CI_Controller { $gz = gzopen($url, 'r'); if ($gz === FALSE) { $this->update_status("FAILED: Could not download from clublog.org"); - log_message('error', 'FAILED: Could not download exceptions from clublog.org'); + log_message('error', 'FAILED: Could not download data from clublog.org'); exit(); } @@ -223,6 +223,7 @@ class Update extends CI_Controller { if (file_put_contents($this->paths->make_update_path("cty.xml"), $data) === FALSE) { $this->update_status("FAILED: Could not write to cty.xml file"); + log_message('error', 'DXCC UPDATE FAILED: Could not write to cty.xml file'); exit(); } diff --git a/install/run.php b/install/run.php index 273e5d19f..6cb1879d3 100644 --- a/install/run.php +++ b/install/run.php @@ -201,7 +201,7 @@ return new Promise((resolve, reject) => { $.ajax({ type: 'POST', - url: 'ajaxx.php', + url: 'ajax.php', data: { data: _POST, run_database_file: 1 @@ -305,7 +305,7 @@ resolve(); } else { running(field, false, true); - await log_message('error', 'Could not update DXCC data.'); + await log_message('error', 'Could not update DXCC data. Check application/logs for any error messages.'); reject(""); } },