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: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.
you have visited the site? checked his whois?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.
block all Russian ip's and copyright photos to solve a part of problems
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.
block all Russian ip's and copyright photos to solve a part of problems
You are complaining about someone copying your copied photos?
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
ip's have same numbers upfront start?Yes IP address changes, never same country..
I do not know what to do
ip's have same numbers upfront start?
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.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...