Reputation: 99
Mixed Content: The page at 'https://www.timedevs.xyz/application/' was loaded over HTTPS, but requested an insecure XMLHttpRequest endpoint 'http://emustore4ios/aceradio/es4iosradio.php'. This request has been blocked; the content must be served over HTTPS.
Upvotes: 1
Views: 2484
Reputation: 4826
From an https webpage you should only do https (secure) requests.
On your page something make an http (insecure) request. The browser block it for security reasons.
Find what does that request and modify it to call the https endpoint instead if possible.
Upvotes: 1