diff --git a/application/controllers/Eqsl.php b/application/controllers/Eqsl.php index abdcaf84..ebf2692a 100644 --- a/application/controllers/Eqsl.php +++ b/application/controllers/Eqsl.php @@ -14,6 +14,9 @@ class eqsl extends CI_Controller { private function loadFromFile($filepath) { + ini_set('memory_limit', '-1'); + set_time_limit(0); + // Figure out how we should be marking QSLs confirmed via eQSL $query = $query = $this->db->query('SELECT eqsl_rcvd_mark FROM config'); $q = $query->row(); @@ -90,7 +93,10 @@ class eqsl extends CI_Controller { $this->load->view('interface_assets/footer'); } - public function import() { + public function import() { + ini_set('memory_limit', '-1'); + set_time_limit(0); + $data['page_title'] = "eQSL Import"; $config['upload_path'] = './uploads/'; @@ -238,6 +244,8 @@ class eqsl extends CI_Controller { } // end function public function export() { + ini_set('memory_limit', '-1'); + set_time_limit(0); $this->load->model('logbook_model'); $data['page_title'] = "eQSL QSO Upload"; diff --git a/application/views/eqsl/analysis.php b/application/views/eqsl/analysis.php index 3fd6a98d..266068ea 100644 --- a/application/views/eqsl/analysis.php +++ b/application/views/eqsl/analysis.php @@ -1,19 +1,43 @@ -
-

-load->view('layout/messages'); ?> +
+
+
+
+ +
+ +
+ load->view('layout/messages'); ?> The following QSLs have been received from eQSL.cc

"; - echo $eqsl_results_table_headers; - echo $eqsl_results_table; + if (isset($eqsl_results_table_headers)) + { + echo "

The following QSLs have been received from eQSL.cc

"; + echo $eqsl_results_table_headers; + echo $eqsl_results_table; } else { - echo "

There are no QSO confirmations waiting for you at eQSL.cc

"; + echo "

There are no QSO confirmations waiting for you at eQSL.cc

"; } ?> +
+
+ +
+ + + +
+

+ +
diff --git a/application/views/eqsl/export.php b/application/views/eqsl/export.php index 996df53d..2362593a 100644 --- a/application/views/eqsl/export.php +++ b/application/views/eqsl/export.php @@ -5,10 +5,10 @@