<?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: QuickStats 1.1</title>
	<atom:link href="http://www.symbolengine.com/index.php/2006/12/12/quickstats-11/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.symbolengine.com/index.php/2006/12/12/quickstats-11/</link>
	<description>C64, Amiga, GP2x and Wordpress goodness...</description>
	<lastBuildDate>Wed, 06 Jan 2010 19:23:50 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Linlin Yan</title>
		<link>http://www.symbolengine.com/index.php/2006/12/12/quickstats-11/comment-page-1/#comment-60656</link>
		<dc:creator>Linlin Yan</dc:creator>
		<pubDate>Wed, 15 Jul 2009 11:49:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.symbolengine.com/index.php/2006/12/12/quickstats-11/#comment-60656</guid>
		<description>Thanks for your great work! I&#039;m using the plug-in in my blog and feel it very convenient. But some part of the stat page is not so good. So I read the code and did some modification, and also I have learned many things in it. BTW, it seems that you have not updated it for a long time. Will you keep on improving it?</description>
		<content:encoded><![CDATA[<p>Thanks for your great work! I&#8217;m using the plug-in in my blog and feel it very convenient. But some part of the stat page is not so good. So I read the code and did some modification, and also I have learned many things in it. BTW, it seems that you have not updated it for a long time. Will you keep on improving it?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: tetris4</title>
		<link>http://www.symbolengine.com/index.php/2006/12/12/quickstats-11/comment-page-1/#comment-59807</link>
		<dc:creator>tetris4</dc:creator>
		<pubDate>Sun, 05 Jul 2009 23:02:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.symbolengine.com/index.php/2006/12/12/quickstats-11/#comment-59807</guid>
		<description>Hi and thnx for this plugin!

I wonder, is there a way to change the timing so it is set to my local settings?</description>
		<content:encoded><![CDATA[<p>Hi and thnx for this plugin!</p>
<p>I wonder, is there a way to change the timing so it is set to my local settings?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sven</title>
		<link>http://www.symbolengine.com/index.php/2006/12/12/quickstats-11/comment-page-1/#comment-57428</link>
		<dc:creator>Sven</dc:creator>
		<pubDate>Fri, 29 May 2009 07:08:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.symbolengine.com/index.php/2006/12/12/quickstats-11/#comment-57428</guid>
		<description>Okay, sorry for making such a mess, didn&#039;t work aswell.
Started from scratch with the Wordpress API as reference rather than some other plugins

This one really works, creates a QuickStats menu with two submenus, statistics and options

&lt;code&gt;
function JQ_register_admin_panel() {
	if (function_exists(&#039;add_options_page&#039;)) {
		add_menu_page(&#039;QuickStats&#039;, &#039;QuickStats&#039;, 8, basename(__FILE__), &#039;JQ_stats&#039;);
		add_submenu_page(__FILE__, &#039;QuickStats&#039;, &#039;Statistics&#039;, 8, basename(__FILE__), &#039;JQ_stats&#039;);
		add_submenu_page(__FILE__, &#039;QuickStats Options&#039;, &#039;Options&#039;, 8, &#039;Options&#039;, &#039;JQ_stat_options_subpanel&#039;);
	}
}
&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>Okay, sorry for making such a mess, didn&#8217;t work aswell.<br />
Started from scratch with the Wordpress API as reference rather than some other plugins</p>
<p>This one really works, creates a QuickStats menu with two submenus, statistics and options</p>
<p><code><br />
function JQ_register_admin_panel() {<br />
	if (function_exists('add_options_page')) {<br />
		add_menu_page('QuickStats', 'QuickStats', 8, basename(__FILE__), 'JQ_stats');<br />
		add_submenu_page(__FILE__, 'QuickStats', 'Statistics', 8, basename(__FILE__), 'JQ_stats');<br />
		add_submenu_page(__FILE__, 'QuickStats Options', 'Options', 8, 'Options', 'JQ_stat_options_subpanel');<br />
	}<br />
}<br />
</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sven</title>
		<link>http://www.symbolengine.com/index.php/2006/12/12/quickstats-11/comment-page-1/#comment-57426</link>
		<dc:creator>Sven</dc:creator>
		<pubDate>Fri, 29 May 2009 05:48:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.symbolengine.com/index.php/2006/12/12/quickstats-11/#comment-57426</guid>
		<description>Sorry, that submenu isn&#039;t supposed to be in the function, it should thus be : 

function JQ_register_admin_panel() {
if (function_exists(’add_options_page’)) {
add_options_page(’QuickStats’, ‘Quick Stats’, 1, basename(__FILE__), ‘JQ_stat_options_subpanel’);
add_menu_page(’JQStats’, ‘QuickStats’, 1, __FILE__,’JQ_stats’);
}
}</description>
		<content:encoded><![CDATA[<p>Sorry, that submenu isn&#8217;t supposed to be in the function, it should thus be : </p>
<p>function JQ_register_admin_panel() {<br />
if (function_exists(’add_options_page’)) {<br />
add_options_page(’QuickStats’, ‘Quick Stats’, 1, basename(__FILE__), ‘JQ_stat_options_subpanel’);<br />
add_menu_page(’JQStats’, ‘QuickStats’, 1, __FILE__,’JQ_stats’);<br />
}<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sven</title>
		<link>http://www.symbolengine.com/index.php/2006/12/12/quickstats-11/comment-page-1/#comment-57402</link>
		<dc:creator>Sven</dc:creator>
		<pubDate>Thu, 28 May 2009 22:10:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.symbolengine.com/index.php/2006/12/12/quickstats-11/#comment-57402</guid>
		<description>Never mind, fixed it by rewriting the admin panel registration function

For those interested change the function to this : 

function JQ_register_admin_panel() {
	if (function_exists(&#039;add_options_page&#039;)) {
		add_options_page(&#039;QuickStats&#039;, &#039;Quick Stats&#039;, 1, basename(__FILE__), &#039;JQ_stat_options_subpanel&#039;);
		add_menu_page(&#039;JQStats&#039;, &#039;QuickStats&#039;, 1, __FILE__,&#039;JQ_stats&#039;);
		add_submenu_page(__FILE__, __(&#039;Summary&#039;,&#039;quickstats&#039;), __(&#039;Summary&#039;, &#039;quickstats&#039;), 1, __FILE__, &#039;cs_summary&#039;);	
	}
}</description>
		<content:encoded><![CDATA[<p>Never mind, fixed it by rewriting the admin panel registration function</p>
<p>For those interested change the function to this : </p>
<p>function JQ_register_admin_panel() {<br />
	if (function_exists(&#8217;add_options_page&#8217;)) {<br />
		add_options_page(&#8217;QuickStats&#8217;, &#8216;Quick Stats&#8217;, 1, basename(__FILE__), &#8216;JQ_stat_options_subpanel&#8217;);<br />
		add_menu_page(&#8217;JQStats&#8217;, &#8216;QuickStats&#8217;, 1, __FILE__,&#8217;JQ_stats&#8217;);<br />
		add_submenu_page(__FILE__, __(&#8217;Summary&#8217;,'quickstats&#8217;), __(&#8217;Summary&#8217;, &#8216;quickstats&#8217;), 1, __FILE__, &#8216;cs_summary&#8217;);<br />
	}<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sven</title>
		<link>http://www.symbolengine.com/index.php/2006/12/12/quickstats-11/comment-page-1/#comment-57395</link>
		<dc:creator>Sven</dc:creator>
		<pubDate>Thu, 28 May 2009 21:47:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.symbolengine.com/index.php/2006/12/12/quickstats-11/#comment-57395</guid>
		<description>trying to het this running with Wordpress 2.7.1, the plugin activates, creates the tables and inserts data when clicked on a page on my site.
But i can&#039;t seem to find where to actually get to see that table data (there&#039;s no amdin-&gt;manage page in wp 2.7.1 it seems)
Any ideas?</description>
		<content:encoded><![CDATA[<p>trying to het this running with Wordpress 2.7.1, the plugin activates, creates the tables and inserts data when clicked on a page on my site.<br />
But i can&#8217;t seem to find where to actually get to see that table data (there&#8217;s no amdin-&gt;manage page in wp 2.7.1 it seems)<br />
Any ideas?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kerry</title>
		<link>http://www.symbolengine.com/index.php/2006/12/12/quickstats-11/comment-page-1/#comment-57031</link>
		<dc:creator>Kerry</dc:creator>
		<pubDate>Fri, 22 May 2009 15:11:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.symbolengine.com/index.php/2006/12/12/quickstats-11/#comment-57031</guid>
		<description>:sad: Unfortunately there is a VERY BIG problem. This is not at all portable. Because there is extensive use of short tags it will CRASH :eek: a wordpress system where the php short tags is turned off (the php error is: parse error in [file path]/quickstats.php at line 381 - which happens to be the end of the file). In fact the php developers recommend that short tags be turned off for portability and no development should be done using short tags.
The majority of the short tags used are just short cuts (such has having  instead of . The remainder are just normal short tags (</description>
		<content:encoded><![CDATA[<p>:sad: Unfortunately there is a VERY BIG problem. This is not at all portable. Because there is extensive use of short tags it will CRASH :eek: a wordpress system where the php short tags is turned off (the php error is: parse error in [file path]/quickstats.php at line 381 &#8211; which happens to be the end of the file). In fact the php developers recommend that short tags be turned off for portability and no development should be done using short tags.<br />
The majority of the short tags used are just short cuts (such has having  instead of . The remainder are just normal short tags (</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Justin Dessonville</title>
		<link>http://www.symbolengine.com/index.php/2006/12/12/quickstats-11/comment-page-1/#comment-56608</link>
		<dc:creator>Justin Dessonville</dc:creator>
		<pubDate>Mon, 11 May 2009 20:41:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.symbolengine.com/index.php/2006/12/12/quickstats-11/#comment-56608</guid>
		<description>3 things:

1: Great Plugin, simple and effective
2: Link from Version 1.1 from plugin installer still goes to 1.0 (where you link to this post)
3: Bug in Option to not track administrative pages.  Only works when you also check to disable tracking on local referrers.  If both are not checked, all traffic on the admin side is tracked.  

Confused me for a bit.

Thanks,
dez</description>
		<content:encoded><![CDATA[<p>3 things:</p>
<p>1: Great Plugin, simple and effective<br />
2: Link from Version 1.1 from plugin installer still goes to 1.0 (where you link to this post)<br />
3: Bug in Option to not track administrative pages.  Only works when you also check to disable tracking on local referrers.  If both are not checked, all traffic on the admin side is tracked.  </p>
<p>Confused me for a bit.</p>
<p>Thanks,<br />
dez</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Shelley</title>
		<link>http://www.symbolengine.com/index.php/2006/12/12/quickstats-11/comment-page-1/#comment-55595</link>
		<dc:creator>Shelley</dc:creator>
		<pubDate>Wed, 22 Apr 2009 02:09:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.symbolengine.com/index.php/2006/12/12/quickstats-11/#comment-55595</guid>
		<description>Love your plugin! I was so happy to finally find one that did exactly what I needed. Question tho, is there a way to allow non-admins to be able to view the stats? Such as an editor? I&#039;ve already hard coded the link into the menu, but I still get a &quot;You do not have sufficient permissions to access this page&quot; error, so I&#039;m figuring there&#039;s an admin catch somewhere in there but I couldnt decifier it. Hoping you can help as it is a great plugin! 
Thanks!</description>
		<content:encoded><![CDATA[<p>Love your plugin! I was so happy to finally find one that did exactly what I needed. Question tho, is there a way to allow non-admins to be able to view the stats? Such as an editor? I&#8217;ve already hard coded the link into the menu, but I still get a &#8220;You do not have sufficient permissions to access this page&#8221; error, so I&#8217;m figuring there&#8217;s an admin catch somewhere in there but I couldnt decifier it. Hoping you can help as it is a great plugin!<br />
Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Josh</title>
		<link>http://www.symbolengine.com/index.php/2006/12/12/quickstats-11/comment-page-1/#comment-7357</link>
		<dc:creator>Josh</dc:creator>
		<pubDate>Sun, 18 May 2008 14:40:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.symbolengine.com/index.php/2006/12/12/quickstats-11/#comment-7357</guid>
		<description>I have multiple wordpress instances using the same wordpressdb.  What I did to use this plugin on both of the blogs that I host was to edit the two php files and replace wp_ with the two characters I used from the wp-config.php settings file, so that I could have multiple tables for the quickstats.  If you do not do this when you try and use quickstats on more than one wordpress instance it will not work on more than one, the others say fail to create table (because it already exists)</description>
		<content:encoded><![CDATA[<p>I have multiple wordpress instances using the same wordpressdb.  What I did to use this plugin on both of the blogs that I host was to edit the two php files and replace wp_ with the two characters I used from the wp-config.php settings file, so that I could have multiple tables for the quickstats.  If you do not do this when you try and use quickstats on more than one wordpress instance it will not work on more than one, the others say fail to create table (because it already exists)</p>
]]></content:encoded>
	</item>
</channel>
</rss>
