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?

link|improve this question

62% accept rate
18  
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
feedback

7 Answers

up vote 31 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!

link|improve this answer
feedback

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/

link|improve this answer
14  
That is only true for embedding google maps in an iframe, and not a general "solution". – Benjamin Wohlwend Sep 29 '11 at 7:55
3  
I needed to embed a google map in a lightbox, so this "solution" was perfect – yitwail Oct 10 '11 at 23:01
1  
@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 at 2:21
feedback

If you are getting this error for a YouTube video, rather than using the full url use the embed url from the share options. It will look like http://www.youtube.com/embed/eCfDxZxTBW4

link|improve this answer
1  
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 at 15:17
This worked for me. Thank you. – Kabamaru Feb 24 at 16:25
feedback

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.

link|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 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 at 16:05
I don't have any href="#" in my AJAX request but X-Frame-Options error is there! Still searching for solution – brainondev May 10 at 7:09
feedback

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.

link|improve this answer
feedback

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.

link|improve this answer
feedback

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

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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