Prevent Iframe , Frame Theft

How to stop iframe, frame thefts of our site resources.

Sites like Google Image search , goodphptutorials.com and phpcamp.net displays the website under the IFRAME .No one want their site to be displayed it under the IFRAME, FRAMES. If you want to protect your site to be displayed under the IFRAME,FRAMES then just copy and paste below javascript code after body tag.

<?php
if (window.top !== window.self) {
document.write = "";
window.top.location = window.self.location; setTimeout(function(){document.body.innerHTML='';},1);
window.self.onload=function(evt){
document.body.innerHTML='';};
}
?>

Here we use simple logic that we check our page document window is main window or not. if our document isn’t in main window it might be in iframe or frame. then we switch the location of main window to our existing document locations. Before doing this redirection we make the document empty, because the imposter can break this code before loading .

Get the most popular wordpress plugin twitter offered today, you'll locate both free and premium plugins here. We have actually inspected the whole web, evaluated hundreds of advised Wordpress plugins and picked the best.
Get breaking news the most up to date technology updates, including brand-new item launches, sales figures and tech business performance details. Review information on brand-new gadgets and prototypes for future innovation.
seo tools people should and must not be doing on your Web pages to make them rank greater in search engines. In a frequently altering SEO garden, it is very important to stay current about the changing methods and approaches of optimization.
Here is a listing of tools Manage WordPress Sites with a central place. There are WordPress dashboards, in addition to multisite tools to take care of domains, styles, projects, and much more. includes one-click accessibility, tracking, backup, deployment, publishing, and security features. Testimonial which of your sites have motifs and plugins that need focus. Along with one click, update every one of your plugins, styles or center WordPress software.


My Name is Adi Saputra. I come from Indonesia. I want to develop www.tuto-rial.com Blog Being the best, So much of it as a reference in the world of IT in particular programming

Comments are closed.