<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Wibstats &#8211; statistics for Wordpress MU and BuddyPress</title>
	<atom:link href="http://www.stillbreathing.co.uk/blog/2009/09/07/wibstats-statistics-for-wordpress-mu-and-buddypress/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.stillbreathing.co.uk/blog/2009/09/07/wibstats-statistics-for-wordpress-mu-and-buddypress/</link>
	<description>where the web, Wordpress, jazz and beer collide</description>
	<lastBuildDate>Thu, 18 Mar 2010 05:02:48 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Todd</title>
		<link>http://www.stillbreathing.co.uk/blog/2009/09/07/wibstats-statistics-for-wordpress-mu-and-buddypress/comment-page-1/#comment-24484</link>
		<dc:creator>Todd</dc:creator>
		<pubDate>Mon, 01 Mar 2010 23:38:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.stillbreathing.co.uk/blog/?p=826#comment-24484</guid>
		<description>Your program is wonderful, very intuitive and the statistics are quite useful.  The Google map is working, based on the API code that was originally generated.  But now, everytime I open your program I get the message &quot;The website needs a different Google Maps API key. A new key can be generated at http://code.google.com/apis/   That&#039;s fine, and I was able to get a new code.  But I cannot figure out how to enter the new code in Wibstats.  

The program seems to continue to work, it is just annoying to constantly get the above error message.

