Forum Moderators: phranque
If they are using your pages...I suggest e-mailing their ISP or host if you can find it.
Another tactic is a threatening 'cease and desist' e-mail over copywrite infringement. If you do that...be prepared to sue them...and then do it.
My 2 cents....
Conard, the first time I saw my website in another site's frames I reacted much the same as you. At the time I didn't understand frames and though my site was actually stolen, then I saw Lycos.de(?) doing it and started to realize that although controversial, it was common practice; the hosting site gets to keep it's navigation, look-feel and advertisements while presenting your page as a link, example: AskJeeves.com
I also use JS to break frames (served externally) and have had no problems with Google crawls and see no affect with PR.
[edited by: keyplyr at 10:31 pm (utc) on June 29, 2002]
keyplyr,
You do not see any of their site, only my site with a title change reflected in the top frame.
One of the domains is right on target for my site, the other one is a touch strange.
I'll set up the JS externally.
Well that is a completely different scenario and breaking frames will not affect a copy of your mark-up which is being served from somewhere else.
However, if your host is still serving your pages, then your site is not stolen. The other domain may be cloaking your http info using a gripper to conceal your Titles. Again, this may be unethical but hardly theft since they have not copied your content. But I would also be enraged about this!
'Fair Use' is one thing...a total hijack is a copywrite violation.
Google and other SE's taking a cache are NOT violating copywrite law. They are not presenting the work as their own...big difference.
I have moved all JS off page and it just refreshes to my site now.
You could ban his ip. Many ways to do it. You could even do it with a JS:
<!--
netscape = (navigator.appName.indexOf("Netscape") != -1);
version4 = (navigator.appVersion.indexOf("4.") != -1);
if (netscape && version4) {
ip = "" + java.net.InetAddress.getLocalHost().getHostAddress();
if (ip.indexOf("XXX.XX.XXX.XXX") >= -1)
{
alert("Nasty_Message_Here.");
history.go(-1);
}
}
//-->