Tuesday, August 28, 2012

How to Show Ads Within the First Post in Mybb

If you want to show advertisement within the first post then there is very simple plugin postlite ad. It is little buggy which you can fix yourself: http://community.mybb.com/thread-125186-post-904769.html#pid904769.

Mind you, there does not seem to be any simpler way to do it. There is another but bit complicated way: http://community.mybb.com/thread-125188-post-904952.html#pid904952

A better idea to change this line 129 in the bottom:

$post['message'] = "<div style=\"float:right;\">{$ads}</div>{$post['message']}<div style=\"clear:both;\">";

to

$post['message'] = "<div style=\"float:left;margin: auto 1em 1em auto;\">{$ads}</div>{$post['message']}<br style=\"clear:both;\" />";

PHP 5.2/5.3 issue

This plugin is for PHP 5.2 but call by reference has changed in 5.3. So if your forum is using 5.3 then change the line 121:

function postad_start($post)

to

function postad_start(&$post)

That is just put one "&" before $post.

This issue is explained well in this thread.

Wednesday, June 27, 2012

How to Add Facebook Like, Twitter and Google plus icons in Mybb Forum

This is how my forum header looks after adding those links:


If you want to do the same way here are the steps to do it. Mind you mine is Mybb 1.6.3.
First grab the code from Addthis.com site. I've logged in and taken the code as in here:

Add caption



Now here is code which displays: "Follow us on: Facebook icon/Twitter Icon:

<div>Follow us on: <a href="http://www.facebook.com/IndianWorkingWomen"><img src="http://www.utilitiesindia.com/sites/default/files/img/facebook_22.png" width="22" height="22" alt="Facebook" title="Connect to us on Facebook" style="vertical-align:middle" /></a><a href="https://twitter.com/#!/IndWorkingWomen"><img src="http://www.utilitiesindia.com/sites/default/files/img/twitter_22.png" width="22" height="22" alt="Twitter" title="Connect to us on Twitter" style="vertical-align:middle" /></a></div>


Take care to replace your own Facebook and Twitter links in the above html cod.

Go to Templates & Style -> Templates -> Default Templates ->Header Templates->header and just over <div class="menu> insert the above two codes:
<!-- AddThis Button BEGIN -->

<div class="addthis_toolbox addthis_default_style ">

<a class="addthis_button_facebook_like" fb:like:layout="button_count"></a>

<a class="addthis_button_tweet"></a>

<a class="addthis_button_google_plusone" g:plusone:size="medium"></a>

<a class="addthis_counter addthis_pill_style"></a>

</div>

<script type="text/javascript">var addthis_config = {"data_track_addressbar":true};</script>

<script type="text/javascript" src="http://s7.addthis.com/js/250/addthis_widget.js#pubid=ra-4ed5fa1d3aa24279"></script>

<!-- AddThis Button END -->


Now save the template and check your forum.

If you've any better idea or suggestions - don't forget leave them here in comments below.


The full code within "header" looks like this:

<div id="container">
  <a name="top" id="top"></a>
  <div id="header">
   <div class="logo"><a href="{$mybb->settings['bburl']}/index.php"><img src="{$theme['logo']}" alt="{$mybb->settings['bbname']}" title="{$mybb->settings['bbname']}" />  <span id="logotext"> {$mybb->settings['bbname']} </span>     </a></div>
<div style="float:right;margin-top:-55px;margin-right:5px;">Follow us on:  <a href="http://www.facebook.com/pages/India-Consumer-Complaints-Forum/434058009961898"><img src="http://www.utilitiesindia.com/sites/default/files/img/facebook_22.png" width="22" height="22" alt="Facebook" title="Connect to us on Facebook"  style="vertical-align:middle" /></a><a href="https://twitter.com/#!/ConsumerForumIn"><img src="http://www.utilitiesindia.com/sites/default/files/img/twitter_22.png" width="22" height="22" alt="Twitter" title="Connect to us on Twitter" style="vertical-align:middle"  /></a></div>                       
 <div style="float:right;margin-top:-30px;margin-right:5px;">

