The x-frame-options tag has no wiki summary.
19
votes
4answers
16k views
Overcoming “Display forbidden by X-Frame-Options”
I'm writing a tiny webpage whose purpose is to frame a few other pages, simply to consolidate them into a single browser window for ease of viewing. A few of the pages I'm trying to frame forbid ...
6
votes
1answer
450 views
How do I get Sinatra to refrain from adding the X-Frame-Options header?
I am using Sinatra to return some IFRAME contents, and I'd like to allow cross-domain src. Unfortunately, Sinatra is automatically adding an X-Frame-Options header to my response. How do I turn that ...
5
votes
2answers
471 views
Is there a client-side way to detect X-Frame-Options?
Is there any good way to detect when a page isn't going to display in a frame because of the X-Frame-Options header? I know I can request the page serverside and look for the header, but I was ...
5
votes
1answer
2k views
How Can I Bypass the X-Frame-Options: SAMEORIGIN HTTP Header?
I am developing a web page that needs to display, in an iframe, a report served by another company's SharePoint server. They are fine with this.
The page we're trying to render in the iframe is ...
2
votes
1answer
2k views
Problem embedding youtube video's with with django template
I have a django template that displays a list of objects with youtube videos:
{% for obj in objs %}
<h1>{{ obj.name }}</h1>
<iframe width="425" height="349" src="{{ ...
2
votes
0answers
522 views
How to use the SetEnvIf in this situation?
I try to put a X-FRAME-OPTIONS to the http header to prevent the Clickjacking attack.
If I set the header in the httpd.conf or .htaccess file like this, it works.
Header set X-Frame-Options ...
1
vote
0answers
188 views
Way to detect “Refused to display document because display forbidden by X-Frame-Options.” error?
I am using 'google viewer' to view some documents.
Only problem is, if the browser has a google-login that is in "limbo" it shows nothing and the "Refused to display document because display forbidden ...
1
vote
2answers
133 views
How can I stop loading a web page if it is equiped with frame-buster buster?
How can I stop loading a web page if it uses a frame-buster buster as mentioned in this question, or an even stronger X-Frame-Options: deny like stackoverflow.com? I am creating a web application that ...
1
vote
3answers
2k views
X-Frame-Options forbidding redirect to PayPal
I've got a payment system that won't redirect to paypal because of the error: "Refused to display document because display forbidden by X-Frame-Options." The form is posted and the proper redirect ...
0
votes
1answer
17 views
X-Frame-Options: Post on Twitter from Facebook application
I want to be able to post on users Twitter feed from a Facebook app i'm developing at the moment but seem to be having trouble. When I call my the tmhOAuth PHP script to authenticate ask for ...
0
votes
2answers
151 views
Knowing the status of a form POST that is protected by X-Frame-Options
I am going to describe my specific case below, but this might be useful to a number of web-mashups.
My web application POSTs to Twitter by filling a form and then submitting it (via javascript). The ...