Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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 being framed and throw a "Refused to display document because display forbidden by X-Frame-Options." error in Chrome. I understand that this is a security limitation (for good reason), and don't have access to change it.

Is there any alternative framing or non-framing method to display pages within a single window that won't get tripped up by the X-Frame-Options header?

share|improve this question
40  
If they're your pages, then remove the frame limiter. Otherwise, respect the page's author's wishes and DON'T FRAME THEM. – Marc B Jul 12 '11 at 15:09

11 Answers

up vote 63 down vote accepted

I had a similar issue, where I was trying to display content from our own site in an iframe (as a lightbox-style dialog with Colorbox), and where we had an server-wide "X-Frame-Options SAMEORIGIN" header on the source server preventing it from loading on our test server.

This doesn't seem to be documented anywhere, but if you can edit the pages you're trying to iframe (eg., they're your own pages), simply sending another X-Frame-Options header with any string at all disables the SAMEORIGIN or DENY commands.

eg. for PHP, putting

<?php
header('X-Frame-Options: GOFORIT'); 
?>

at the top of your page will make browsers combine the two, which results in a header of

X-Frame-Options SAMEORIGIN, GOFORIT

...and allows you to load the page in an iframe. This seems to work when the initial SAMEORIGIN command was set at a server level, and you'd like to override it on a page-by-page case.

All the best!

share|improve this answer
1  
I had a frame around a website. On my website, I'm redirecting to Instagram for OAUTH. Since Instagram sends X-Frame-Options: SAMEORIGIN there is no way to do this inside the frame. You must use a popup. – Steve Tauber Sep 3 '12 at 19:07
1  
With PHP it's probably better to use the new header_remove function, provided you have it available (>=5.3.0). – lunboks Feb 9 at 0:19
Thanks a lot! You saved my life. – Peter O. Mar 6 at 9:47
I was finding answer to this question from last 1 week and this answer was miracle , thanks a lot. – kanojesumit Apr 6 at 15:30

If you are getting this error while trying to embed a Google Map in an iframe, you need to add &output=embed to the source link.

Source: http://www.rivercitystudio.com/blog/2011/09/google-maps-embedding-x-frame-options-change/

share|improve this answer
32  
That is only true for embedding google maps in an iframe, and not a general "solution". – Benjamin Wohlwend Sep 29 '11 at 7:55
9  
I needed to embed a google map in a lightbox, so this "solution" was perfect – yitwail Oct 10 '11 at 23:01
4  
@QL Studio: I hereby officially love you, whatever you may be :-) – Christoph Grimmer-Dietrich Oct 17 '11 at 12:14
If you're trying to do this with a Twitter web intent, forget about it. Just lost all day trying different lightbox plugins only to find out this "While you can provide links to intents within IFRAMEs and widgets, the resultant pages cannot be loaded in an IFRAME." Source: Twitter website. – Gubatron Jan 26 '12 at 2:21
@QLStudio What's the whole point of disabling it in the first place, only to allow it with a different url? I mean click-jackers could simply attach &output=embed no? – Pacerier Jul 3 '12 at 14:48
show 2 more comments

Yes, that's it. Another way of doing it, is 1) Copy the link, 2) Replace the "watch?v=" with "embed/"

So in YouTobe, for example http://www.youtube.com/watch?v=j6cxZp4ii6c becomes http://www.youtube.com/embed/j6cxZp4ii6c&autoplay=true

This even works as a link to the video fullscreen in browser. Just thest link 2 above.

share|improve this answer
4  
Oh progress... I wish they would just redirect us to the embed page instead of causing an error to be thrown, and making me rewrite my scripts! – joeytwiddle Feb 3 '12 at 15:17
This worked for me. Thank you. – Kabamaru Feb 24 '12 at 16:25

Adding a

  target='_top'

to my link in the facebook tab fixed the issue for me...

share|improve this answer
Also works for me :) – Emil Marashliev Oct 12 '12 at 9:39
I had the same issue with the Paypal iframe contained in another iframe. It works now! Thanks – Fabrizio Fortino Oct 25 '12 at 7:12
I also added target='_top', but problem with this solution is , the link now opens outside the iframe in new tab without facebook canvas. – kanojesumit Apr 6 at 15:23

I had same issue when I tried embed moodle 2 in iframe, solution is Site administration ► Security ► HTTP security and check Allow frame embedding

share|improve this answer

If you are getting this error for a Facebook App and using AJAX calls, i read somewhere that Facebook really likes using # tags for it's ajax contact so try changing links, worked for me.

share|improve this answer
   
Can you post a link to where you read that? Or perhaps elaborate a little, what do you mean with "changing links" ? – Soroush Hakami Feb 10 '12 at 8:34
sorry i can't find the link. it said something about using <a href="#"> to be an issue... as it's reserved for the Facebook frame – eric.itzhak Feb 10 '12 at 16:05
1  
I don't have any href="#" in my AJAX request but X-Frame-Options error is there! Still searching for solution – brainondev May 10 '12 at 7:09

This is the solution guys!!

FB.Event.subscribe('edge.create', function(response) {
    window.top.location.href = 'url';
});

The only thing that worked for facebook apps!

share|improve this answer

Since Facebook uses POST when getting your content for the app's iFrame, your server probably isn't accepting POST calls from Facebook. I know that the free hosting site Zymic.com doesn't. Try using Heroku.com instead.

share|improve this answer

FWIW:

We had a situation where we needed to kill our iFrame when this "breaker" code showed up. So, I used the PHP function get_headers($url); to check out the remote URL before showing it in an iFrame. For better performance, I cached the results to a file so I was not making a HTTP connection each time.

share|improve this answer

I had the same problem with mediawiki, this was because the server denied embedding the page into an iframe for security reasons.

I solved it writing

$wgEditPageFrameOptions = "SAMEORIGIN"; 

into the mediawiki php config file.

Hope it helps.

share|improve this answer

I had the exact same problem and it was (very wierd) a CSS problem. I had several links with the class .mobile. The class had a CSS property "top: 25px"... that was all that was wrong...

share|improve this answer
2  
This is clearly not a CSS issue. – Tom Teman Dec 13 '12 at 7:04
1  
Did you ever see any error message because of styling? – habeebperwad Jan 8 at 7:12

protected by Community Jul 2 '12 at 12:50

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.