I was able to accomplish this using IFRAME and .htaccess. So if your interested this is what I did:
First I created a directory under my mainsite called /google
Secondly I created .htaccess and put this code into it:
<Limit GET HEAD POST>
order allow,deny
deny from IP.ADDRESS.HERE
allow from all
</LIMIT>
Thirdly I created google.php within /google
I then went into my navbar and pasted this info:
<CENTER>
<iframe src="/google/index.php" width="750" height="110" scrolling="no" name="content" frameborder="0"></iframe>
</CENTER>
It will show a blank area if you are on the IP Address that is blocked, and it shows the Google ads perfectly for any other IP Address. To get around the 403 Forbidden Denied error.. I had to change the apache config file to point to a blank page which I created /google/403.html then restarted apache.
I know its not a PHP fix, but it does seem to work. We have a programmer who is looking into making some code to coincide with VB that is PHP based. Once I have that, and its working, i'll paste that or create a Mod in the Mods Section. As everyone I asked said it can't be done, just as VB staff said it can't be done. I'm sure it can be done.. its just maybe know one has done it yet.
|