Joseph James Shenton
Joseph James Shenton

Reputation: 99

The page at 'https://example.com' was loaded over HTTPS, but requested an insecure XMLHttpRequest Endpoint

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

Answers (1)

Tom
Tom

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

Related Questions