<?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>Web Analytics Software &#187; michael</title>
	<atom:link href="http://www.logaholic.com/wp/author/admin/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.logaholic.com/wp</link>
	<description>Easy to use, powerful, performance driven web analytics at a friendly price</description>
	<pubDate>Mon, 03 Nov 2008 14:38:24 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.2</generator>
	<language>en</language>
			<item>
		<title>How to Split Test a Wordpress site</title>
		<link>http://www.logaholic.com/wp/2008/10/30/how-to-split-test-a-wordpress-site/</link>
		<comments>http://www.logaholic.com/wp/2008/10/30/how-to-split-test-a-wordpress-site/#comments</comments>
		<pubDate>Thu, 30 Oct 2008 17:12:52 +0000</pubDate>
		<dc:creator>michael</dc:creator>
		
		<category><![CDATA[Favorites]]></category>

		<category><![CDATA[Web Analytics Tips]]></category>

		<guid isPermaLink="false">http://www.logaholic.com/wp/?p=524</guid>
		<description><![CDATA[ What if you want to try something completely different ?
What if you want to go beyond single page split testing and test an entirely new website, with new content, sales copy, a different design, the works ?
If you combine the power of Logaholic Web Analytics and a content management system like Wordpress, there is [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.logaholic.com/images/articlethumbnails/web-analytics-splittest.jpg" alt="Wordpress a/b split test" vspace="3" hspace="15" align="left" /> What if you want to try something completely different ?</p>
<p>What if you want to go beyond single page split testing and test an entirely new website, with new content, sales copy, a different design, the works ?</p>
<p>If you combine the power of Logaholic Web Analytics and a content management system like Wordpress, there is a pretty easy way to pull off this magic trick.</p>
<p>If fact, if you are reading this, you are one of my test subjects and you are looking at the new website <img src='http://www.logaholic.com/wp/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> I can now run both websites simultaneously and I&#8217;m sending 30% of visitors to my new site, and 70% to the old one as a control group.</p>
<p>Using the Logaholic Split Testing system I can track users to each website version and compare the results. Is the new website better at converting more visitors to trial downloads, subscribers and customers ?</p>
<p>You know the old saying &#8216;Don&#8217;t throw away your old shoes before you have new ones&#8217; (is that a saying in your language?) is very true here. By testing your new site before you destroy your old one, you can be sure you are making the right decision and you have the opportunity to fix any problems without too much &#8216;damage&#8217;.</p>
<h3>Step by Step Instructions</h3>
<ol>
<li><strong>Make a copy your wordpress database</strong>
<p>For your new website, I&#8217;ll assume you will use your current site as the starting point. Before we can change the content and settings of the new site, we need to make a copy of the wordpress mysql database, so our original site can stay unchanged.</p>
<p>There are a number of ways you can make a copy of a mysql database, please <a target="_blank" href="http://dev.mysql.com/doc/refman/5.0/en/upgrading-to-arch.html">read this</a> if you are not sure how to do this. In my case, I could just copy the database folder like so:</p>
<blockquote><p>
> cp -r /var/lib/mysql/wordpress /var/lib/mysql/wordpress_copy<br />
> chown -R mysql:mysql /var/lib/mysql/wordpress_copy
</p></blockquote>
</li>
<li><strong>Create a Split Test in Logaholic</strong>
<p>Open your Logaholic, go to &#8220;Test Center&#8221; and click &#8220;Create a new PHP split test&#8221;. Enter a name and description, something like &#8220;Website Split&#8221;, &#8220;This will split test the entire website&#8221;.</p>
<p>Leave the &#8220;Import Test URL&#8221; field blank and click &#8220;Create&#8221;. Next, leave the variation fields <strong>completely blank</strong>, just click &#8220;Create&#8221; again.</p>
<p>Now, click the link to save your test file. The file will be named something like this:</p>
<blockquote><p><em>profilename</em>-splittest<em>10</em>.php</p></blockquote>
<p>Once published, this file will set a cookie for your visitors with a value of A or B, so we know if we want send them to website A or website B (the new one).</p>
<p>The cookie variable will be named like this:</p>
<blockquote><p>$lg<em>profilename10</em></p></blockquote>
</li>
<p>&#8220;profilename&#8221; will be replaced with the actual name of your logaholic profile and<br />
&#8220;10&#8243; will be replaced with the split test ID number, please keep that in mind.</p>
<li><strong>Edit wp-config.php</strong>
<p>Make a backup copy of your wp-config.php file (located in your wordpress directory). Next, open it in your favourite editor. At the top you find a line that looks like this:</p>
<blockquote><p>// ** MySQL settings ** //<br />
define(&#8217;DB_NAME&#8217;, &#8216;wordpress&#8217;);    // The name of the database</p></blockquote>
<p>We are going to replace this with this:</p>
<blockquote><p>// ** MySQL settings ** //<br />
if (<strong>@$lgprofilename10</strong>!=B) {<br />
    define(&#8217;DB_NAME&#8217;, &#8216;wordpress&#8217;); // The name of the old database<br />
} else {<br />
    define(&#8217;DB_NAME&#8217;, &#8216;wordpress_copy&#8217;);    // The name of the new database<br />
}</p></blockquote>
<p>This piece of code will load the new database for any user that has a cookie value of &#8220;B&#8221;, and the old site for anyone else (cookie=A or no cookie at all).</p>
<p>Save the wp-config.php file and upload it to your server.</p>
<p>To preview your new site, just open it in your browser and add <strong>?lgprofilename10=B </strong>to the url.</p>
</li>
<li><strong>Build new website</strong>
<p>To build the new site, you&#8217;ll have to set the cookie permanently, so you can log into your wordpress administration area using the new database.</p>
<p>To do this, create a new file called &#8220;manualcookie.php&#8221; (or whatever you want to call it) and put this code in there:</p>
<blockquote><p>
&lt;?php<br />
if ($cookie==&#8221;off&#8221;) {<br />
SetCookie(&#8221;lgprofilename10&#8243;,&#8221;",time() + 8640000,&#8221;/&#8221;,$HTTP_HOST,0);<br />
} else {<br />
SetCookie(&#8221;lgprofilename10&#8243;,&#8221;B&#8221;,time() + 8640000,&#8221;/&#8221;,$HTTP_HOST,0);}<br />
?&gt;
</p></blockquote>
<p>Save the file, upload it to your server and open it in your web browser. Now you&#8217;ll be the only person in the world that will see site B when you visit your site.</p>
<p>You can now log into wp-admin and make your new website.</p>
<p>If you need to see your old site, you can always open a different browser (like firefox) or you can remove the cookie again by opening <strong>manualcookie.php?cookie=off</strong>
</li>
<li><strong>Add Split Test Code</strong><br />
When you are finished creating your new website and ready to start testing, copy the logaholic split test file (profilename-splittest10.php) to your wordpress directory.</p>
<p>Next, open index.php (the one in your wordpress directory) and add this line to the top of the file:</p>
<blockquote><p> include(&#8217;./profilename-splittest10.php&#8217;);  </p></blockquote>
<p>Once you save the file, your visitors will automatically get the cookie and be directed to either your old or you new site.</p>
</li>
<li><strong>Evaluate Results</strong><br />
Now, some visitors will start seeing your new website. Open your Logaholic, click Test Center and Click the &#8216;Website Split&#8217; link to view the Split Test result report.</p>
<p>Use different KPI&#8217;s / target files to evaluate how well each site converts to your most important files, the Split test report will tell you which site is the <strong>Winner</strong> !
</li>
<li><strong>Go live with confidence</strong><br />
Once you have your results. Just edit wp-config.php again, so it always loads your winning website database.
</li>
</ol>
<p>Pretty cool right ? Please leave your comments below, thanks!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.logaholic.com/wp/2008/10/30/how-to-split-test-a-wordpress-site/feed/</wfw:commentRss>
		</item>
		<item>
		<title>New Website, New Licenses</title>
		<link>http://www.logaholic.com/wp/2008/10/29/new-website-new-licenses/</link>
		<comments>http://www.logaholic.com/wp/2008/10/29/new-website-new-licenses/#comments</comments>
		<pubDate>Wed, 29 Oct 2008 15:19:24 +0000</pubDate>
		<dc:creator>michael</dc:creator>
		
		<category><![CDATA[Logaholic News]]></category>

		<guid isPermaLink="false">http://www.logaholic.com/wp/?p=499</guid>
		<description><![CDATA[If you are not a first time visitor to our site, you may notice it&#8217;s been revamped. We hope you like it, if you have any comments, please leave them below!
However, we have also streamlined our product range. We now offer 3 &#8216;Editions&#8217; of the Logaholic software:

Logaholic Self Hosted Edition
Logaholic Windows Desktop Edition
Logaholic Service Provider [...]]]></description>
			<content:encoded><![CDATA[<p>If you are not a first time visitor to our site, you may notice it&#8217;s been revamped. We hope you like it, if you have any comments, please leave them below!</p>
<p>However, we have also streamlined our product range. We now offer 3 &#8216;Editions&#8217; of the Logaholic software:</p>
<ul>
<li><a href="http://www.logaholic.com/wp/products/logaholic-web-analytics-self-hosted-version/">Logaholic Self Hosted Edition</a></li>
<li><a href="http://www.logaholic.com/wp/products/web-analytics-software-for-windows/">Logaholic Windows Desktop Edition</a></li>
<li><a href="http://www.logaholic.com/wp/products/logaholic-spe/">Logaholic Service Provider Edition</a></li>
</ul>
<p></p>
<p>You can compare the available <a href="/wp/products/features/">features here</a>.</p>
<p>Each Edition can be purchased with a number of different licenses. Please check out the new <a href="/wp/products/">products page</a> for details.</p>
<p>The most notable difference concerns the Self Hosted Edition (the old &#8216;regular&#8217; version). We now also offer a Single Website License. That is now priced at $67. The prices for 5 and Unlimited licenses has been increased.</p>
<p>Again, I hope you enjoy our new website. if you have any comments or suggestions, please leave a comment below, thanks!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.logaholic.com/wp/2008/10/29/new-website-new-licenses/feed/</wfw:commentRss>
		</item>
		<item>
		<title>New Official Release Logaholic Web Analytics 2.0.1</title>
		<link>http://www.logaholic.com/wp/2008/10/03/new-offcial-release-logaholic-web-analytics-201/</link>
		<comments>http://www.logaholic.com/wp/2008/10/03/new-offcial-release-logaholic-web-analytics-201/#comments</comments>
		<pubDate>Thu, 02 Oct 2008 23:06:25 +0000</pubDate>
		<dc:creator>michael</dc:creator>
		
		<category><![CDATA[Logaholic News]]></category>

		<guid isPermaLink="false">http://www.logaholic.com/wp/2008/10/03/new-offcial-release-logaholic-web-analytics-201/</guid>
		<description><![CDATA[I&#8217;m very happy to announce the official release of Logaholic version 2.0.1. 
Logaholic 2.0.1 is a major update as it uses a completly new database layout. The new database stores information more efficiently resulting in smaller, faster data tables.
As a result Logaholic 2.0.1 is much faster when generating reports for longer periods of time or [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.logaholic.com/images/web-analytics-201.jpg" alt="Web Analytics 2.0.1" align="left" />I&#8217;m very happy to announce the official release of Logaholic version 2.0.1. </p>
<p>Logaholic 2.0.1 is a major update as it uses a completly new database layout. The new database stores information more efficiently resulting in smaller, faster data tables.</p>
<p><strong>As a result Logaholic 2.0.1 is much faster when generating reports for longer periods of time or for sites that have a lot of traffic.</strong> It does this without compromising any of the details. You can still drill down to the nitty gritty level and see each and every click on your website.</p>
<p>Logaholic 2.0.1 uses approximately <strong>40% less disk space </strong>and can easily be 15 x faster in generating reports. With larger datasets, the increase can be over <strong>100x times faster</strong>.<br />
<span id="more-104"></span><br />
More changes and new stuff:</p>
<ul>
<li> Logaholic 2.0.1 introduces some new reports: Screen Resolution, Color Pallette
<li> Improved test center - it&#8217;s now easier split test a small part of a page
<li> Now has seperated reports for Browsers and Operating Systems in addition to Browser trend reports
<li> Now supports 1st party Cookie based visitor tracking for both javascript and log file data collection
<li> Better documentation, lots of bug fixes and many other little improvements
</ul>
<p><i>For existing customers:</i><br />
To update your current Logaholic version, click the &#8220;Customer Login&#8221; link at the top left of this page.<br />
Next, login and click My Account, View Previous Order. That&#8217;s where you&#8217;ll find your download link.</p>
<p><i>For new customers:</i><br />
You can download a trail version <a href="http://www.logaholic.com/wp/trial-download/">here</a>.<br />
You can purchase a license <a href="http://www.logaholic.com/wp/products/">here</a>.</p>
<p>Thanks to everyone who gave us feedback during the 2.0.1 beta test period!</p>
<p>I hope you enjoy our new version, if you have any comments you want to share, please add them below <img src='http://www.logaholic.com/wp/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.logaholic.com/wp/2008/10/03/new-offcial-release-logaholic-web-analytics-201/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Logaholic 2.0.1 Beta updated</title>
		<link>http://www.logaholic.com/wp/2008/07/25/logaholic-201-beta-updated/</link>
		<comments>http://www.logaholic.com/wp/2008/07/25/logaholic-201-beta-updated/#comments</comments>
		<pubDate>Fri, 25 Jul 2008 12:35:26 +0000</pubDate>
		<dc:creator>michael</dc:creator>
		
		<category><![CDATA[Logaholic News]]></category>

		<guid isPermaLink="false">http://www.logaholic.com/wp/2008/07/25/logaholic-201-beta-updated/</guid>
		<description><![CDATA[The new Logaholic 2.0.1 beta (for high volume sites) has been updated. Various bugs have been fixed. Most importantly, checks have been added so extremely long log entries no longer result in failed queries during import.
You can download the latest version here:
Logaholic 2.0.1
]]></description>
			<content:encoded><![CDATA[<p>The new Logaholic 2.0.1 beta (for high volume sites) has been updated. Various bugs have been fixed. Most importantly, checks have been added so extremely long log entries no longer result in failed queries during import.</p>
<p>You can download the latest version here:<br />
<a href="/logaholic-trial.zip">Logaholic 2.0.1</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.logaholic.com/wp/2008/07/25/logaholic-201-beta-updated/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Logaholic 2.0.1 Beta available for high volume sites</title>
		<link>http://www.logaholic.com/wp/2008/07/09/logaholic-201-beta-available-for-high-volume-sites/</link>
		<comments>http://www.logaholic.com/wp/2008/07/09/logaholic-201-beta-available-for-high-volume-sites/#comments</comments>
		<pubDate>Wed, 09 Jul 2008 14:04:18 +0000</pubDate>
		<dc:creator>michael</dc:creator>
		
		<category><![CDATA[Logaholic News]]></category>

		<guid isPermaLink="false">http://www.logaholic.com/wp/2008/07/09/logaholic-201-beta-available-for-high-volume-sites/</guid>
		<description><![CDATA[I just wanted to let you know we have just released a new beta version you can try.
Logaholic 2.0.1 is a major update as it uses a completly new database layout. The new database stores information more efficiently resulting in smaller, faster data tables.
As a result Logaholic 2.0.1 is much faster when generating reports for [...]]]></description>
			<content:encoded><![CDATA[<p>I just wanted to let you know we have just released a new beta version you can try.</p>
<p>Logaholic 2.0.1 is a major update as it uses a completly new database layout. The new database stores information more efficiently resulting in smaller, faster data tables.</p>
<p>As a result Logaholic 2.0.1 is much faster when generating reports for longer periods of time or for sites that have a lot of traffic. It does this without compromising any of the details. You can still drill down to the nitty gritty level and see each and every click on your website.</p>
<p>Logaholic 2.0.1 uses approximately 40% less disk space and can easily be 15 x faster in generating reports. With larger datasets, the increase can be over 100x times faster.</p>
<p>Since this is our first release using the new database style we would like to invite you to test this version before we depreciate the old version. If you run into any bugs, problems or questions, please let us know!</p>
<p><a href="http://www.logaholic.com/logaholic-trial.zip">Click here to download Logaholic 2.0.1 beta</a></p>
<p>Thanks for your help!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.logaholic.com/wp/2008/07/09/logaholic-201-beta-available-for-high-volume-sites/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Logaholic 2.0 RC12 available</title>
		<link>http://www.logaholic.com/wp/2008/07/07/logaholic-20-rc12-available/</link>
		<comments>http://www.logaholic.com/wp/2008/07/07/logaholic-20-rc12-available/#comments</comments>
		<pubDate>Mon, 07 Jul 2008 19:55:51 +0000</pubDate>
		<dc:creator>michael</dc:creator>
		
		<category><![CDATA[Logaholic News]]></category>

		<guid isPermaLink="false">http://www.logaholic.com/wp/2008/07/07/logaholic-20-rc12-available/</guid>
		<description><![CDATA[Logaholic version 2.0 RC12 is now available for download. This is a minor upgrade that fixes a few bugs in the previous release.
- Ftp log files and error logs are now automatically skipped.
- tar.gz files containing error logs are also handled correctly now.
- Fixed license error when running update.php via the command line (cron job)
- [...]]]></description>
			<content:encoded><![CDATA[<p>Logaholic version 2.0 RC12 is now available for download. This is a minor upgrade that fixes a few bugs in the previous release.</p>
<p>- Ftp log files and error logs are now automatically skipped.<br />
- tar.gz files containing error logs are also handled correctly now.<br />
- Fixed license error when running update.php via the command line (cron job)<br />
- Improved detection of Microsoft search engine crawlers (live.com bots)</p>
<p>Please visit our <a href="http://www.logaholic.com/wp/trial-download/">download</a> page to get a free 14 day trial, or <a href="http://www.logaholic.com/order/login.php">log in to your account </a>to download the latest version.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.logaholic.com/wp/2008/07/07/logaholic-20-rc12-available/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Web Analytics Software for Windows</title>
		<link>http://www.logaholic.com/wp/2008/05/21/web-analytics-software-for-windows/</link>
		<comments>http://www.logaholic.com/wp/2008/05/21/web-analytics-software-for-windows/#comments</comments>
		<pubDate>Wed, 21 May 2008 00:02:04 +0000</pubDate>
		<dc:creator>michael</dc:creator>
		
		<category><![CDATA[Logaholic News]]></category>

		<guid isPermaLink="false">http://www.logaholic.com/wp/2008/05/21/web-analytics-software-for-windows/</guid>
		<description><![CDATA[Introducing Logaholic Desktop, the Easy Way to use Web Analytics Software on your PC
Logaholic Desktop is the latest addition to our product family, but unlike our server hosted software, this version works on your local PC as a regular Windows program.

There is no need to have a webserver that supports PHP and Mysql, no need [...]]]></description>
			<content:encoded><![CDATA[<p><strong><em>Introducing Logaholic Desktop, the Easy Way to use Web Analytics Software on your PC</em></strong></p>
<p>Logaholic Desktop is the latest addition to our product family, but unlike our server hosted software, this version works on your local PC as a regular Windows program.<br />
<span id="more-99"></span><br />
There is no need to have a webserver that supports PHP and Mysql, no need to install scripts on your website and no need to set up all kinds of complicated software if you want to use Logaholic like a local Windows application.</p>
<p><a rel="lightbox" href="http://www.logaholic.com/images/desktopscreenshots/install1-big.gif"><img src="http://www.logaholic.com/images/desktopscreenshots/install1sm.gif" alt="Installs in just a few steps (Click to enlarge image)" width="175" align="left" border="0"/></a>Logaholic Desktop includes everything you need in one tidy package. It installs like any other windows program and within a few clicks, you&#8217;ll be ready to analyze your websites&#8217; log files.</p>
<p>Logaholic Destop has built-in support for SQLite database files, providing a fast, portable, single-file database format to store your website statistics.</p>
<p><a rel="lightbox" href="http://www.logaholic.com/images/desktopscreenshots/install-ftp2.gif"><img src="http://www.logaholic.com/images/desktopscreenshots/install-ftp2sm.gif" alt="Download log file updates via FTP on the fly (Click to enlarge image)" width="175" align="left" border="0"  /></a>It&#8217;s ideal for anyone who can&#8217;t or doesn&#8217;t want to install Logaholic on a hosted server environment. It is equipped with almost all the features of our server side versions. You can even use the built-in FTP settings to download log files from your webserver quickly and easily.</p>
<p>Logaholic web analytics reveals essential information about your visitors: where they come from, how they find you, what keywords they use and what they do next. It will show you the conversion rates for your products, downloads or subscriptions. It will allow you to dig deep into the numbers behind your website and help you to understand what they mean. But most of all, it will help you make a better, more profitable website.</p>
<p>Powerful web analytics without the installation headaches. Logaholic Desktop is compatible with Microsoft Windows 2000, XP and Vista.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.logaholic.com/wp/2008/05/21/web-analytics-software-for-windows/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Free Logaholic Installation Special</title>
		<link>http://www.logaholic.com/wp/2008/04/29/free-logaholic-installation-special/</link>
		<comments>http://www.logaholic.com/wp/2008/04/29/free-logaholic-installation-special/#comments</comments>
		<pubDate>Tue, 29 Apr 2008 12:56:15 +0000</pubDate>
		<dc:creator>michael</dc:creator>
		
		<category><![CDATA[Logaholic News]]></category>

		<guid isPermaLink="false">http://www.logaholic.com/wp/2008/04/29/free-logaholic-installation-special/</guid>
		<description><![CDATA[If only all servers were built and configured the same way, I know my job would be a lot easier!
Installing software on your server can sometimes be a daunting task. Although we&#8217;ve tried to make the Logaholic installation process as easy as possible, I know there are people out there that can&#8217;t get it to [...]]]></description>
			<content:encoded><![CDATA[<p>If only all servers were built and configured the same way, I know my job would be a lot easier!</p>
<p>Installing software on your server can sometimes be a daunting task. Although we&#8217;ve tried to make the Logaholic installation process as easy as possible, I know there are people out there that can&#8217;t get it to work.</p>
<p>In that case, I have some good news for you:<br />
<span id="more-98"></span><br />
Order your copy of Logaholic today or tomorrow and we will install it on your server for you. </p>
<p>That&#8217;s right, buy Logaholic on April 29 or 30th 2008 and we will do the hard part for you, at no extra charge.</p>
<p>Installations will be done on a first come, first serve basis, so make sure you get your order in as soon as possible !</p>
<p>To order, just click the link below and choose your version:<br />
<a href="/wp/products/">Order Today</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.logaholic.com/wp/2008/04/29/free-logaholic-installation-special/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Logaholic 2.0 RC10 - Lots of improvements!</title>
		<link>http://www.logaholic.com/wp/2008/04/07/logaholic-20-rc10-lots-of-improvements/</link>
		<comments>http://www.logaholic.com/wp/2008/04/07/logaholic-20-rc10-lots-of-improvements/#comments</comments>
		<pubDate>Mon, 07 Apr 2008 11:50:33 +0000</pubDate>
		<dc:creator>michael</dc:creator>
		
		<category><![CDATA[Logaholic News]]></category>

		<guid isPermaLink="false">http://www.logaholic.com/wp/2008/04/07/logaholic-20-rc10-lots-of-improvements/</guid>
		<description><![CDATA[We just wanted to let you know we&#8217;ve updated Logaholic to version 2.0 RC10.
One major change is that Logaholic now correctly detects Microsoft&#8217;s &#8216;cloaked&#8217; web crawlers. Yes, Microsoft has done it again. They seem to have unleashed a wierd version of their &#8216;livebot&#8217; spider a while ago.
I guess it travels slowly because we did not [...]]]></description>
			<content:encoded><![CDATA[<p>We just wanted to let you know we&#8217;ve updated Logaholic to version 2.0 RC10.</p>
<p>One major change is that Logaholic now correctly detects Microsoft&#8217;s &#8216;cloaked&#8217; web crawlers. Yes, Microsoft has done it again. They seem to have unleashed a wierd version of their &#8216;livebot&#8217; spider a while ago.</p>
<p>I guess it travels slowly because we did not notice it before, but since a few weeks, it&#8217;s all over the place. It hits a site from a whole range of IP addresses and does not even identify its self as a crawler, it looks exactly like a regular visitor. However, they all come from one IP range and only if you resolve the ipnumber it&#8217;s origin is revealed as &#8216;livebot-xx.search.live.com&#8217;</p>
<p>The previous version of Logaholic will not detect these new livebot requests as crawlers and since they come from potentially hundreds of different ipnumbers, your stats can be seriously inflated and your top keywords report filled with sex and drug related junk keywords, courtesy of microsoft.</p>
<p>We&#8217;ve fixed it so it groups all requests from the IP range to a single visitor and classifies it as a crawler so it&#8217;s filtered out of things like keyword reports.</p>
<p>Other changes:</p>
<p>- Updated charts files to latest version<br />
- Fixed return visitors bug when we have a lot of crawlers<br />
- Started detecting new livebot based on ip range, merging to one ip<br />
- Filtered out crawler request in search engines report<br />
- Now deleting global settings correctly after delete<br />
- Accurate log file esitmates now work on multiple files<br />
- Actionmenu links to trends now always displays more than 1 day<br />
- Fixed error reporting level<br />
- Added a &#8216;hide&#8217; feature to disable parts of the software, i.e demo mode (see hide.php)<br />
- Improved handling of long urls and keywords<br />
- Improved report table headings<br />
- Added date selection back in notes system.<br />
- Added last 24 hours to quickdates<br />
- Added loading indicator in funnel reports<br />
- Removed crawlers from funnel stats<br />
- Improved visual mode<br />
- Changed Top Pages reports<br />
- Added most crawled pages report<br />
- Fixed some layout bugs<br />
- Added daterange support in sidepanel links in testcenter<br />
- Silenced argc in update.php<br />
- fixed jumping hr on interface in IE7<br />
- Changed logaholic javascript tracker to work directly with mysql again.<br />
- Changed license system, ioncube is no longer required.</p>
<p>All versions have been updated on our site, so please <a href=/order/login.php>log in</a> and visit your order page to download the latest version.</p>
<p>If you are not a customer yet, our Free Trial has also been updated to this version. You can get it <a href=/wp/trial-download/>here</a>.</p>
<p>Thanks for all your feedback!</p>
<p>Michael<br />
PS:<br />
If you want to know more about the Microsoft bots visiting your site, check out these links:</p>
<p>Discussion:<br />
<a href="http://www.webmasterworld.com/msn_microsoft_search/3424476.htm">http://www.webmasterworld.com/msn_microsoft_search/3424476.htm</a></p>
<p>and microsoft&#8217;s excuse:<br />
<a href="http://blogs.msdn.com/webmaster/archive/2007/12/04/live-search-and-cloaking-detection.aspx">http://blogs.msdn.com/webmaster/archive/2007/12/04/live-search-and-cloaking-detection.aspx</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.logaholic.com/wp/2008/04/07/logaholic-20-rc10-lots-of-improvements/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Please Resubmit Support Tickets</title>
		<link>http://www.logaholic.com/wp/2008/03/21/please-resubmit-support-tickets/</link>
		<comments>http://www.logaholic.com/wp/2008/03/21/please-resubmit-support-tickets/#comments</comments>
		<pubDate>Fri, 21 Mar 2008 14:22:40 +0000</pubDate>
		<dc:creator>michael</dc:creator>
		
		<category><![CDATA[Logaholic News]]></category>

		<guid isPermaLink="false">http://www.logaholic.com/wp/2008/03/21/please-resubmit-support-tickets/</guid>
		<description><![CDATA[Our email hosting provider installed new SPAM filters a few weeks ago. We had pretty &#8216;agressive&#8217; filtering enabled on our incomming suport and sales email accounts, as they receive a huge amount of spam.
Unfortunately, the new filters were a bit too enthusiastic.
A lot a valid support emails have ended up in the Spam box, which [...]]]></description>
			<content:encoded><![CDATA[<p>Our email hosting provider installed new SPAM filters a few weeks ago. We had pretty &#8216;agressive&#8217; filtering enabled on our incomming suport and sales email accounts, as they receive a huge amount of spam.</p>
<p>Unfortunately, the new filters were a bit too enthusiastic.</p>
<p>A lot a valid support emails have ended up in the Spam box, which is purged every 3 days. </p>
<p>If you&#8217;ve sent us a message in the last 2 weeks and did not receive a reply from us, there is a good chance your email was blocked or deleted by now. In this case, please <a href=http://www.logaholic.com/support-center/index.php?x=&#038;mod_id=4>resubmit your suport ticket here</a>.</p>
<p>The filter settings has been lowered now, so your message should get through again.</p>
<p>Our apologies for any inconvenience.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.logaholic.com/wp/2008/03/21/please-resubmit-support-tickets/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
