• I thought I posted this question earlier today.. but don’t see it anywhere. Sorry if it’s a duplicate post!

    Hey WordPress friends, I have a question for you.

    I have been getting trackbacks from this website recently.
    https://en.bitacle.org/blogs/viewblog/1ewinb7w0/31

    The “bitacle blog search archive”.

    But, they are just entirely copying my posts and putting them on their own site without asking…. I notoiced they have adsense all over
    their site as well, trying to earn a pretty penny off my content!

    https://www.japannewbie.com/2006/09/22/when-mormons-attack/

    Are these guys evil?

    Is there anything I can do to stop them?

    Any advice appreciated! I have never seen anything like this before.

    – Harvey

Viewing 9 replies - 16 through 24 (of 24 total)
  • Thread Starter Harvey

    (@harvey)

    Whoops. I noticed after I implemented that my site was giving an internal server. WHOOPS.

    I deleted the code and now it works.

    Hrm I must have messed something up with syntax. Will try again.

    I would also suggest putting your custom code outside of the #BEGIN/END WordPress section, as WordPress may overwrite that section in certain circumstances.

    They do this for profit. Eliminate their profit motive by reporting their actions to Google / Yahoo, wherever they get their money. See What should I do when you’ve found a content thief? [self link].

    My apologies to everyone who’s tried my suggestion because it won’t work – I’ve put the backslash in the wrong spot. The correct syntax is actually:

    RewriteCond %{HTTP_USER_AGENT} ^Bitacle\ bot [NC]
    RewriteRule ^.* - [F,L]

    The backslash needs to be before the space before the “bot”.

    Thanks – never got back to this thread yesterday, too much else going on. Implementing today after I get back across my whole setup.

    Thanks again, pizdin_dim.

    Thread Starter Harvey

    (@harvey)

    From the stopbitacle websites, it seems that Google already knows about them, and they have bene reported, but Google did not remove them from Adsense.

    I have implemented this to my .htaccess file and now it looks like this.


    RewriteEngine On
    RewriteRule ^blog/(.+)?$ https://www.japannewbie.com/$1 [QSA,L]
    DirectoryIndex index.html index.shtml index.htm home.html welcome.html index.php
    Deny From 80.36.223.107 80.58.39.174
    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>
    # END WordPress
    RewriteCond %{HTTP_USER_AGENT} ^Bitacle bot [NC]
    RewriteRule ^.* - [F,L]

    When I first implemented it I was pasting pizdin’s code directly into my text editor (vi), and it was giving me weird ascii in place of the backslash. That is what was causing my site to give internal server error the first time. I manually changed that, and now my site loads fine.

    Let’s see if Biticle can no longer snatch my posts.

    Thanks for all the help, I really appreciate it everyone!

    We’ve been discussing it over on the wp.com forums recently as well. There’s some links to other articles on the topic as well as a few more suggestions. There’s also a digg link in there if you want to hit that.

    This has been a problem for some bloggers for at least 6 months. These people wrote about them way back in March, 2006:

    https://lutrov.com/blog/80/

    According to the comments from the author in post above, they’re coming from 81.172.108.9, 81.172.108.83 and 81.172.109.145 and banning them via “robots.txt” won’t work because they appear to ignore it.

Viewing 9 replies - 16 through 24 (of 24 total)
  • The topic ‘Blog Content Hijacking? Stop it?’ is closed to new replies.