<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Web Development Blog &#187; adsense</title>
	<atom:link href="http://www.web-development-blog.com/archives/tag/adsense/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.web-development-blog.com</link>
	<description>Web development tutorials, SEO articles and PHP script resources</description>
	<lastBuildDate>Sun, 25 Jul 2010 14:38:00 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>404 Errors: Report, monetize and analyse</title>
		<link>http://www.web-development-blog.com/archives/404-errors-report-monetize-and-analyse/</link>
		<comments>http://www.web-development-blog.com/archives/404-errors-report-monetize-and-analyse/#comments</comments>
		<pubDate>Mon, 14 Jun 2010 04:57:00 +0000</pubDate>
		<dc:creator>Olaf</dc:creator>
				<category><![CDATA[Google services]]></category>
		<category><![CDATA[PHP scripts]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[404 error]]></category>
		<category><![CDATA[adsense]]></category>
		<category><![CDATA[filter]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[google analytics]]></category>
		<category><![CDATA[site search]]></category>

		<guid isPermaLink="false">http://www.web-development-blog.com/?p=1136</guid>
		<description><![CDATA[After your websites getting more pages and links, the chance that a visitor will follow a dead link to your site exists. If a visitor is trying to access a page on your site, the server will report (normally) a 404 error. The response is by default some unfriendly page with some spare information about [...]]]></description>
			<content:encoded><![CDATA[<!--S-ButtonZ 1.1.5 Start--><!--S-ButtonZ 1.1.5 End--><p>After your websites getting more pages and links, the chance that a visitor will follow a dead link to your site exists. If a visitor is trying to access a page on your site, the server will report (normally) a 404 error. The response is by default some unfriendly page with some spare information about the error which let most visitors stop visiting your site. But using the 404 error the right way, you the site owner can collect important information like:</p>
<ul>
<li>Of course the broken link or URL</li>
<li>The HTTP_REFERER information where the dead link is available</li>
<li>How often people try to access the bad URL</li>
</ul>
<p>Using the right tools you&#8217;re able to turn 404 errors into a powerful resource:</p>
<ul>
<li>Provide a site search feature and let people search what they are looking</li>
<li>Add advertisements to your error page and start earning money</li>
<li>Learn about what people like to see on your site</li>
</ul>
<p>In this tutorial we will show you how-to:</p>
<ul>
<li>Create a dynamic error page using the Google Site search and Adsense content ads</li>
<li>Setup Google analytics to track 404 errors using a filter</li>
<li>Set the site search feature with Google Analytics to collect the search queries from your visitor</li>
</ul>
<p><span id="more-1136"></span></p>
<h3>Error reporting page</h3>
<p>With the Apache webserver it&#8217;s possible to use custom directives for your error script, place this code into your .htaccess file (place the file into the site root):<br />
<code><br />
ErrorDocument 400 /error.php?err=400<br />
ErrorDocument 401 /error.php?err=401<br />
ErrorDocument 403 /error.php?err=403<br />
ErrorDocument 404 /error.php?err=404<br />
ErrorDocument 500 /error.php?err=500<br />
</code><br />
We use for the custom error script the most common HTTP errors.<br />
Next we need to create a PHP script called error.php which can handle the different errors:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span>
<span style="color: #000088;">$errorNum</span> <span style="color: #339933;">=</span> <span style="color: #009900;">&#40;</span>int<span style="color: #009900;">&#41;</span><span style="color: #000088;">$_GET</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'err'</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$err_str</span> <span style="color: #339933;">=</span> <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span><span style="color: #cc66cc;">404</span><span style="color: #339933;">=&gt;</span><span style="color: #0000ff;">'Not Found'</span><span style="color: #339933;">,</span> <span style="color: #cc66cc;">400</span><span style="color: #339933;">=&gt;</span><span style="color: #0000ff;">'Bad Request'</span><span style="color: #339933;">,</span> <span style="color: #cc66cc;">401</span><span style="color: #339933;">=&gt;</span><span style="color: #0000ff;">'Unauthorized'</span><span style="color: #339933;">,</span> <span style="color: #cc66cc;">403</span><span style="color: #339933;">=&gt;</span><span style="color: #0000ff;">'Forbidden'</span><span style="color: #339933;">,</span> <span style="color: #cc66cc;">500</span><span style="color: #339933;">=&gt;</span><span style="color: #0000ff;">'Internal Server Error'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">'
&lt;html&gt;
&lt;head&gt;
&lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=utf-8&quot; /&gt;
&lt;title&gt;'</span><span style="color: #339933;">.</span><span style="color: #000088;">$err_str</span><span style="color: #009900;">&#91;</span><span style="color: #000088;">$errorNum</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">.</span><span style="color: #0000ff;">'&lt;/title&gt;
&lt;/head&gt;
&lt;body&gt;
&lt;h1&gt;An error occured: '</span><span style="color: #339933;">.</span><span style="color: #000088;">$err_str</span><span style="color: #009900;">&#91;</span><span style="color: #000088;">$errorNum</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">.</span><span style="color: #0000ff;">'&lt;/h1&gt;
&nbsp;
&lt;!-- place here your advertisement --&gt;
&nbsp;
&lt;!-- place here your Google analytics code --&gt;
&lt;/body&gt;
&lt;/html&gt;'</span><span style="color: #339933;">;</span>
<span style="color: #000000; font-weight: bold;">?&gt;</span></pre></div></div>

<p>This script will show the different errors and also some advertisement if you add the ad code. Don&#8217;t forget to add the GA code snippet.</p>
<h3>Track dead links in Google Analytics</h3>
<p>In case of a 404 error the page title on this custom error page will be &#8220;Not Found&#8221;. We use the page title as a filter in Google Analytics to track the page views. Create a new profile for the site you&#8217;re working on and add this filter:</p>
<p><a href="http://www.web-development-blog.com/wp-content/uploads/2010/06/Edit-Filter-Google-Analytics1.png" rel="shadowbox[post-1136];player=img;"><img src="http://www.web-development-blog.com/wp-content/uploads/2010/06/Edit-Filter-Google-Analytics1-300x178.png" alt="" title="Edit-Filter-Google-Analytics" width="300" height="178" class="alignnone size-medium wp-image-1144" /></a></p>
<h3>Adding Google Site Search to your 404 error page</h3>
<p>If you haven&#8217;t done yet, create a <a href="http://www.google.com/cse/manage/create">Google site search</a> for your website. Add only your own website to the list of searched sites and don&#8217;t search the entire web. Add your Google Adsense ID (section &#8220;Make Money&#8221;) and head to the section &#8220;Look and feel&#8221; and select the option Iframe. Choose a style for the search form / result and maybe you like to customize the style. Push now the button &#8220;Get code&#8221; (or enter the section &#8220;Get code&#8221; from the sidebar) and enter there the URL from your error page.<br />
Copy / paste the code for the search form and the results into the body section from your error page. Your completed page will look like:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span>
<span style="color: #000088;">$errorNum</span> <span style="color: #339933;">=</span> <span style="color: #009900;">&#40;</span>int<span style="color: #009900;">&#41;</span><span style="color: #000088;">$_GET</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'err'</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$err_str</span> <span style="color: #339933;">=</span> <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span><span style="color: #cc66cc;">404</span><span style="color: #339933;">=&gt;</span><span style="color: #0000ff;">'Not Found'</span><span style="color: #339933;">,</span> <span style="color: #cc66cc;">400</span><span style="color: #339933;">=&gt;</span><span style="color: #0000ff;">'Bad Request'</span><span style="color: #339933;">,</span> <span style="color: #cc66cc;">401</span><span style="color: #339933;">=&gt;</span><span style="color: #0000ff;">'Unauthorized'</span><span style="color: #339933;">,</span> <span style="color: #cc66cc;">403</span><span style="color: #339933;">=&gt;</span><span style="color: #0000ff;">'Forbidden'</span><span style="color: #339933;">,</span> <span style="color: #cc66cc;">500</span><span style="color: #339933;">=&gt;</span><span style="color: #0000ff;">'Internal Server Error'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">'
&lt;html&gt;
&lt;head&gt;
&lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=utf-8&quot; /&gt;
&lt;title&gt;'</span><span style="color: #339933;">.</span><span style="color: #000088;">$err_str</span><span style="color: #009900;">&#91;</span><span style="color: #000088;">$errorNum</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">.</span><span style="color: #0000ff;">'&lt;/title&gt;
&lt;/head&gt;
&lt;body&gt;
&lt;h1&gt;An error occured: '</span><span style="color: #339933;">.</span><span style="color: #000088;">$err_str</span><span style="color: #009900;">&#91;</span><span style="color: #000088;">$errorNum</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">.</span><span style="color: #0000ff;">'&lt;/h1&gt;
&nbsp;
&lt;form action=&quot;http://www.yourdomain.com/error.php&quot; id=&quot;cse-search-box&quot;&gt;
  &lt;div&gt;
    &lt;input type=&quot;hidden&quot; name=&quot;cx&quot; value=&quot;thisCodeIsProvidedByGoogleCSE&quot; /&gt;
    &lt;input type=&quot;hidden&quot; name=&quot;cof&quot; value=&quot;FORID:10&quot; /&gt;
    &lt;input type=&quot;hidden&quot; name=&quot;ie&quot; value=&quot;UTF-8&quot; /&gt;
    &lt;input type=&quot;text&quot; name=&quot;q&quot; size=&quot;31&quot; /&gt;
    &lt;input type=&quot;submit&quot; name=&quot;sa&quot; value=&quot;Zoeken&quot; /&gt;
  &lt;/div&gt;
&lt;/form&gt;
&lt;script type=&quot;text/javascript&quot; src=&quot;http://www.google.com/cse/brand?form=cse-search-box&amp;lang=en&quot;&gt;&lt;/script&gt;
&nbsp;
&lt;div id=&quot;cse-search-results&quot;&gt;&lt;/div&gt;
&lt;script type=&quot;text/javascript&quot;&gt;
  var googleSearchIframeName = &quot;cse-search-results&quot;;
  var googleSearchFormName = &quot;cse-search-box&quot;;
  var googleSearchFrameWidth = 600;
  var googleSearchDomain = &quot;www.google.com&quot;;
  var googleSearchPath = &quot;/cse&quot;;
&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot; src=&quot;http://www.google.com/afsonline/show_afs_search.js&quot;&gt;&lt;/script&gt;'</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #990000;">empty</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$_GET</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'q'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span> <span style="color: #666666; font-style: italic;">// show the ad only if there is no search</span>
	<span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">'
&lt;!-- place here your advertisement --&gt;'</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span> 
<span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">'
&lt;!-- place here your Google analytics code --&gt;
&lt;/body&gt;
&lt;/html&gt;'</span><span style="color: #339933;">;</span>
<span style="color: #000000; font-weight: bold;">?&gt;</span></pre></div></div>

<p>We placed the add code also into some <strong>IF</strong> clause, because there should not be another Google Adsense advertisement beside the Google ads from the result page.</p>
<h3>Enable site search tracking in Google Analytics</h3>
<p>The code for the error page is complete and we move to the last step: Tracking the site search queries from the error page. To do this we need to go in Google Analytics to the profile we created for the error page and click <strong>Edit</strong> (twice), check the setting <strong>Do Track Site Search</strong>, enter a &#8220;q&#8221; as the &#8220;Query Parameter&#8221; and click <strong>Safe Changes</strong>.</p>
<p>This error page is very basic and you need add your sites <a href="http://www.all4yourwebsite.com/website_templates.php">web template</a> to make it complete. If you like this tutorial and you have used the code on your own site please share the URL to your new or updated error page. Even if you don&#8217;t like to use the code from this page, we advice to track the errors and also the site search queries from your visitors. If you have questions or comments please post them below.<br />
<strong>Similar Posts:</strong>
<ul class="similar-posts">
<li><a href="http://www.web-development-blog.com/archives/top-your-sales-with-google-commerce-search/" rel="bookmark" title="November 29, 2009">Top your sales with Google Commerce Search</a></li>
<li><a href="http://www.web-development-blog.com/archives/new-search-options-but-unrelated-results-in-google-blog-search/" rel="bookmark" title="October 1, 2009">New Search Options but unrelated results in Google Blog Search</a></li>
<li><a href="http://www.web-development-blog.com/archives/create-custom-backups-from-your-website-using-curl/" rel="bookmark" title="July 30, 2008">Create custom backups from your website using cURL</a></li>
</ul>
<p><!-- Similar Posts took 3.696 ms --></p>
<div style="clear:both;">&nbsp;</div>]]></content:encoded>
			<wfw:commentRss>http://www.web-development-blog.com/archives/404-errors-report-monetize-and-analyse/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Adsense for WordPress &#8211; 5 Plugins reviewed</title>
		<link>http://www.web-development-blog.com/archives/adsense-for-wordpress-5-plugins-reviewed/</link>
		<comments>http://www.web-development-blog.com/archives/adsense-for-wordpress-5-plugins-reviewed/#comments</comments>
		<pubDate>Mon, 30 Nov 2009 05:41:41 +0000</pubDate>
		<dc:creator>finalwebsites.com</dc:creator>
				<category><![CDATA[Advertising]]></category>
		<category><![CDATA[Reviews]]></category>
		<category><![CDATA[ad formats]]></category>
		<category><![CDATA[adsense]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[revenue share]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.web-development-blog.com/?p=680</guid>
		<description><![CDATA[If you try to monetize your blog with Google Adsense you might have noticed that this is not an easy job. Blog reader are very focused on reading the content and writing comments. Many readers will not visit your site since they read your blogs in a RSS reader. That will say that we need [...]]]></description>
			<content:encoded><![CDATA[<!--S-ButtonZ 1.1.5 Start--><!--S-ButtonZ 1.1.5 End--><p>If you try to monetize your blog with Google Adsense you might have noticed that this is not an easy job. Blog reader are very focused on reading the content and writing comments. Many readers will not visit your site since they read your blogs in a RSS reader. That will say that we need a very flexible Adsense plugin to place our ads on the right place in our blogs articles. Some of you will say &#8220;I place them always on place A, B and C&#8221;, but I&#8217;m sure that this will not work all the time.</p>
<p>We need a plugin that has the following features:</p>
<ul>
<li> Single blog post placements</li>
<li> Unlimited number of ad layouts</li>
<li> Easy to integrate with each blog post using tags</li>
<li> <strong>NO revenue share with the plugin author!</strong></li>
</ul>
<p>Additionally we like to see features like:</p>
<ul>
<li> IP-based filter functions</li>
<li> Alternative ads for the IP filter</li>
<li> Using ad code from other networks than Google Adsense</li>
</ul>
<p>For this review we selected the 5 WordPress plugins because they have recent updates (active projects) and many features:<span id="more-680"></span></p>
<h3><a rel="nofollow" href="http://wordpress.org/extend/plugins/adsense-daemon/">Adsense Daemon</a></h3>
<p>This plugin supports three different Adsense layouts. All configured ads are placed on all your blog pages (single view). For each layout you have the control (7 options) where each ad will show up. The plugin has basic features and acts very static. A good plugin if you don&#8217;t need so much functions.</p>
<h3><a rel="nofollow" href="http://wordpress.org/extend/plugins/adsense-integrator/">AdSense Integrator</a></h3>
<p>If you need a more flexible plugin, you should check this Adsense plugin for WordPress. It has all the features we mentioned above and more: Default settings for automatic placement, full control about which pages have to show the automatic placed ads and a CSS margin for some better ad placement. Revenue share is enabled by default, but you can change this setting (if you don&#8217;t like to support the developer with 4% of all your ad impressions).</p>
<p>Everything seems working, except the single ad placement <img src='http://www.web-development-blog.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /><br />
With every placement the &#8220;initial&#8221; ad is placed too, maybe a recent bug? I posted this to the WordPress forum and will post the result here. Anyway a good plugin if this bug is fixed.</p>
<h3><a rel="nofollow" href="http://wordpress.org/extend/plugins/all-in-one-adsense-and-ypn/">All in One Adsense and YPN!</a></h3>
<p>Great plugin idea on how to configure your blog using Google Adsense or  YPN (Yahoo Network). While the configuration options are very comfortable is this plugin less flexible. All settings are site-wide and valid for all ad formats.</p>
<p>The plugin offers an option to use multiple ad formats, a random function will show them all. I don&#8217;t think that this really works (maybe for different colors?). There is an option to disable ads for single pages, but this will disable all ads on that single page. While this plugin looks really good, I will not use it.</p>
<h3 title="Easy AdSense Redux V2.82"><a rel="nofollow" href="http://wordpress.org/extend/plugins/easy-adsense-redux/">Easy AdSense</a></h3>
<p>If you check the WordPress plugin page you should think that this is a great plugin, but I deactivated the plugin very quickly. At the moment that the plugin was activated, it shows already the Adsense ads from the plugin author and also at least one link to his website on each of your blog pages. I need to mention that I choose the plugin because according the author, is this version more advanced and <strong>doesn&#8217;t</strong> include a revenue share. The plugin has a lot of functions to configure the different products like Adsense for search and feeds and of course the content and link units. I&#8217;m sure you can treat the setting that way to get a static ad setup for your site, but I don&#8217;t like a plugin that includes code in my site without permission and that&#8217;s the reason why my advice is to NOT using this plugin. You never know what a future version will do with your website!</p>
<h3><a rel="nofollow" href="http://wordpress.org/extend/plugins/quick-adsense/">Quick Adsense</a></h3>
<p>Finally a plugin that has all important features and works for 100%! Using this plugin you have all the options you need for your blog site: Static placements for your whole website, custom placements for your posts using simple snippets or just disable ads for a single post. This plugin has more features:</p>
<ul>
<li>Add your Adsense code to your blog posts and your sidebar widgets, all settings are controlled through a single settings page.</li>
<li>You don&#8217;t need to remember the tag names, just place them using quick tags in the HTML mode of your editor.</li>
<li>There is space for 10 different ad layouts for the blog pages and 3 in your sidebar.</li>
<li>There are no strings attached will say no revenue share or unwanted links, the only thing the author asks is to place a link or button.</li>
</ul>
<p>There is one feature missing; the IP filter with the option to show alternative ads. Since this feature is very special and should work together with a GEO location script, I think I can miss this feature for now.</p>
<p>At the end I must say I go for the Quick Adsense plugin, because I need a plugin that makes it possible to place the ads on locations I choose while writing a blog post. The Adsense Integrator is also a good plugin, but because of the bug in the current version it&#8217;s not useful for my website.<strong>Similar Posts:</strong>
<ul class="similar-posts">
<li><a href="http://www.web-development-blog.com/archives/adsense-for-domains-just-another-domain-parking-service/" rel="bookmark" title="February 22, 2009">AdSense for Domains, just another Domain Parking Service?</a></li>
<li><a href="http://www.web-development-blog.com/archives/useful-plugins-for-your-bbpress-forum/" rel="bookmark" title="August 29, 2009">Useful Plugins for your bbpress Forum</a></li>
<li><a href="http://www.web-development-blog.com/archives/dont-let-google-run-your-site/" rel="bookmark" title="December 30, 2006">Don&#8217;t let Google run your site</a></li>
</ul>
<p><!-- Similar Posts took 3.645 ms --></p>
<div style="clear:both;">&nbsp;</div>]]></content:encoded>
			<wfw:commentRss>http://www.web-development-blog.com/archives/adsense-for-wordpress-5-plugins-reviewed/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>AdSense for Domains, just another Domain Parking Service?</title>
		<link>http://www.web-development-blog.com/archives/adsense-for-domains-just-another-domain-parking-service/</link>
		<comments>http://www.web-development-blog.com/archives/adsense-for-domains-just-another-domain-parking-service/#comments</comments>
		<pubDate>Sun, 22 Feb 2009 19:44:17 +0000</pubDate>
		<dc:creator>Olaf</dc:creator>
				<category><![CDATA[Advertising]]></category>
		<category><![CDATA[Google services]]></category>
		<category><![CDATA[adsense]]></category>
		<category><![CDATA[dns]]></category>
		<category><![CDATA[domain names]]></category>
		<category><![CDATA[domain parking]]></category>
		<category><![CDATA[traffic]]></category>

		<guid isPermaLink="false">http://www.web-development-blog.com/?p=245</guid>
		<description><![CDATA[Actually &#8220;Adsense for domains&#8221; is just like most of the other domain parking services. So why should we park our unused domain names with Google? For a long time I never used any domain parking services because I didn&#8217;t believed in that product. I checked the first time &#8220;Revenue Parking&#8221; provided by my domain registration [...]]]></description>
			<content:encoded><![CDATA[<!--S-ButtonZ 1.1.5 Start--><!--S-ButtonZ 1.1.5 End--><blockquote><p>Actually &#8220;Adsense for domains&#8221; is just like most of the other domain parking services. So why should we park our unused domain names with Google?</p></blockquote>
<p>For a long time I never used any domain parking services because I didn&#8217;t believed in that product. I checked the first time &#8220;Revenue Parking&#8221; provided by my domain registration provider Dynadot, after several month I was not very satisfied with that product. Another point to not use that kind of service was that you need host a domain name with the same provider if you want to their domain parking service.</p>
<p><a href="http://www.kqzyfj.com/click-2408474-10384684" target="_top" rel="nofollow"><br />
<img src="http://www.awltovhc.com/image-2408474-10384684" width="468" height="60" alt="Resell Domains for GoDaddy.com " border="0"/></a></p>
<p>Several weeks ago I read on the Adsense blog about this new service and forget it already because the &#8220;Adsense for domains&#8221; was not yet available in my account. By accident I noticed the new link on my Adsense setup page and started to plat a little with this new product.</p>
<h3>Add domain names and configuration</h3>
<p>Adding domain names is quite simple just add your name together with the language and in the next step you get the information for the DNS settings. As with most other parking services you don&#8217;t need to change the name server entries. You need to enter at least 4 A-records and one CNAME for the &#8220;www&#8221; sub-domain. The CNAME holds also your Adsense Publisher ID which should be used for the validation that a domain belongs to your Adsense account. <span id="more-245"></span>For the DNS configuration you will find help files with information how to change the DNS with the bigger domain name provider. I created one account on my own server and add other domain names as domain pointer. This way I&#8217;m able to copy past the information directly into &#8220;named&#8221; data base files.</p>

<a href='http://www.web-development-blog.com/wp-content/uploads/2009/02/setup.jpg' rel='shadowbox[album-245];player=img;' title='setup'><img width="150" height="150" src="http://www.web-development-blog.com/wp-content/uploads/2009/02/setup-150x150.jpg" class="attachment-thumbnail" alt="setup" title="setup" /></a>
<a href='http://www.web-development-blog.com/wp-content/uploads/2009/02/style.jpg' rel='shadowbox[album-245];player=img;' title='style'><img width="150" height="150" src="http://www.web-development-blog.com/wp-content/uploads/2009/02/style-150x150.jpg" class="attachment-thumbnail" alt="style" title="style" /></a>
<a href='http://www.web-development-blog.com/wp-content/uploads/2009/02/config.jpg' rel='shadowbox[album-245];player=img;' title='config'><img width="150" height="150" src="http://www.web-development-blog.com/wp-content/uploads/2009/02/config-150x150.jpg" class="attachment-thumbnail" alt="config" title="config" /></a>
<a href='http://www.web-development-blog.com/wp-content/uploads/2009/02/report.jpg' rel='shadowbox[album-245];player=img;' title='report'><img width="150" height="150" src="http://www.web-development-blog.com/wp-content/uploads/2009/02/report-150x150.jpg" class="attachment-thumbnail" alt="report" title="report" /></a>

<h3>Validation process and add styles</h3>
<p>After you add the domain to your account and the DNS configuration is done it needs a few hours until the validation is done. At the moment you need to check the your account by yourself and if needed to re-validate there is an option too. After validation you&#8217;re able to add channels to your parked domain name: &#8220;I suggest to do that other wise you didn&#8217;t know which domain performs very well and which not&#8221;. Tray also to enter some keywords to your domain name and maybe you like to change the style from your parking page. Right parking pages are not very &#8220;stylish&#8221;, but maybe some custom colors will let the visitor generate more page views.</p>
<h3>Reports and earnings</h3>
<p>&#8220;Adsense for domains&#8221; is  (great) CPM based advertising. It look to me as for regular ads, that some domain names perform better some than another. Just like with content related ads Google will show ads with higher and lower revenue. The reports are the same as for the other ads (content, search&#8230;) and doesn&#8217;t need any explanation. At the moment I can&#8217;t see if impressions from the landing page will earn more or less than impressions from other result pages. There is no information about the how many clicks are generated.</p>
<h3>Rules for publishers</h3>
<p>There are some new rules for the &#8220;domain park&#8221; publisher, since the earnings are CPM based it&#8217;s not allowed to redirect traffic to that page, advertising for parked domain isn&#8217;t allowed&#8230;</p>
<p>I use the Adsense product for names which are not used anymore and still have some traffic. I noticed that some domain perform much better than earlier with content ads.</p>
<blockquote><p>What is your experience with &#8220;Adsense for domains&#8221;?</p></blockquote>
<p><strong>Similar Posts:</strong>
<ul class="similar-posts">
<li><a href="http://www.web-development-blog.com/archives/sponsored-posting-useful-domain-name-tools/" rel="bookmark" title="March 28, 2007">Domain Name Research and Monetization Tools</a></li>
<li><a href="http://www.web-development-blog.com/archives/registering-a-domain-name-important-considerations/" rel="bookmark" title="September 10, 2007">Registering a domain name &#8211; important considerations</a></li>
<li><a href="http://www.web-development-blog.com/archives/adsense-for-wordpress-5-plugins-reviewed/" rel="bookmark" title="November 30, 2009">Adsense for WordPress &#8211; 5 Plugins reviewed</a></li>
</ul>
<p><!-- Similar Posts took 3.524 ms --></p>
<div style="clear:both;">&nbsp;</div>]]></content:encoded>
			<wfw:commentRss>http://www.web-development-blog.com/archives/adsense-for-domains-just-another-domain-parking-service/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>Some nice Google Adsense updates</title>
		<link>http://www.web-development-blog.com/archives/some-nice-google-adsense-updates/</link>
		<comments>http://www.web-development-blog.com/archives/some-nice-google-adsense-updates/#comments</comments>
		<pubDate>Thu, 13 Dec 2007 21:12:03 +0000</pubDate>
		<dc:creator>Olaf</dc:creator>
				<category><![CDATA[Advertising]]></category>
		<category><![CDATA[Google services]]></category>
		<category><![CDATA[adsense]]></category>
		<category><![CDATA[google]]></category>

		<guid isPermaLink="false">http://www.web-development-blog.com/archives/some-nice-google-adsense-updates/</guid>
		<description><![CDATA[Several weeks ago a several Adsense publisher has complains about recent modifications in the click behavior for Adsense ads. While an Internet visitor was able before to click the whole ad area to reach the target page, is the new ad only clickable on the ad title and the URL. This modification was done by [...]]]></description>
			<content:encoded><![CDATA[<!--S-ButtonZ 1.1.5 Start--><!--S-ButtonZ 1.1.5 End--><p>Several weeks ago a several Adsense publisher has complains about recent modifications in the click behavior for Adsense ads. While an Internet visitor was able before to click the whole ad area to reach the target page, is the new ad only clickable on the ad title and the URL. This modification was done by Google to ban unwanted clicks for their advertisers. Afterwards I think that most of the publisher doesn&#8217;t have noticed a change in their earnings (maybe a publisher who need those unwanted clicks to earn money).  <img src='http://www.web-development-blog.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<blockquote><p><strong>Enough about this, there are new features!</strong></p></blockquote>
<h3>Managing Ads via the Adsense control panel</h3>
<p>Since a few days it&#8217;s possible  to use this great feature to maintain existing ad code without changing your HTML. Just create a first (new) ad zone and place some standard Adsense code into your HTML (yeah I&#8217;m talking about an account from a publisher in Europe). If you need to change the colors, ad dimensions or ad channel on a later moment, just do it within your Adsense control panel. This is <strong>really</strong> a time safer! This way it&#8217;s easy to change for example the color for multiple pages from your website with just a few mouse clicks.<span id="more-124"></span></p>
<h3>Ad container with dynamic controls</h3>
<p>Maybe some of you have already noticed these new type of ads:</p>
<ul>
<li> Ad banners with the more or related links to show the &#8220;other&#8221; ads</li>
<li> smaller ad boxes with a dynamic &#8220;flashy scroller&#8221; to show more ads without reloading the page</li>
<li> &#8230; and maybe there are more?</li>
</ul>
<p>Sure this feature is only useful for AD-surfer (I hope there are some of them) and maybe this new links/navigation elements makes some people curious.</p>
<h3>Video units? And why not (ad free) YouTube Videos?</h3>
<p>A few weeks ago the Video ad format was added to my Adsense account, I played with it for a while but skipped this format for the next time.<br />
How does it work? People can watch the videos within the theme you have selected for your video ad and MAYBE the visitor will click some (tiny) ad which is placed above/below the movie and YOU (the publisher) became rich. <img src='http://www.web-development-blog.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
<p>Sorry, but these ads make no sense (to me), the video player is really big and will take on some of my websites ~50% from the content space. All this afford to have (maybe) some  clicks from a banner with one or two small ads? This clicks need to be very high priced because they could give your website the imago from some MFA site.</p>
<p>People from Adsense thanks for the &#8220;Manage ads&#8221; feature, I like to see more of them!<strong>Similar Posts:</strong>
<ul class="similar-posts">
<li><a href="http://www.web-development-blog.com/archives/adsense-for-domains-just-another-domain-parking-service/" rel="bookmark" title="February 22, 2009">AdSense for Domains, just another Domain Parking Service?</a></li>
<li><a href="http://www.web-development-blog.com/archives/google-adsense-referrals-20-or-continue-with-ppc-ads/" rel="bookmark" title="July 3, 2007">Google Adsense Referrals 2.0 or continue with PPC ads?</a></li>
<li><a href="http://www.web-development-blog.com/archives/in-text-advertisements-publisher-review/" rel="bookmark" title="September 13, 2008">In-Text Advertisements: Publisher Review</a></li>
</ul>
<p><!-- Similar Posts took 3.576 ms --></p>
<div style="clear:both;">&nbsp;</div>]]></content:encoded>
			<wfw:commentRss>http://www.web-development-blog.com/archives/some-nice-google-adsense-updates/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Don&#8217;t let Google run your site</title>
		<link>http://www.web-development-blog.com/archives/dont-let-google-run-your-site/</link>
		<comments>http://www.web-development-blog.com/archives/dont-let-google-run-your-site/#comments</comments>
		<pubDate>Sun, 31 Dec 2006 03:41:18 +0000</pubDate>
		<dc:creator>Olaf</dc:creator>
				<category><![CDATA[Advertising]]></category>
		<category><![CDATA[Google services]]></category>
		<category><![CDATA[adsense]]></category>
		<category><![CDATA[contextual]]></category>
		<category><![CDATA[webmasters]]></category>

		<guid isPermaLink="false">http://www.web-development-blog.com/archives/dont-let-google-run-your-site/</guid>
		<description><![CDATA[In the quest for monetizing their website, webmasters sometimes forget the base fact that they own the site and not Google Adsense! So, often you see webmasters ask questions like &#8216;Whether Adsense TOS allows linking to such and such site or whether the TOS allows pictures next to ads and so on and so forth. [...]]]></description>
			<content:encoded><![CDATA[<!--S-ButtonZ 1.1.5 Start--><!--S-ButtonZ 1.1.5 End--><p>In the quest for monetizing their website, webmasters sometimes forget the base fact that they own the site and not Google Adsense! So, often you see webmasters ask questions like &#8216;Whether Adsense TOS allows linking to such and such site or whether the TOS allows pictures next to ads and so on and so forth. As long as the queries are related to simple ad placement it may be OK but more and more webmasters are getting influenced by the TOS and ad returns that they are willing to modify the content itself. This cannot be good news for the internet since finally it is the quality of information that matters along with the way it is presented. If you are good at presenting your knowledge in a certain way (say, first person), then you should continue to do so, irrespective of whether Google Adsense representatives likes it or not.<span id="more-79"></span></p>
<p>The most common reason for such an attitude would be the so-called lack of alternatives. We would rather term it as lack of knowledge of alternatives. There are other PPC programs available but their is no need to look at only contextual programs. There are a whole lot of other monetizing avenues if only you know where to look, f.e. sell directly advertisements on your site. Plus there are so many different affiliate programs around to choose from.</p>
<p>All these can work only if your content is useful enough. Once you have quality content, you will not have to depend on Adsense for your daily income. Spread out your portfolio and you will have a better chance of maximising returns. In short use Adsense on your site; don&#8217;t run your site for Adsense.<strong>Similar Posts:</strong>
<ul class="similar-posts">
<li><a href="http://www.web-development-blog.com/archives/google-adsense-referrals-20-or-continue-with-ppc-ads/" rel="bookmark" title="July 3, 2007">Google Adsense Referrals 2.0 or continue with PPC ads?</a></li>
<li><a href="http://www.web-development-blog.com/archives/google-has-cutted-my-pagerank-too/" rel="bookmark" title="October 24, 2007">Yes, Google has &#8220;cutted&#8221; my PageRank too!</a></li>
<li><a href="http://www.web-development-blog.com/archives/adsense-for-wordpress-5-plugins-reviewed/" rel="bookmark" title="November 30, 2009">Adsense for WordPress &#8211; 5 Plugins reviewed</a></li>
</ul>
<p><!-- Similar Posts took 3.353 ms --></p>
<div style="clear:both;">&nbsp;</div>]]></content:encoded>
			<wfw:commentRss>http://www.web-development-blog.com/archives/dont-let-google-run-your-site/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>
<!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->