Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Uncaught SecurityError: Blocked a frame with origin "https://www.google.com" from accessing a frame with origin "http://my.site.com".

I am using google reCaptcha v2.0 and this is working in the same domain when i am trying to do it with a sample html page but same thing is not working when I am trying to integrate with the full production page. After clicking on reCaptcha checkbox it's keep on loading for sometimes and after that it is throwing the error below in details.

Uncaught SecurityError: Blocked a frame with origin "https://www.google.com" from accessing a frame with origin "http://my.site.com". The frame requesting access has a protocol of "https", the frame being accessed has a protocol of "http". Protocols must match.

I have tried removing http, https and just kept // so that site protocol can match but no luck. Would be a great help if anyone has a solution here.

Thanks in advance.

like image 614
Kshirodra Meher Avatar asked Oct 30 '22 02:10

Kshirodra Meher


1 Answers

When the src is running on https, your web server must be SSL enabled

like image 57
Shahar Shokrani Avatar answered Nov 10 '22 05:11

Shahar Shokrani