vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=15)
-   -   What is the conditional code to do this (https://vborg.vbsupport.ru/showthread.php?t=144001)

BigJimTheLug 04-04-2007 02:03 PM

What is the conditional code to do this
 
I want to prevent my google adsense ads from being displayed to a specific domain.

The domain is

http://5centminimum.com/members/timerPTC.php


Can someone help me with the correct conditional statement to prevent adsense ads from being displayed to the above listed url?

Thank you.

Snort_2005 04-04-2007 02:27 PM

5CENTMINIMUM Please log into your account and try again.

That's all I see.. o_O;

BigJimTheLug 04-04-2007 03:07 PM

Oh wait. sorry.. I did not explain myself properly.

Ok, some person submitted my board to that site without my permission.

But I don't want my Google adsense ads to be displayed on that url when my site is viewed.

I think that site is a banner exchange, I'm not sure.

But what I want to do is prevent my Google Adsense ads from being displayed on that domain.

Isn't there a code for this involving .htaccess and a rewrite of some kind?

I want those who use that domain to look at my site, but I do not want them to look at my Google Adsense ads. But I only want that domain to not "see" my Google ads.

HMBeaty 04-04-2007 04:12 PM

So basically preventing hotlinking?

BigJimTheLug 04-04-2007 04:27 PM

Well, if it can prevent my Google Adsense ads from showing up on that domain when my board is viewed on that domain, then I guess it does prevent hot linking.

Although I'm not quite sure what hotlinking is...

Ok everyone, this is what I have so far, please correct me if I am wrong.

PHP Code:

$domain 'domainyouwantblocked.com';

If(
str_replace('www.'''$_SERVER['server_name']) == $domain) { die(); } 

Ok this is what I have:

PHP Code:

If(str_replace('www.'''$_SERVER['server_name']) == $domain)
{
    die();


And I also have this:

PHP Code:

function display_adsense()
{
    If(
str_replace('www.'''$_SERVER['server_name']) == $domain)
    {
        return 
FALSE;
    }
    else
    {
        return 
TRUE;
    }


And also this


PHP Code:

if(display_adsense())
    echo 
"adsense code";


Will these codes prevent Adsense from showing up in a domain I don't want them to, even if my site shows up on that domain?


Well, I have an idea as to how to block this type of cheap traffic, and it involves modifying the .htaccess file.

sweet!

BigJimTheLug 04-06-2007 01:37 AM

Yes, this is similar to preventing "hotlinking." I found out what that was...lol. Thanks for pointing me in the right direction Redlinemotorsports.
Here is what I was after


This code is for multiple referrer that you want to block

Code:

RewriteEngine on
# Options +FollowSymlinks
RewriteCond %{HTTP_REFERER} badsite\.com [NC,OR]
RewriteCond %{HTTP_REFERER} anotherbadsite\.com
RewriteRule .* - [F]


This code here is for one referrer to block

Code:

RewriteEngine on
# Options +FollowSymlinks
RewriteCond %{HTTP_REFERER} badsite\.com [NC]
RewriteRule .* - [F]

RewriteEngine on
# Options +FollowSymlinks
RewriteCond %{HTTP_REFERER} badsite\.com [NC]
RewriteRule .* - [F]



This code is useful to block sites that you do not want traffic from, and in my case, this is very helpful as I do not need traffic from a few sites.

I just tested this using vbulletin.org and it works great!

HMBeaty 04-06-2007 01:55 AM

So you got it working now?

BigJimTheLug 04-06-2007 02:55 AM

Yes, I did.

I tried a plug in, but that wasn't working.

This does the trick!


All times are GMT. The time now is 05:49 AM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01587 seconds
  • Memory Usage 1,733KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (2)bbcode_code_printable
  • (4)bbcode_php_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (8)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete