I have two sites https://site1.com (PHP site) and http://site2.com (PHP site). I have embedded the site1 inside site2 using iframe
<iframe src="https://site1.com" seamless width='100%' height="700px" frameborder="0"></iframe>
Now the issue is I'm not able to log in to site2 which is inside an iframe and also some of the ajax requests responses are empty
This is working fine with the Firefox browser, facing this issue only in the google chrome browser
Any idea why is this happening ? are there any other alternative solutions I can implement?