<!-- AddThis Button BEGIN -->
<div class="addthis_toolbox addthis_default_style ">
<a class="addthis_button_facebook_like" fb:like:layout="button_count"></a>
<a class="addthis_button_tweet"></a>
<a class="addthis_button_google_plusone" g:plusone:size="medium"></a>
<a class="addthis_counter addthis_pill_style"></a>
</div>
<script type="text/javascript">var addthis_config = {"data_track_addressbar":true};</script>
<script type="text/javascript" src="http://s7.addthis.com/js/250/addthis_widget.js#pubid=ra-4ed5fa1d3aa24279"></script>
<!-- AddThis Button END -->

                        </div>
   <div class="menu">
    <ul>
                                        <li><a href="{$mybb->settings['homeurl']}"><img src="{$theme['imgdir']}/toplinks/home.gif" alt="" title="Go to site Home page" />Home</a></li>

     <li><a href="{$mybb->settings['bburl']}/search.php"><img src="{$theme['imgdir']}/toplinks/search.gif" alt="" title="" />{$lang->toplinks_search}</a></li>
     <li><a href="{$mybb->settings['bburl']}/memberlist.php"><img src="{$theme['imgdir']}/toplinks/memberlist.gif" alt="" title="" />{$lang->toplinks_memberlist}</a></li>
     <li><a href="{$mybb->settings['bburl']}/calendar.php"><img src="{$theme['imgdir']}/toplinks/calendar.gif" alt="" title="" />{$lang->toplinks_calendar}</a></li>
                                        <li><a href="{$mybb->settings['bburl']}/misc.php?page=forumrules"><img src="{$theme['imgdir']}/toplinks/forumrules.jpg" alt="" title="Click to read this forum's usage rules" />Forum Rules</a></li>
        <li><a href="{$mybb->settings['bburl']}/misc.php?action=help"><img src="{$theme['imgdir']}/toplinks/help.gif" alt="" title="" />{$lang->toplinks_help}</a></li>
    </ul>
   </div>
   <hr class="hidden" />
   <div id="panel">
    {$welcomeblock}
   </div>
  </div>
  <hr class="hidden" />
  <br class="clear" />
  <div id="content">
   {$pm_notice}
   {$bannedwarning}
   {$bbclosedwarning}
   {$unreadreports}
   {$pending_joinrequests}
   <navigation>
   <br />

Saturday, July 16, 2011

Implementing Anti-Spam techniques in MyBB to deter Spammers



My friends, for some time I've been following some SEO
forums and reading about backlinks & spams. I've gleaned
some good insight about spamming and why a human being wants to
spam. Most likely it is only for a backlink. Remember MyBB forums
are much more susceptible than many other forums because in the
default MyBB installation(as of v1.6.2) all links are dofollow
including profile Home page. Even if you disable links in posting
& signatures, Profile Home page. will still lure spammers.
There still a big gotcha I've found in MyBB is that it
converts all text links to clickable links automatically. Unlike
in PHPBB where you have option do disable "Don't parse
url's" or "Automatic URL's" your MyBB
invariably converts them all in <a href= links with honey-dew
cream of "Dofollow".


The biggest problem with dofollow is that one it attracts
spammers. Secondly if this linked site is banned site then your
site rankings go down heavily in Google & Yahoo. That means
at all cost you must make all external links as
"nofollow". Checkout the following techniques which
I've listed while I prepared my first MyBB forum. Please
leave comments for improvement!


Disable
MyCode in the signature to prevent signature spam


Configuration->User Registration & Profile Options
-> Allow MyCode in Signatures -> Set it to NO


As of today I could not find anything else that'd disable
MyCode URL in the signature. So I was left to use this only.


 


Set all the
external links to nofollow in mybb


Just follow these steps to
make all external links nofollow.


The basic idea is to add rel=nofollow to all links in the
website using this regular expression:


Regular Expression


Code:

<a href="http([s]?)://(.*?)"

Replacement


Code:

<a href="http$1://$2" rel="nofollow"

But now even internal site links will also be tagged with
nofollow. To prevent this, create another regular expression:


Title


Code:

Dofollow

Regular Expression


Code:

<a href="http([s]?)://(|www\.)example.net(.*?)"
rel="nofollow"

Replacement


Code:

<a href="http$1://$2example.net$3"

Since my forum is on a subdomain I used this expression.
Replace example.net with your own URL! If you have more sub
domains than www just add them to the regular expression:


Code:

<a
href="http([s]?)://(|www\.|sub1\.|sub2\.)example.net(.*?)"
rel="nofollow"

Set a
separate CAPTCHA anti-spam security question at
registration


Download this plugin
by G33K. Just extract the three folders and copy-paste in the
root of your forum. To configure it follow Readme.txt.


For my site I've coined a question: "What is the
largest bank in India?" with following answers:


