From 2beddeef86381abee8380ff314fde5faa09a35dd Mon Sep 17 00:00:00 2001 From: Peter Goodhall Date: Fri, 18 Oct 2019 15:20:53 +0100 Subject: [PATCH] trying to debug eqsl --- application/controllers/Eqsl.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/application/controllers/Eqsl.php b/application/controllers/Eqsl.php index da18cf5c..4ed4caf4 100644 --- a/application/controllers/Eqsl.php +++ b/application/controllers/Eqsl.php @@ -108,13 +108,16 @@ class eqsl extends CI_Controller { if ($this->input->post('eqslimport') == 'fetch') { + echo "import from clublog ADIF"; $file = $config['upload_path'] . 'eqslreport_download.adi'; - + echo "Download File: ".$file; // Get credentials for eQSL $query = $this->user_model->get_by_id($this->session->userdata('user_id')); $q = $query->row(); $data['user_eqsl_name'] = $q->user_eqsl_name; $data['user_eqsl_password'] = $q->user_eqsl_password; + + echo "Username".$data['user_eqsl_name']; // Get URL for downloading the eqsl.cc inbox $query = $query = $this->db->query('SELECT eqsl_download_url FROM config');