use https.. it's 2026

This commit is contained in:
HB9HIL
2026-02-17 20:30:48 +01:00
parent c00e64c74b
commit 8bca0dc2ab
15 changed files with 16 additions and 16 deletions

View File

@@ -18,7 +18,7 @@ class Dxcalendar extends CI_Controller {
'backup' => $this->config->item('cache_backup') ?? 'file',
'key_prefix' => $this->config->item('cache_key_prefix') ?? ''
]);
$rssUrl = 'http://www.ng3k.com/adxo.xml';
$rssUrl = 'https://www.ng3k.com/adxo.xml';
if (!$rssRawData = $this->cache->get('RssRawDxCal')) {
$rssRawData = file_get_contents($rssUrl, true);
$this->cache->save('RssRawDxCal', $rssRawData, (60*60*12));

View File

@@ -27,7 +27,7 @@ class Qrz extends CI_Controller {
public function qrz_apitest() {
$apikey = xss_clean($this->input->post('APIKEY'));
$url = 'http://logbook.qrz.com/api'; // TODO: Move this to database
$url = 'https://logbook.qrz.com/api'; // TODO: Move this to database
$post_data['KEY'] = $apikey;
$post_data['ACTION'] = 'STATUS';
@@ -362,7 +362,7 @@ class Qrz extends CI_Controller {
$result = "Temporary download file ".$file." is not writable. Aborting!";
return false;
}
$url = 'http://logbook.qrz.com/api';
$url = 'https://logbook.qrz.com/api';
$post_data['KEY'] = $qrz_api_key;
$post_data['ACTION'] = 'FETCH';