Please advise.</description>
		<content:encoded><![CDATA[<p>Your program is wonderful, very intuitive and the statistics are quite useful.  The Google map is working, based on the API code that was originally generated.  But now, everytime I open your program I get the message &#8220;The website needs a different Google Maps API key. A new key can be generated at <a href="http://code.google.com/apis/" rel="nofollow">http://code.google.com/apis/</a>   That&#8217;s fine, and I was able to get a new code.  But I cannot figure out how to enter the new code in Wibstats.  </p>
<p>The program seems to continue to work, it is just annoying to constantly get the above error message.</p>
<p>Please advise.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: chris</title>
		<link>http://www.stillbreathing.co.uk/blog/2009/09/07/wibstats-statistics-for-wordpress-mu-and-buddypress/comment-page-1/#comment-24467</link>
		<dc:creator>chris</dc:creator>
		<pubDate>Thu, 11 Feb 2010 13:39:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.stillbreathing.co.uk/blog/?p=826#comment-24467</guid>
		<description>Not irritated, just short on time!

The message &quot;Could not update WibStats to version 0.5&quot; is because WibStats couldn&#039;t split the old version data into two tables (version 0.5 stores session and page view data separately). There are two queries which do this (you&#039;ll need to change the [data] bits to your own details):

&lt;code&gt;insert into [prefix]_[blog id]_wibstats_sessions
	( timestamp, ipaddress, sessionid, colordepth, screensize, browser, version, platform, page, title, referrer, referrer_domain, terms , city, country, countrycode, latitude, longitude )
	select
	timestamp, ipaddress, sessionid, colordepth, screensize, browser, version, platform, page, title, referrer, referrer_domain, terms , city, country, countrycode, latitude, longitude
	from [prefix]_[blog id]_wibstats
	group by sessionid
	order by timestamp desc;&lt;/code&gt;

And:

&lt;code&gt;insert into [prefix]_[blog id]_wibstats_pages
	( timestamp, page, title, sessionid, referrer, referrer_domain, terms )
	select 
	timestamp, page, title, sessionid, referrer, referrer_domain, terms
	from [prefix]_[blog id]_wibstats
	order by timestamp asc;&lt;/code&gt;

If either of these queries can&#039;t run or the number of rows in these tables does not match up with the number of relevant rows in the old [prefix]_[blog id]_wibstats table it fails.

So, and this is pretty geeky, can you check firstly that the [prefix]_[blog id]_wibstats_sessions and [prefix]_[blog id]_wibstats_pages tables exist, and whether there is any data in them. If not please run those two queries for each blog.

The map thing I don&#039;t have a clue about. The maps work on http://wibsite.com, but there is no key in the settings! Strange, I&#039;ll have to look into that some more.</description>
		<content:encoded><![CDATA[<p>Not irritated, just short on time!</p>
<p>The message &#8220;Could not update WibStats to version 0.5&#8243; is because WibStats couldn&#8217;t split the old version data into two tables (version 0.5 stores session and page view data separately). There are two queries which do this (you&#8217;ll need to change the [data] bits to your own details):</p>
<p><code>insert into [prefix]_[blog id]_wibstats_sessions<br />
	( timestamp, ipaddress, sessionid, colordepth, screensize, browser, version, platform, page, title, referrer, referrer_domain, terms , city, country, countrycode, latitude, longitude )<br />
	select<br />
	timestamp, ipaddress, sessionid, colordepth, screensize, browser, version, platform, page, title, referrer, referrer_domain, terms , city, country, countrycode, latitude, longitude<br />
	from [prefix]_[blog id]_wibstats<br />
	group by sessionid<br />
	order by timestamp desc;</code></p>
<p>And:</p>
<p><code>insert into [prefix]_[blog id]_wibstats_pages<br />
	( timestamp, page, title, sessionid, referrer, referrer_domain, terms )<br />
	select<br />
	timestamp, page, title, sessionid, referrer, referrer_domain, terms<br />
	from [prefix]_[blog id]_wibstats<br />
	order by timestamp asc;</code></p>
<p>If either of these queries can&#8217;t run or the number of rows in these tables does not match up with the number of relevant rows in the old [prefix]_[blog id]_wibstats table it fails.</p>
<p>So, and this is pretty geeky, can you check firstly that the [prefix]_[blog id]_wibstats_sessions and [prefix]_[blog id]_wibstats_pages tables exist, and whether there is any data in them. If not please run those two queries for each blog.</p>
<p>The map thing I don&#8217;t have a clue about. The maps work on <a href="http://wibsite.com" rel="nofollow">http://wibsite.com</a>, but there is no key in the settings! Strange, I&#8217;ll have to look into that some more.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gav</title>
		<link>http://www.stillbreathing.co.uk/blog/2009/09/07/wibstats-statistics-for-wordpress-mu-and-buddypress/comment-page-1/#comment-24465</link>
		<dc:creator>Gav</dc:creator>
		<pubDate>Thu, 11 Feb 2010 08:07:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.stillbreathing.co.uk/blog/?p=826#comment-24465</guid>
		<description>hey paul,

i guess chris is all irritated now...ahha.....lets wait for his reply.</description>
		<content:encoded><![CDATA[<p>hey paul,</p>
<p>i guess chris is all irritated now&#8230;ahha&#8230;..lets wait for his reply.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Paul Hastings</title>
		<link>http://www.stillbreathing.co.uk/blog/2009/09/07/wibstats-statistics-for-wordpress-mu-and-buddypress/comment-page-1/#comment-24459</link>
		<dc:creator>Paul Hastings</dc:creator>
		<pubDate>Fri, 05 Feb 2010 02:45:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.stillbreathing.co.uk/blog/?p=826#comment-24459</guid>
		<description>Hi Chris,

Sorry to keep bothering you. But I guess that&#039;s what you get for writing great plugins that everyone wants to use. ;)

I&#039;ve installed your plugin (0.5) in the mu-plugins folder of my &lt;a href=&quot;http://jibenow.com&quot; rel=&quot;nofollow&quot;&gt;site&lt;/a&gt; that&#039;s running WPMU 2.8.6 and BP 1.1.3 .

The plugin appears to be working fine except that I have the same problem as Gav, I can&#039;t get the Google Map to appear. I&#039;ve enter the correct API key from Google multiple times but still no map appears. The page continues to display &quot;For maps to be shown you must sign up for a Google maps API key.&quot;

Furthermore, at the top of http://jibenow.com/wp-admin/admin.php?page=wibstats it displays &quot;Could not update WibStats to version 0.5&quot;.

Here are screenshots.

http://jibenow.com/files/2010/02/pagewibstats.png
http://jibenow.com/files/2010/02/pagewibstats-options.png

Thanks a million.

:)</description>
		<content:encoded><![CDATA[<p>Hi Chris,</p>
<p>Sorry to keep bothering you. But I guess that&#8217;s what you get for writing great plugins that everyone wants to use. <img src='http://www.stillbreathing.co.uk/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>I&#8217;ve installed your plugin (0.5) in the mu-plugins folder of my <a href="http://jibenow.com" rel="nofollow">site</a> that&#8217;s running WPMU 2.8.6 and BP 1.1.3 .</p>
<p>The plugin appears to be working fine except that I have the same problem as Gav, I can&#8217;t get the Google Map to appear. I&#8217;ve enter the correct API key from Google multiple times but still no map appears. The page continues to display &#8220;For maps to be shown you must sign up for a Google maps API key.&#8221;</p>
<p>Furthermore, at the top of <a href="http://jibenow.com/wp-admin/admin.php?page=wibstats" rel="nofollow">http://jibenow.com/wp-admin/admin.php?page=wibstats</a> it displays &#8220;Could not update WibStats to version 0.5&#8243;.</p>
<p>Here are screenshots.</p>
<p><a href="http://jibenow.com/files/2010/02/pagewibstats.png" rel="nofollow">http://jibenow.com/files/2010/02/pagewibstats.png</a><br />
<a href="http://jibenow.com/files/2010/02/pagewibstats-options.png" rel="nofollow">http://jibenow.com/files/2010/02/pagewibstats-options.png</a></p>
<p>Thanks a million.</p>
<p> <img src='http://www.stillbreathing.co.uk/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gav</title>
		<link>http://www.stillbreathing.co.uk/blog/2009/09/07/wibstats-statistics-for-wordpress-mu-and-buddypress/comment-page-1/#comment-24454</link>
		<dc:creator>Gav</dc:creator>
		<pubDate>Wed, 03 Feb 2010 06:38:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.stillbreathing.co.uk/blog/?p=826#comment-24454</guid>
		<description>Chris,

The statistics numbers are now adding up. Thanks for the update !

The google maps still sin&#039;t showing up though (this is no big deal to me, but there&#039;s still a big blank space where the map should be)</description>
		<content:encoded><![CDATA[<p>Chris,</p>
<p>The statistics numbers are now adding up. Thanks for the update !</p>
<p>The google maps still sin&#8217;t showing up though (this is no big deal to me, but there&#8217;s still a big blank space where the map should be)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gav</title>
		<link>http://www.stillbreathing.co.uk/blog/2009/09/07/wibstats-statistics-for-wordpress-mu-and-buddypress/comment-page-1/#comment-24453</link>
		<dc:creator>Gav</dc:creator>
		<pubDate>Wed, 03 Feb 2010 03:33:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.stillbreathing.co.uk/blog/?p=826#comment-24453</guid>
		<description>Chris,

Thanks for the speedy reply. I&#039;ll update and get back on the results !</description>
		<content:encoded><![CDATA[<p>Chris,</p>
<p>Thanks for the speedy reply. I&#8217;ll update and get back on the results !</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: chris</title>
		<link>http://www.stillbreathing.co.uk/blog/2009/09/07/wibstats-statistics-for-wordpress-mu-and-buddypress/comment-page-1/#comment-24452</link>
		<dc:creator>chris</dc:creator>
		<pubDate>Tue, 02 Feb 2010 20:18:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.stillbreathing.co.uk/blog/?p=826#comment-24452</guid>
		<description>Gav: Please update the the latest version of Wibstats, available from the Wordpress plugin repository. This will fix some of your errors.

Regarding the percentages (e.g. &quot;In the last 28 days: 96 (+9300%)&quot; the percentage is compared to the previous 28 day. For the last 7 days it&#039;s compared to the previous 7 days, and for the last 24 hours it&#039;s compared to the previous 24 hours.</description>
		<content:encoded><![CDATA[<p>Gav: Please update the the latest version of Wibstats, available from the Wordpress plugin repository. This will fix some of your errors.</p>
<p>Regarding the percentages (e.g. &#8220;In the last 28 days: 96 (+9300%)&#8221; the percentage is compared to the previous 28 day. For the last 7 days it&#8217;s compared to the previous 7 days, and for the last 24 hours it&#8217;s compared to the previous 24 hours.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gav</title>
		<link>http://www.stillbreathing.co.uk/blog/2009/09/07/wibstats-statistics-for-wordpress-mu-and-buddypress/comment-page-1/#comment-24449</link>
		<dc:creator>Gav</dc:creator>
		<pubDate>Tue, 02 Feb 2010 05:20:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.stillbreathing.co.uk/blog/?p=826#comment-24449</guid>
		<description>Hi, I am wondering... How do I read the stats? I cannot seem to understand. Please see link for what I want to know. thanks !

link :- http://is.gd/7wGk2</description>
		<content:encoded><![CDATA[<p>Hi, I am wondering&#8230; How do I read the stats? I cannot seem to understand. Please see link for what I want to know. thanks !</p>
<p>link :- <a href="http://is.gd/7wGk2" rel="nofollow">http://is.gd/7wGk2</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: chris</title>
		<link>http://www.stillbreathing.co.uk/blog/2009/09/07/wibstats-statistics-for-wordpress-mu-and-buddypress/comment-page-1/#comment-24355</link>
		<dc:creator>chris</dc:creator>
		<pubDate>Wed, 25 Nov 2009 23:16:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.stillbreathing.co.uk/blog/?p=826#comment-24355</guid>
		<description>Thanks for letting me know about this. I&#039;ll make sure this bug is fixed in the next version.</description>
		<content:encoded><![CDATA[<p>Thanks for letting me know about this. I&#8217;ll make sure this bug is fixed in the next version.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: chris</title>
		<link>http://www.stillbreathing.co.uk/blog/2009/09/07/wibstats-statistics-for-wordpress-mu-and-buddypress/comment-page-1/#comment-24354</link>
		<dc:creator>chris</dc:creator>
		<pubDate>Wed, 25 Nov 2009 23:15:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.stillbreathing.co.uk/blog/?p=826#comment-24354</guid>
		<description>Hi Gabriel,

Thank you very much for your suggestions. I&#039;m currently rewriting WibStats and will bear all these comments in mind.

By the way, the only reason a user should see the error message to create the database tables is if they haven&#039;t already been created automatically. I believe this will be more robust in the new version of the plugin. Please keep an eye on the plugin page (http://wordpress.org/extend/plugins/wibstats-statistics-for-wordpress-mu/) for details of when I release the new version.</description>
		<content:encoded><![CDATA[<p>Hi Gabriel,</p>
<p>Thank you very much for your suggestions. I&#8217;m currently rewriting WibStats and will bear all these comments in mind.</p>
<p>By the way, the only reason a user should see the error message to create the database tables is if they haven&#8217;t already been created automatically. I believe this will be more robust in the new version of the plugin. Please keep an eye on the plugin page (<a href="http://wordpress.org/extend/plugins/wibstats-statistics-for-wordpress-mu/" rel="nofollow">http://wordpress.org/extend/plugins/wibstats-statistics-for-wordpress-mu/</a>) for details of when I release the new version.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
