Search results

  1. bestscoop

    How to see the safe page?

    I m not sure I have understood what safe page is. Is it the version that search engines see? If so, try to use a service provided by Google to see the web page?
  2. bestscoop

    Cloaking script against Googlebot with RDNS [PHP]

    Of course because if Google comes with another UA it means it s not googlebot, could be fetcher, google ads-bot or whatever. But have you ever seen googlebot comings with another UA. This is Mythology not real life
  3. bestscoop

    Cloaking script against Googlebot with RDNS [PHP]

    Ok but tell me what you want to do? If the user is a human what he is supposed to see, and what if is googlebot
  4. bestscoop

    Cloaking script against Googlebot with RDNS [PHP]

    check this https://support.google.com/webmasters/answer/80553?hl=en
  5. bestscoop

    Cloaking script against Googlebot with RDNS [PHP]

    That's crazy. I just wanted to share a stuff that could help and this is what I get. Are you sure you looked at the code dude? It s not a clocking on user agent, the user agent check is to make the clock faster without serving a reverse DNS to all of your human traffic :)
  6. bestscoop

    Cloaking script against Googlebot with RDNS [PHP]

    $host == $ip it's not always true, it's false if someone is spoofing the DNS. Don't ask me how DNS spoofing works I don't know but it's well known that reverse DNS is the most secure way to know for sure who is spidering your web pages. That said, I believe that DNS spoofing is something really...
  7. bestscoop

    Cloaking script against Googlebot with RDNS [PHP]

    If it's unofficial (so Googlebot hides himself) how could you understand that is Googlebot? :D
  8. bestscoop

    Cloaking script against Googlebot with RDNS [PHP]

    I've done many tests with Googlebot for mobile it uses always ApplelWebKit in the user agent string. If you see something different from your logs files please provide the correct strings, this could be helpful to everyone
  9. bestscoop

    Cloaking script against Googlebot with RDNS [PHP]

    Have you ever tried doing a Reverse DNS Before claiming it takes multiple seconds? An RDNS is typically 200 ms Source please. This is a myth I think. I m not talking about the other google spiders as fetcher or ads-bot or whatever. Googlebot is is always coming from googlebot.com.
  10. bestscoop

    Cloaking script against Googlebot with RDNS [PHP]

    It depends on your use case and on your cms bro. Are you using wp? Tell me an example of use case that interest you. maybe I can help.
  11. bestscoop

    Cloaking script against Googlebot with RDNS [PHP]

    I m Sorry, I have made a mistake This line will trigger an error, just leave it return $user;
  12. bestscoop

    Cloaking script against Googlebot with RDNS [PHP]

    Don't worry for that, we're all here to learn something and help each other (when we can) Yes, the IP change but this script works for every IP, it's not a cloaking based on user agent or ip, it's based on reverse dns
  13. bestscoop

    Cloaking script against Googlebot with RDNS [PHP]

    Hi ! Here is a cloaking script with reverse dns. Is just triggering Googlebot nothing else. Hope it's helpful <?php $ua = $_SERVER['HTTP_USER_AGENT']; $ip = $_SERVER['REMOTE_ADDR']; if(preg_match('#googlebot#i',$ua)){ $dns = gethostbyaddr($ip)...
  14. bestscoop

    customized cloaking script required

    8 months later I don't know if you're still looking for a solution. If I understand, only the users coming from google must be redirected to the money page. All the other users (Bots, reviewers) must stay in the safe page. At this point you do not need to care about who is a bot or not, you...
  15. bestscoop

    Worst than penalties, avoid SEO Maluses

    Ok, so I m trully sorry for all what I've written here, and thank you for your kindness.
  16. bestscoop

    Worst than penalties, avoid SEO Maluses

    Yes, i feel they having fun of me, but I don't feel I m being ridiculed at all. Now about the claims in my article, i wrote "that for my opinion can trigger bad SEO Signals". Of course you are free to don't subscribe to some of my claims, but all the things I talk about are the fruits of my own...
  17. bestscoop

    Worst than penalties, avoid SEO Maluses

    No, come on man please don't tell me that! Have you seen the tool I m sharing for free on the website. I just want to share stuff don't be severe like that please :)
  18. bestscoop

    Worst than penalties, avoid SEO Maluses

    Is what I wrote sounds bullshit at this point dude ? :D
  19. bestscoop

    Can I use LSI keywords as wordpress post tags?

    If you mean by LSI Keywords the words you can get with seo-hero.tech I think it's not a good idea,because not all LSI Keywords are relevant to be added as a tag. But what is your main scope, do you want to automate this task?
  20. bestscoop

    How can I build more Backlinks?

    Links are still very important, but honestly, link building is a going to be more and more tricky. Check this thread about bad SEO signals that we never think about. I don't know if it really helps but here are some of the practices that I use when I have to deal with backlinks. Link building...
Back
Top