sbi|hdfc|icici|icici bank


Disallow
BBCODE/MyCode [URL] in postings


I could not find exactly this- disabling MyCode URL in
postings. So instead chose to do the following.


Give the Registered users no links permission and set up group
promotion that all registered users that have 5 or more posts (or
something) will be moved to a group that have link posting
permission.


To do it first install the permission
plugin
. Now create a new group with link permission say
"Registered with link permission", copying its
permission from Registered group. Now go to this group and in the
last Extra tab enable link permission. Similarly remove link
permission from Registered group. Now setup group promotion
selecting Post Count and source group as Registered and Target
"Registered with link permission" and enter the count
you want the user to wait before allowing them to post links


Remove Home
page from Contact Details in User Profile


Since the website is shown as hyper link and could be misused
by spammers the Home page should be change to simple text URL. to
do it:


Go to Templates & Style -> Templates -> Default
Templates->Member Templates->


In the template 'member_profile', replace:


Code:

{$website}

with


Code:

{$memprofile['website']}

That is the website URL without the anchor tag.


This is thread


Make Profile
Visible only to registered users


 Just like in PHPBB make profiles invisible to bots and
guests. More about this here.

Most Common Steps in MyBB 1.6 Setup



I'm launching many forums and all I want is quick setup
with all commonly found settings in a good forum and
absolutely safe from spammers since I've least time to
moderate the forum. So I've mentioned here the
important customizations I've done before I make the
forum live. The following steps assume that you're
using the "default" style templates. So if I ever
need to quickly launch another MyBB forum then these steps
would help me to set it up quickly.

Add
Home/Rules Link in the Top Menu for all users

Go to
Templates & Style -> Templates -> Template Sets
-> Default Templates->Header Templates->Header
Add: <div class="menu"> <ul>
<li><a
href="{$mybb->settings['homeurl']}"><img
src="{$theme['imgdir']}/toplinks/home.gif"
alt="" title="Go to site Home page"
/>Home</a></li>
Note: Green text is
the added one. Also home.gif is new image copied in the
path: images/toplinks More in url: http://community.mybb.com/thread-96062.html

Set
Registration Defaults

While registration you most
likely will want to enable following two options:

Hide
your email from other members.


Notify
me by email when I receive a new Private
Message.

Those options are set to unchecked by
default during user registration which are present in
Account Preferences which you wanna set. Download this
plugin:
Registration Checkbox Configuration
to set them.
â†'Read the readme.txt
enable

Default Thread Subscription
Mode

By default it is set to "Do not
subscribe"
but you most likely want to change to
"Instant Email Notification". To do it: Go
to Templates & Styles -> Templates -> Template
Sets -> Default Templates ->Member Templates(expand
it)->member_register->Edit Template Fin the following
text: <td colspan="2"> <select
name="subscriptionmethod"
id="subscriptionmethod"> <option
value="0"
{$no_subscribe_selected}>{$lang->no_auto_subscribe}</option>
<option value="1"
{$no_email_subscribe_selected}>{$lang->no_email_subscribe}</option>
<option value="2"
{$instant_email_subscribe_selected}>{$lang->instant_email_subscribe}</option>
</select> </td>
Change add
selected="selected" to which option you want to
set default: <td colspan="2"> <select
name="subscriptionmethod"
id="subscriptionmethod"> <option
value="0"
{$no_subscribe_selected}>{$lang->no_auto_subscribe}</option>
<option value="1"
{$no_email_subscribe_selected}>{$lang->no_email_subscribe}</option>
<option value="2" selected="selected"
{$instant_email_subscribe_selected}>{$lang->instant_email_subscribe}</option>
</select> </td>


Install Google SEO
plugin

Google SEO
plugin will change urls to the title of your forum plus
many other features. For a noob like me check this on
"Enable Google SEO URLs" . Leave everything else
as defaults. Mind you - you need to read the documentation as for best results you'll need to copy paste robots.txt and httaccess.example file that comes along with it. Also enable the Sitemap generation option so that your forum will keep getting much quicker than if you choose not to enable it.

Create
Forum Rules Page


Use page manager
plugin and very easily create a custom page. While in Page
Manager configuration page just select/fill the first three
options/textboxes. Don't forget to set Use MyBB
Template
? to Yes. This will add the MyBB header in your
page. Now add the html code and then press "Save &
return to Listing". Now click "Page Manager"
in the left menu, then it'll show the url at which you
can see this page. Use this url anywhere you want.

