Someone steals my content

easy. just update the html tags constantly so his scrapper doesn't know what to grab.
 
Thanks, I can't PM yet.. I post url here, If it is a problem, I delete..
My website : whassup.fr | Russian site : mythics.ru
so i've pm'ed you my skype but if you dont want to talk via skype, this is what you just need to do:
put this code: $_SERVER['REMOTE_ADDR'] beside of title of a file in your site, then go on the russian site and search for that file, in this way you will track his exactly IP , then go on your htaccess and hit deny to that ip... easy like day light.
 
They are most likely pasting your feed. As soon as you update your website your feed updates and their website updates. Install some plugin to control your feed content. Maybe add some links to it. Control how much content is accessible in your feeds.
 
so i've pm'ed you my skype but if you dont want to talk via skype, this is what you just need to do:
put this code: $_SERVER['REMOTE_ADDR'] beside of title of a file in your site, then go on the russian site and search for that file, in this way you will track his exactly IP , then go on your htaccess and hit deny to that ip... easy like day light.

what if the russian dude is using a bunch of proxies? and that's only if he doesn't a sanitizer in his scrapper bot.
 
what if the russian dude is using a bunch of proxies? and that's only if he doesn't a sanitizer in his scrapper bot.
you have visited the site? checked his whois?
 
Change your default rss feed and delay it. Index ur content and send fake/bot/spam traffic to him.
 
so i've pm'ed you my skype but if you dont want to talk via skype, this is what you just need to do:
put this code: $_SERVER['REMOTE_ADDR'] beside of title of a file in your site, then go on the russian site and search for that file, in this way you will track his exactly IP , then go on your htaccess and hit deny to that ip... easy like day light.

The method worked, I recovered its IP and I blocked it in the .htaccess but it still happens to steal my contents.
Unless I'm wrong but I do not think :

order allow,deny
allow from all
deny from 10.0.81.214
deny from mythics.ru

block all Russian ip's and copyright photos to solve a part of problems


I have thousands of Russian visitors on my site so it's embarrassing, but if I have no choice I will. Except that the site is .ru but nothing says it does not attack from another country

You are complaining about someone copying your copied photos?


It is not the pictures the problem but the textual content. I have 1000 articles copied, Google will end up penalizing us
 
The method worked, I recovered its IP and I blocked it in the .htaccess but it still happens to steal my contents.
Unless I'm wrong but I do not think :

order allow,deny
allow from all
deny from 10.0.81.214
deny from mythics.ru

From what I'm seeing now, his site is loading pretty hard, that means probably now is using some proxies, if you repet the the thing with $_SERVER['REMOTE_ADDR'] will give you the same IP?
 
Yes IP address changes, never same country..
I do not know what to do
 
ip's have same numbers upfront start?

Here are the last ip addresses that I could retrieve with $_SERVER['REMOTE_ADDR'] :

144.217.69.4 | 94.23.250.109 | 149.202.209.173 | 92.161.31.79

I succeeded to block the .ru website thanks to this small code before the <body> :

<?php if($_SERVER['SERVER_ADDR']=="10.0.81.214")
{
exit;
}
?>

But I think this solution will only be temporary...
 
Here are the last ip addresses that I could retrieve with $_SERVER['REMOTE_ADDR'] :

144.217.69.4 | 94.23.250.109 | 149.202.209.173 | 92.161.31.79

I succeeded to block the .ru website thanks to this small code before the <body> :

<?php if($_SERVER['SERVER_ADDR']=="10.0.81.214")
{
exit;
}
?>

But I think this solution will only be temporary...
The guy who's scraping your site is a beginner on scraping websites, you will find solutions. @RazeByte gives you some useful tips if you read his reply.
 
FIile a DMCA complaint. Also, just after you post the content, use fetch as google to index the post.
 
Back
Top