Page 1 of 1

Cloudlog Export

Posted: 02 Apr 2024, 15:07
by F4BPO
Hi all,

Has anyone been able to have the cloudlog export to work ?
I have tried but it seems there is an issue:
dje_zFY8BP57MT5PSL4WA3GAYHNKCBX2A_ejd][MoveNext] : [CLOUDLOG] QSO upload: Cloudlog invalid response:
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">

<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://xxxxxx.com/assets/css/default/bootstrap.min.css">
<link rel="stylesheet" href="https://xxxxxx.com/assets/css/general.css">
<link rel="stylesheet" href="https://xxxxxx.com/assets/css/default/overrides.css">
<link rel="stylesheet" href="https://xxxxxx.com/assets/fontawesome/css/all.css">

<link rel="stylesheet" href="https://xxxxxx.com/assets/css/jquery.fancybox.min.css" />

<!-- Maps -->
<link rel="stylesheet" type="text/css" href="https://xxxxxx.com/assets/js/leaflet/leaflet.css" />


<link rel="icon" href="https://xxxxxx.com/favicon.ico">

<title>Login - Cloudlog</title>
</head>
<body>
<style>
html,
body {
height: 100%;
}
It seems like Log4OM is not using a proper api url as it goes to the index.php page where it is requested to log in.

Re: Cloudlog Export

Posted: 13 Apr 2024, 02:18
by WB5SKM
I have set up a cloudlog that is hosted with the developer. The export function is not working. Can we try to get a fix for this?

Thanks

WB5SKM

Re: Cloudlog Export

Posted: 21 Apr 2024, 10:35
by F4BPO
Yes would be great to have it working, in the meantime I wrote a golang program to upload each qso logged onto Log4OM to Cloudlog / QRZ / Clublog.
I did this also to remove this from Log4OM so it runs a bit faster as I still have huge issues of slowness when working a heavy pile up after 20/30 minutes.

Re: Cloudlog Export

Posted: 15 Jun 2024, 03:16
by F4BPO
Hi Terry, Lele,

Any plan to solve the export issue to Cloudlog ?

Thanks

Re: Cloudlog Export

Posted: 16 Jun 2024, 10:22
by IW3HMH
Ciao Greg
what is the url you're pushing towards?

Log4OM is creating a json file with this format:

public class CloudlogLogfile
{
[DataMember] [JsonProperty("key")] public string ApiKey { get; set; } = string.Empty;
[DataMember][JsonProperty("station_profile_id")] public string StationProfileId { get; set; } = string.Empty;
[DataMember][JsonProperty("type")] public string FileType { get; set; } = "adif";
[DataMember][JsonProperty("string")] public string Adif { get; set; } = string.Empty;
}

and sends it to the indicated URL in the cloudlog settings page.

It seems still current, it worked and now is not working anymore I suspect there is something changed on the cloudlog side...
Unfortunately I don't have any access to a cloudlog instance anymore.

If you enable log at DEBUG LEVEL (in help menu) Log4OM will write both the url and the payload in the application log

Re: Cloudlog Export

Posted: 30 Jun 2024, 08:03
by F4BPO
Ciao Lele,

Dunno what happened but tested again and seems to work now.
Not sure if I upgraded Cloudlog recently but it works !

Thanks