The add this page link in the forum rules icon in the
top of your forum along with Home, Search etc. For this go
to Templates & Style -> Templates -> Template
Sets -> Default Templates -> header. I've added
line as in red.
<div id="container">

<a name="top" id="top"></a>

<div id="header">

<div class="logo"><a href="{$mybb->settings['bburl']}/index.php"><img src="{$theme['logo']}" alt="{$mybb->settings['bbname']}" title="{$mybb->settings['bbname']}" />  <span id="logotext"> {$mybb->settings['bbname']} </span>     </a></div>

<div class="menu">

<ul>

<li><a href="{$mybb->settings['homeurl']}"><img src="{$theme['imgdir']}/toplinks/home.gif" alt="" title="Go to site Home page" />Home</a></li>



<li><a href="{$mybb->settings['bburl']}/search.php"><img src="{$theme['imgdir']}/toplinks/search.gif" alt="" title="" />{$lang->toplinks_search}</a></li>

<li><a href="{$mybb->settings['bburl']}/memberlist.php"><img src="{$theme['imgdir']}/toplinks/memberlist.gif" alt="" title="" />{$lang->toplinks_memberlist}</a></li>

<li><a href="{$mybb->settings['bburl']}/calendar.php"><img src="{$theme['imgdir']}/toplinks/calendar.gif" alt="" title="" />{$lang->toplinks_calendar}</a></li>


<li><a
href="{$mybb->
settings['bburl']}/misc.php?page=forumrules"><img
src="{$theme['imgdir']}/toplinks/forumrules.jpg"
alt="" title="Click to
read this forum's usage rules"
/>
Forum
Rules</a></li>
<li><a href="{$mybb->settings['bburl']}/misc.php?action=help"><img src="{$theme['imgdir']}/toplinks/help.gif" alt="" title="" />{$lang->toplinks_help}</a></li>

</ul>

</div>




Set
the Footer text

If you wanna add the text like this
in the footer: Sitemap |
Terms of
Use
| Privacy
Policy
| About Us |
Contact
Us
then these are the steps: Go to Templates &
Style -> Templates(on the left) -> Template Sets->
Default Templates. Click on the Footer Templates, now it
expands and then click "footer". Here is my final
code: <hr class="hidden" /> <div
id="copyright"
style="text-align:center;margin:auto
auto">
<div >{$mybb->settings['homename']}
$copy_year(&copy;). All rights reserved. <br />
<a
href="{$mybb->settings['homeurl']}/sitemap">Sitemap</a>
| <a
href="{$mybb->settings['homeurl']}/terms">Terms
of Use</a> | <a
href="{$mybb->settings['homeurl']}/privacy">Privacy
Policy</a> | <a
href="{$mybb->settings['homeurl']}/about">About
Us</a> | <a
href="{$mybb->settings['homeurl']}/contact">Contact
Us</a>
<br /> </div>

<div
id="debug"><debugstuff></div>
<!-- MyBB is free software developed and maintained by a
volunteer community. It would be much appreciated by the
MyBB Group if you left the full copyright and "powered
by" notice intact, to show your support for MyBB. If
you choose to remove or modify the copyright below, you may
be refused support on the MyBB Community Forums. This is
free software, support us and we'll support you. -->
<br />{$lang->powered_by} <a
href="http://mybb.com/"
target="_blank">MyBB</a><br />
<!-- End powered by --> <br /> <br
class="clear" /> <!-- The following piece
of code allows MyBB to run scheduled tasks. DO NOT REMOVE
-->{$task_image}<!-- End task image code -->
{$auto_dst_detection} </div> </div>
Change
the settings in the green to your requirement.

Add a
favicon in MyBB

Following steps are copied from
this
thread
Make a favicon.ico from here: http://www.webscriptlab.com/favicongenerator.php
and upload this to your root of your forum. Now Go to: ACP
> Templates &Styles ->Templates > Default
Templates->Template Set->Ungrouped Templates >
headerinclude > and find;

Code:

{$stylesheets}
and add the following code just after that;

Code:

<link rel="shortcut icon"
href="favicon.ico" />

Setting cookiedomain &
cookiepath

I used this for my localhost:
cookiedomain: empty cookiepath:/ This may be wrong settings
but this even worked on the live site too. One person has
even contributed a tool
to find those settings automatically. Just keyin the url.

Change
Meta description of the index page

