Installed SSL and now getting "Page URL not defined"

Hello everyone, I’m looking for some help to solve an error with tracking - all help and ideas appreciated.

Two days ago I installed SSL on the PIWIK server (giadmin.com) via a service my host provided. This is when my troubles started. E.g. real time tracking no longer having URLs for the pages and if I click a user it will show the title of the page but below entry entry says “Page URL not defined”.

I saw a notice about checking the SSL installation for this issue, however mine verifies just fine with no chain issues etc. I’ve been running PIWIK for years before this without issues and all domains being http. I’m tracking traffic on several domains, the PIWIK installation now has https and all the sites using it are still http. I also added force ssl to the config file in case that would help, no change, so now in a loss as to fix this.

I’ve copied in the tracking code example below from one of my sites, it does neither state say http nor https so I presume it should work, its the same code that worked days ago.

`

`

On my giadmin.com I added to .htaccess after installation of the SSL in case someone sees an error:

RewriteEngine On
RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https://giadmin.com/$1 [R=301,L]

On my vrdorado.com I have an .htaccess based redirect that I just noticed mentions https but I’ve no real idea about this interfering in some way or not, I believe this code only force non www on all URLs at least that is the intent:

RewriteCond %{HTTPS} off
RewriteCond %{HTTP_HOST} ^www.(.)$ [NC]
RewriteRule ^(.
)$ http://%1/$1 [R=301,NE,L]’

Replied to this in: https://forum.matomo.org/t/added-ssl-on-piwik-server-page-url-not-defined/17948