<?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"
	>

<channel>
	<title>B-Scan.net</title>
	<atom:link href="http://www.b-scan.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.b-scan.net</link>
	<description>Web developer's homepage</description>
	<pubDate>Wed, 10 Jun 2009 14:56:40 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.5</generator>
	<language>en</language>
			<item>
		<title>Referrer Click-through MOD for Prosper202</title>
		<link>http://www.b-scan.net/blog/95-referer-click-through-mod-for-prosper202/</link>
		<comments>http://www.b-scan.net/blog/95-referer-click-through-mod-for-prosper202/#comments</comments>
		<pubDate>Wed, 10 Jun 2009 14:42:31 +0000</pubDate>
		<dc:creator>B-Scan</dc:creator>
		
		<category><![CDATA[PHP]]></category>

		<category><![CDATA[affiliate]]></category>

		<category><![CDATA[ctr]]></category>

		<category><![CDATA[mod]]></category>

		<category><![CDATA[prosper202]]></category>

		<category><![CDATA[tracking]]></category>

		<guid isPermaLink="false">http://www.b-scan.net/?p=95</guid>
		<description><![CDATA[Through Richard&#8217;s blog I stumbled upon on MOD for keywords and landing pages click-through for Prosper202.
That was part that was absolutely missing in that open source affiliate tracking software. Since Jasper made such a great contribution to open source community I wanted to also help because Prosper202 is software I use.
So here you can download [...]]]></description>
			<content:encoded><![CDATA[<p>Through <a href="http://www.richardbonner.net/lp-clickthrough-for-text-adskeywords/">Richard&#8217;s</a> blog I stumbled upon on MOD for keywords and landing pages click-through for <a href="http://prosper.tracking202.com/apps/">Prosper202</a>.</p>
<p>That was part that was absolutely missing in that open source affiliate tracking software. Since <a href="http://nerdyaffiliate.com/affiliate-marketing/prosper202-mod-lp-clickthrough-for-text-adskeywords">Jasper</a> made such a great contribution to open source community I wanted to also help because Prosper202 is software I use.</p>
<p>So <a href="/referermodforprosper202.zip">here you can download</a> MOD for Prosper202 which will show you referrers CTR.</p>
<p>NOTE: To install this MOD first you need to have installed<br />
<a href="http://nerdyaffiliate.com/affiliate-marketing/prosper202-mod-lp-clickthrough-for-text-adskeywords">Prosper202 Mod: LP Clickthrough for Text Ads/Keywords</a>!</p>
<h3>Installation</h3>
<p>1. Run this SQL query:</p>

<div class="wp_syntax"><div class="code"><pre class="sql"><span style="color: #993333; font-weight: bold;">CREATE</span> <span style="color: #993333; font-weight: bold;">TABLE</span> <span style="color: #993333; font-weight: bold;">IF</span> <span style="color: #993333; font-weight: bold;">NOT</span> <span style="color: #993333; font-weight: bold;">EXISTS</span> <span style="color: #ff0000;">`202_sort_referers_lpctr`</span> <span style="color: #66cc66;">&#40;</span>
  <span style="color: #ff0000;">`sort_referer_id`</span> int<span style="color: #66cc66;">&#40;</span><span style="color: #cc66cc;">10</span><span style="color: #66cc66;">&#41;</span> <span style="color: #993333; font-weight: bold;">UNSIGNED</span> <span style="color: #993333; font-weight: bold;">NOT</span> <span style="color: #993333; font-weight: bold;">NULL</span> <span style="color: #993333; font-weight: bold;">AUTO_INCREMENT</span><span style="color: #66cc66;">,</span>
  <span style="color: #ff0000;">`user_id`</span> mediumint<span style="color: #66cc66;">&#40;</span><span style="color: #cc66cc;">8</span><span style="color: #66cc66;">&#41;</span> <span style="color: #993333; font-weight: bold;">UNSIGNED</span> <span style="color: #993333; font-weight: bold;">NOT</span> <span style="color: #993333; font-weight: bold;">NULL</span><span style="color: #66cc66;">,</span>
  <span style="color: #ff0000;">`referer_id`</span> bigint<span style="color: #66cc66;">&#40;</span><span style="color: #cc66cc;">20</span><span style="color: #66cc66;">&#41;</span> <span style="color: #993333; font-weight: bold;">UNSIGNED</span> <span style="color: #993333; font-weight: bold;">NOT</span> <span style="color: #993333; font-weight: bold;">NULL</span><span style="color: #66cc66;">,</span>
  <span style="color: #ff0000;">`sort_referer_clicks`</span> mediumint<span style="color: #66cc66;">&#40;</span><span style="color: #cc66cc;">8</span><span style="color: #66cc66;">&#41;</span> <span style="color: #993333; font-weight: bold;">UNSIGNED</span> <span style="color: #993333; font-weight: bold;">NOT</span> <span style="color: #993333; font-weight: bold;">NULL</span><span style="color: #66cc66;">,</span>
  <span style="color: #ff0000;">`sort_referer_click_throughs`</span> mediumint<span style="color: #66cc66;">&#40;</span><span style="color: #cc66cc;">8</span><span style="color: #66cc66;">&#41;</span> <span style="color: #993333; font-weight: bold;">UNSIGNED</span> <span style="color: #993333; font-weight: bold;">NOT</span> <span style="color: #993333; font-weight: bold;">NULL</span><span style="color: #66cc66;">,</span>
  <span style="color: #ff0000;">`sort_referer_ctr`</span> decimal<span style="color: #66cc66;">&#40;</span><span style="color: #cc66cc;">10</span><span style="color: #66cc66;">,</span><span style="color: #cc66cc;">2</span><span style="color: #66cc66;">&#41;</span> <span style="color: #993333; font-weight: bold;">NOT</span> <span style="color: #993333; font-weight: bold;">NULL</span><span style="color: #66cc66;">,</span>
  <span style="color: #ff0000;">`sort_referer_leads`</span> mediumint<span style="color: #66cc66;">&#40;</span><span style="color: #cc66cc;">8</span><span style="color: #66cc66;">&#41;</span> <span style="color: #993333; font-weight: bold;">UNSIGNED</span> <span style="color: #993333; font-weight: bold;">NOT</span> <span style="color: #993333; font-weight: bold;">NULL</span><span style="color: #66cc66;">,</span>
  <span style="color: #ff0000;">`sort_referer_su_ratio`</span> decimal<span style="color: #66cc66;">&#40;</span><span style="color: #cc66cc;">10</span><span style="color: #66cc66;">,</span><span style="color: #cc66cc;">2</span><span style="color: #66cc66;">&#41;</span> <span style="color: #993333; font-weight: bold;">NOT</span> <span style="color: #993333; font-weight: bold;">NULL</span><span style="color: #66cc66;">,</span>
  <span style="color: #ff0000;">`sort_referer_payout`</span> decimal<span style="color: #66cc66;">&#40;</span><span style="color: #cc66cc;">6</span><span style="color: #66cc66;">,</span><span style="color: #cc66cc;">2</span><span style="color: #66cc66;">&#41;</span> <span style="color: #993333; font-weight: bold;">NOT</span> <span style="color: #993333; font-weight: bold;">NULL</span><span style="color: #66cc66;">,</span>
  <span style="color: #ff0000;">`sort_referer_epc`</span> decimal<span style="color: #66cc66;">&#40;</span><span style="color: #cc66cc;">10</span><span style="color: #66cc66;">,</span><span style="color: #cc66cc;">2</span><span style="color: #66cc66;">&#41;</span> <span style="color: #993333; font-weight: bold;">NOT</span> <span style="color: #993333; font-weight: bold;">NULL</span><span style="color: #66cc66;">,</span>
  <span style="color: #ff0000;">`sort_referer_avg_cpc`</span> decimal<span style="color: #66cc66;">&#40;</span><span style="color: #cc66cc;">7</span><span style="color: #66cc66;">,</span><span style="color: #cc66cc;">5</span><span style="color: #66cc66;">&#41;</span> <span style="color: #993333; font-weight: bold;">NOT</span> <span style="color: #993333; font-weight: bold;">NULL</span><span style="color: #66cc66;">,</span>
  <span style="color: #ff0000;">`sort_referer_income`</span> decimal<span style="color: #66cc66;">&#40;</span><span style="color: #cc66cc;">10</span><span style="color: #66cc66;">,</span><span style="color: #cc66cc;">2</span><span style="color: #66cc66;">&#41;</span> <span style="color: #993333; font-weight: bold;">NOT</span> <span style="color: #993333; font-weight: bold;">NULL</span><span style="color: #66cc66;">,</span>
  <span style="color: #ff0000;">`sort_referer_cost`</span> decimal<span style="color: #66cc66;">&#40;</span><span style="color: #cc66cc;">13</span><span style="color: #66cc66;">,</span><span style="color: #cc66cc;">5</span><span style="color: #66cc66;">&#41;</span> <span style="color: #993333; font-weight: bold;">NOT</span> <span style="color: #993333; font-weight: bold;">NULL</span><span style="color: #66cc66;">,</span>
  <span style="color: #ff0000;">`sort_referer_net`</span> decimal<span style="color: #66cc66;">&#40;</span><span style="color: #cc66cc;">13</span><span style="color: #66cc66;">,</span><span style="color: #cc66cc;">5</span><span style="color: #66cc66;">&#41;</span> <span style="color: #993333; font-weight: bold;">NOT</span> <span style="color: #993333; font-weight: bold;">NULL</span><span style="color: #66cc66;">,</span>
  <span style="color: #ff0000;">`sort_referer_roi`</span> decimal<span style="color: #66cc66;">&#40;</span><span style="color: #cc66cc;">10</span><span style="color: #66cc66;">,</span><span style="color: #cc66cc;">2</span><span style="color: #66cc66;">&#41;</span> <span style="color: #993333; font-weight: bold;">NOT</span> <span style="color: #993333; font-weight: bold;">NULL</span><span style="color: #66cc66;">,</span>
  <span style="color: #993333; font-weight: bold;">PRIMARY</span> <span style="color: #993333; font-weight: bold;">KEY</span>  <span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">`sort_referer_id`</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">,</span>
  <span style="color: #993333; font-weight: bold;">KEY</span> <span style="color: #ff0000;">`user_id`</span> <span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">`user_id`</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">,</span>
  <span style="color: #993333; font-weight: bold;">KEY</span> <span style="color: #ff0000;">`keyword_id`</span> <span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">`referer_id`</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">,</span>
  <span style="color: #993333; font-weight: bold;">KEY</span> <span style="color: #ff0000;">`sort_keyword_clicks`</span> <span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">`sort_referer_clicks`</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">,</span>
  <span style="color: #993333; font-weight: bold;">KEY</span> <span style="color: #ff0000;">`sort_keyword_leads`</span> <span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">`sort_referer_leads`</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">,</span>
  <span style="color: #993333; font-weight: bold;">KEY</span> <span style="color: #ff0000;">`sort_keyword_signup_ratio`</span> <span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">`sort_referer_su_ratio`</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">,</span>
  <span style="color: #993333; font-weight: bold;">KEY</span> <span style="color: #ff0000;">`sort_keyword_payout`</span> <span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">`sort_referer_payout`</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">,</span>
  <span style="color: #993333; font-weight: bold;">KEY</span> <span style="color: #ff0000;">`sort_keyword_epc`</span> <span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">`sort_referer_epc`</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">,</span>
  <span style="color: #993333; font-weight: bold;">KEY</span> <span style="color: #ff0000;">`sort_keyword_cpc`</span> <span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">`sort_referer_avg_cpc`</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">,</span>
  <span style="color: #993333; font-weight: bold;">KEY</span> <span style="color: #ff0000;">`sort_keyword_income`</span> <span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">`sort_referer_income`</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">,</span>
  <span style="color: #993333; font-weight: bold;">KEY</span> <span style="color: #ff0000;">`sort_keyword_cost`</span> <span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">`sort_referer_cost`</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">,</span>
  <span style="color: #993333; font-weight: bold;">KEY</span> <span style="color: #ff0000;">`sort_keyword_net`</span> <span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">`sort_referer_net`</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">,</span>
  <span style="color: #993333; font-weight: bold;">KEY</span> <span style="color: #ff0000;">`sort_keyword_roi`</span> <span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">`sort_referer_roi`</span><span style="color: #66cc66;">&#41;</span>
<span style="color: #66cc66;">&#41;</span> ENGINE<span style="color: #66cc66;">=</span>MyISAM;</pre></div></div>

<p>2. Make a backup of top.php in the tracking202/_config folder<br />
3. Copy all files to places where they belong (all from tracking202 folder from this mod to tracking202 folder on server)</p>
<h3>Preview</h3>
<p><a href="http://www.b-scan.net/content/2009/06/prosper202-referers.jpg"><img class="alignnone size-medium wp-image-102" title="prosper202 referers MOD" src="http://www.b-scan.net/content/2009/06/prosper202-referers-560x382.jpg" alt="" width="560" height="382" /></a></p>
<p>Enjoy!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.b-scan.net/blog/95-referer-click-through-mod-for-prosper202/feed/</wfw:commentRss>
		</item>
		<item>
		<title>B-Scan.net blog launch</title>
		<link>http://www.b-scan.net/blog/89-b-scannet-blog-launch/</link>
		<comments>http://www.b-scan.net/blog/89-b-scannet-blog-launch/#comments</comments>
		<pubDate>Sun, 06 Jul 2008 18:00:00 +0000</pubDate>
		<dc:creator>B-Scan</dc:creator>
		
		<category><![CDATA[Personal]]></category>

		<category><![CDATA[b-scan.net]]></category>

		<category><![CDATA[blog]]></category>

		<category><![CDATA[launch]]></category>

		<guid isPermaLink="false">http://www.b-scan.net/?p=89</guid>
		<description><![CDATA[Uff&#8230; after being few years in web development I decide to open web developer&#8217;s blog. This is not my first blog - but it&#8217;s first personal/professional on English. I also have SEO blog on Croatian which is abandoned a bit. B-Scan.net blog it&#8217;s my presentation to the IT world.
One of the issues here I know [...]]]></description>
			<content:encoded><![CDATA[<p>Uff&#8230; after being few years in web development I decide to open web developer&#8217;s blog. This is not my first blog - but it&#8217;s first personal/professional on English. I also have <a href="http://www.seofruits.com.hr/">SEO blog</a> on Croatian which is abandoned a bit. B-Scan.net blog it&#8217;s my presentation to the IT world.</p>
<p>One of the issues here I know it can be a little problem it&#8217;s my &#8220;good&#8221; knowledge of English. Well, maybe everything will not be so clear spoken or better to say written in sense of natural language - but I hope so it will be written in programming language.</p>
<p>If you like to know a bit more about me you can go to <a href="/">About</a> section of this site.</p>
<p>This post it&#8217;s also reminder to myself that I know release date of this blog.</p>
<p>I hope so that you will find some useful posts/code/ideas here and meet some cool IT people in the blogosphere.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.b-scan.net/blog/89-b-scannet-blog-launch/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