In your Styles
and Templates go to Index templates then click Index. Below
<title> tags and above {$headerinclude} add these two
lines:

<title>{$mybb->settings['bbname']}</title>
<meta
name="Keywords" content="Your
keywords" > <meta name="Description"
content="Your description" >

{$headerinclude}

Implement MyBB Anti-spam Techniques to
discourage spammers

Please read this blog to find
MyBB
anti-spam techniques
.

Disable Editing/Deleting posts


Disable Editing posts

Disable
editing of one's own post after some fixed time - say
600 minutes. For this go to
Configuration>Settings>Posting>Edit Time Limit

Disable Deletion of one's own
posts

Unfortunately we can't specify any time
limit after which to disallow deletion of posts/threads.
May be mod is needed but I could now find in search. All I
could find is to disallow users to delete one's own
posts and threads altogether: ACP>users and
groups>Groups>Edit User Group>Forum and
Posts>Editing/Deleting Options Now uncheck "Can
delete own posts" and "Can delete own
threads". Here is the related thread.

Watching for New Posts or
Replies

If it is a new forum, then it takes days to
get a post. You must be impatient and may be checking many
times daily. But here is the
extension
which can come to rescue to impatient person
like you.

Wrap Thread
Title in H1 tags

In MyBB threads, the thread title
isn't in H1 by default, you may not be aware of. For
best SEO guidelines it should be wrapped in H1. Click the
above link to see the thread. In short go to Go to Admin CP
> Templates & Style > Templates > Your
Template Set > Show Thread Templates > showthread.
Find: <div>
<strong>{$thread['threadprefix']}{$thread['subject']}</strong>
</div>
and replace it with: <div>
<h1
style="font-size:1.2em">{$thread['threadprefix']}{$thread['subject']}</h1>
</div>


Make Profile
Visible only to Registered Users


This feature come on by default in PHPBB. It is a
nuisance in new forums that spammers create account only to
put links in their profile. If they are not visible to
Guests then it won't be visible to Search Engines too.
Spammers will find no use in your forum!

Add
Google Analytics Code


You add the analytics code in the footer template.
Here
is
a plugin too.

To add in the footer template go to : ACP =>
Templates & Style => Templates => Expand your
Theme Template Set => Footer Templates => Footer.

Here is
the thread.

Adding
Subdomain in Analytics


This
site
provides easy configuration for adding analytics
code in your forum as a subdomain.

ProStats
Plugin


Use this plugin to show latest stats in the top of your
forum. It adds lot of dynamism to your forum. For new
starters it is must.

Change
Forum Logo


You can either replace the /images/logo.gif file with
your own, or visit AdminCP -> Themes -> Modify ->
<select theme> -> Board Logo

Change
Site Name in Nofollow/Dofollow Mybb Codes


I hope you've created custom MyBB codes for Dofollow
and Nofollow as specified in this thread

In that case go to each pattern and change the site name
if you're working on replica of another site:


Add Social Media links(Facebook/Google Plus etc)


I could not find any good mod to add those and I did myself. Here is what I did to add Facebook/Google Plus likes.


Add Ads in desired positions

There are many options/plugins to add the ads. My advertisements is nice and it allows you to add ads even within posts. Also read about how to show ads inside the first post only. For those using Adsense to adhere to their policies, I think easiest would be to add ad below the first ad using My Advertisements and then within the first post using postad-lite plugin as described.

Limit Number of PMs

Occasionally you'll find some mischievous person sending mass PM's to your members just about anything. And it happened with my forum when he/she send PM's to all of members. Fortunately we've this plugin and just set 2-3 as maximum PM's can be sent in a day.


Move sitename in the forum listing title to the end from beginning

Just go to Templates& Style->Default Templates->Forum Display Templates->forumdisplay change this line:

<title>{$mybb->settings['bbname']} - {$foruminfo['name']} </title>

to

<title>{$foruminfo['name']} - {$mybb->settings['bbname']}</title>


Disable mybb lite version to reduce duplication

Read disabling lite archive mode


How to keep Spammers away in PHPBB


While setting up my own forums using PHPBB, I searched in internet, how to prevent spammers creating logins in my forum. This is want I found. I'm currently using v3.0.8.

Enable Q/A Captcha

Almost all types of Captcha can be broken by spam bots like xrumer which daily get advanced. Best is to enable "Q/A Captcha" in PHPBB. To do it in PHPBB:
  • Login in into ACP
  • General tab
  • Board Configurations (in the left column)
  • Spambot countermeasures (just search this string in the page)
  • Press the Configure button(currently Q&A is disabled)
  • Press Add
  • Enter question & all the answers
  • Go back and select Q&A in Installed plugins on the page ending: i=captcha&mode=visual

Example Q/A's

If yours is localized traffic then you can ask what is the capital of your state etc. If your site is on a personality like Emile Coue then you can ask the name of personality on whose your site is dedicated.
There is one site I've seen who ask anti-spam code which is located on another support page. So the user will need to go to support page, copy the code and go back to the Q/A and fill the fixed anti-spam code.
Read more.

Blocking UTC-12 Registrations

Most of the bots try to register with UTC-12 time zone and no human being uses it. So block it by making changes in the code(find it here)

Disabling BBCODE URL

Disable BBCODE URL in posting as well as in signatures. This will act as deterrent to spammers. Go to General->Board Configuration->post settings->Allow links in posts/private messages. Set it to no. Similarly go to General->Board Configuration->Signature settings->Allow use of links in user signatures and set it to no.

Add nofollow in all links

Even if you allow BBCODE URL in the site, it's good to add nofollow with all links. This will discourage many spammers. Check out this link.

Disable Website link in Profile

In the default installation, only registered users will be able to see the profiles. So you are already safe. But if later to allow the unregistered public(including search engines) to view profiles, use this technique mentioned here to disable website link in the profile. This link discusses how to disable website in thru the theme template.

Unregistered User Group

By default when a user is in unregistered user group and initial posts are all moderated. So you are safe. Even if you want to remove all moderation for even first post then you can set specific permissions for this group.

Make Profile
Visible only to Registered Users


This feature come on by default in PHPBB. It is a nuisance
in new forums that spammers create account only to put links
in their profile. If they are not visible to Guests then it
won't be visible to Search Engines too. Spammers will
find no use in your forum!

Friday, July 15, 2011

Privacy Policy

Privacy Policy for http://mybbworld2011.blogspot.com/

If you require any more information or have any questions about our privacy policy, please feel free to contact us by email at bhasker1@hotmail.com.

At http://mybbworld2011.blogspot.com/, the privacy of our visitors is of extreme importance to us. This privacy policy document outlines the types of personal information is received and collected by http://mybbworld2011.blogspot.com/ and how it is used.

Log Files
Like many other Web sites, http://mybbworld2011.blogspot.com/ makes use of log files. The information inside the log files includes internet protocol ( IP ) addresses, type of browser, Internet Service Provider ( ISP ), date/time stamp, referring/exit pages, and number of clicks to analyze trends, administer the site, track user’s movement around the site, and gather demographic information. IP addresses, and other such information are not linked to any information that is personally identifiable.

Cookies and Web Beacons
http://mybbworld2011.blogspot.com/ does use cookies to store information about visitors preferences, record user-specific information on which pages the user access or visit, customize Web page content based on visitors browser type or other information that the visitor sends via their browser.

DoubleClick DART Cookie
.:: Google, as a third party vendor, uses cookies to serve ads on http://mybbworld2011.blogspot.com/.
.:: Google's use of the DART cookie enables it to serve ads to users based on their visit to http://mybbworld2011.blogspot.com/ and other sites on the Internet.
.:: Users may opt out of the use of the DART cookie by visiting the Google ad and content network privacy policy at the following URL - http://www.google.com/privacy_ads.html

Some of our advertising partners may use cookies and web beacons on our site. Our advertising partners include ....
Google Adsense
Chitika
Kontera


These third-party ad servers or ad networks use technology to the advertisements and links that appear on http://mybbworld2011.blogspot.com/ send directly to your browsers. They automatically receive your IP address when this occurs. Other technologies ( such as cookies, JavaScript, or Web Beacons ) may also be used by the third-party ad networks to measure the effectiveness of their advertisements and / or to personalize the advertising content that you see.

http://mybbworld2011.blogspot.com/ has no access to or control over these cookies that are used by third-party advertisers.

You should consult the respective privacy policies of these third-party ad servers for more detailed information on their practices as well as for instructions about how to opt-out of certain practices. http://mybbworld2011.blogspot.com/'s privacy policy does not apply to, and we cannot control the activities of, such other advertisers or web sites.

If you wish to disable cookies, you may do so through your individual browser options. More detailed information about cookie management with specific web browsers can be found at the browsers' respective websites.