<?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: Support</title>
	<atom:link href="http://www.gabsoftware.com/support/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.gabsoftware.com</link>
	<description>Open-source software, useful tips, and more</description>
	<lastBuildDate>Mon, 06 Feb 2012 07:28:26 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Gabriel Hautclocq</title>
		<link>http://www.gabsoftware.com/support/comment-page-1/#comment-40911</link>
		<dc:creator>Gabriel Hautclocq</dc:creator>
		<pubDate>Tue, 31 Jan 2012 05:19:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.gabsoftware.com/?page_id=20#comment-40911</guid>
		<description>You&#039;re welcome :)</description>
		<content:encoded><![CDATA[<p>You&#8217;re welcome <img src='http://www.gabsoftware.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: gatomalo</title>
		<link>http://www.gabsoftware.com/support/comment-page-1/#comment-40885</link>
		<dc:creator>gatomalo</dc:creator>
		<pubDate>Mon, 30 Jan 2012 20:29:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.gabsoftware.com/?page_id=20#comment-40885</guid>
		<description>Thanks still working on PHP widget but I got what I wanted.

Regards,
gAtO</description>
		<content:encoded><![CDATA[<p>Thanks still working on PHP widget but I got what I wanted.</p>
<p>Regards,<br />
gAtO</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gabriel Hautclocq</title>
		<link>http://www.gabsoftware.com/support/comment-page-1/#comment-40781</link>
		<dc:creator>Gabriel Hautclocq</dc:creator>
		<pubDate>Sun, 29 Jan 2012 15:26:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.gabsoftware.com/?page_id=20#comment-40781</guid>
		<description>Hi GaTo,

In the current version of Counterize, it is only possible to insert graphs in pages or posts.

If you need a counter such as &quot;1234 visitors&quot; as in the bottom of my website, you can use the following code in your footer.php:

&lt;pre lang=&quot;PHP&quot; escaped=&quot;true&quot;&gt;
&lt;span class=&quot;counter&quot;&gt;&lt;?php echo counterize_getuniqueamount( 0, 3600 ); ?&gt; visitors&lt;/span&gt;
&lt;/pre&gt;

0 is for &quot;since forever&quot; and 3600 is for &quot;count only one visit if the same visitor visit the website less than 3600 seconds after the initial visit&quot;. Both values are optional.

If you want to display a counter for the current page/post, you can use the following code:

&lt;pre lang=&quot;PHP&quot; escaped=&quot;true&quot;&gt;
&lt;?php if( is_single() &#124;&#124; is_page() ): ?&gt;
&lt;p&gt;This page has been viewed &lt;?php echo counterize_current_post_hits(); ?&gt; times.&lt;/p&gt;
&lt;?php endif; ?&gt;
&lt;/pre&gt;

If you want to display this in a widget, please use the PHP widget.

Note that in the upcoming version of Counterize it will be possible to add counters directly into pages and posts using the [[counterize]] shortcode.</description>
		<content:encoded><![CDATA[<p>Hi GaTo,</p>
<p>In the current version of Counterize, it is only possible to insert graphs in pages or posts.</p>
<p>If you need a counter such as &#8220;1234 visitors&#8221; as in the bottom of my website, you can use the following code in your footer.php:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">&lt;span class=&quot;counter&quot;&gt;<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">echo</span> counterize_getuniqueamount<span style="color: #009900;">&#40;</span> <span style="color: #cc66cc;">0</span><span style="color: #339933;">,</span> <span style="color: #cc66cc;">3600</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span> visitors&lt;/span&gt;</pre></div></div>

<p>0 is for &#8220;since forever&#8221; and 3600 is for &#8220;count only one visit if the same visitor visit the website less than 3600 seconds after the initial visit&#8221;. Both values are optional.</p>
<p>If you want to display a counter for the current page/post, you can use the following code:</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: #b1b100;">if</span><span style="color: #009900;">&#40;</span> is_single<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">||</span> is_page<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">:</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
&lt;p&gt;This page has been viewed <span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">echo</span> counterize_current_post_hits<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span> times.&lt;/p&gt;
<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">endif</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span></pre></div></div>

<p>If you want to display this in a widget, please use the PHP widget.</p>
<p>Note that in the upcoming version of Counterize it will be possible to add counters directly into pages and posts using the [[counterize]] shortcode.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: gatomalo</title>
		<link>http://www.gabsoftware.com/support/comment-page-1/#comment-40779</link>
		<dc:creator>gatomalo</dc:creator>
		<pubDate>Sun, 29 Jan 2012 15:13:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.gabsoftware.com/?page_id=20#comment-40779</guid>
		<description>Help,
I not a programer I just want to display my total hits for the site in my blog. Is there some quick code cheat just to extract it. I&#039;m using Wordpress. 

Thanks,
GaTo</description>
		<content:encoded><![CDATA[<p>Help,<br />
I not a programer I just want to display my total hits for the site in my blog. Is there some quick code cheat just to extract it. I&#8217;m using WordPress. </p>
<p>Thanks,<br />
GaTo</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gabriel Hautclocq</title>
		<link>http://www.gabsoftware.com/support/comment-page-1/#comment-40052</link>
		<dc:creator>Gabriel Hautclocq</dc:creator>
		<pubDate>Thu, 19 Jan 2012 05:02:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.gabsoftware.com/?page_id=20#comment-40052</guid>
		<description>Hi Tristan,

I&#039;m sorry to answer that I do not know where the problem comes from. Are you running PHP in safe mode ?
I do not think that Counterize uses the /tmp directory, by the way.</description>
		<content:encoded><![CDATA[<p>Hi Tristan,</p>
<p>I&#8217;m sorry to answer that I do not know where the problem comes from. Are you running PHP in safe mode ?<br />
I do not think that Counterize uses the /tmp directory, by the way.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tristan</title>
		<link>http://www.gabsoftware.com/support/comment-page-1/#comment-40046</link>
		<dc:creator>Tristan</dc:creator>
		<pubDate>Thu, 19 Jan 2012 04:32:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.gabsoftware.com/?page_id=20#comment-40046</guid>
		<description>Hi 
I installed counterize 3.1.0 and as soon as I activated it it comes up with a message saying it cannot be run because it has caused a fatal error and has this message -

Warning: session_start() [function.session-start]: SAFE MODE Restriction in effect. The script whose uid is 670 is not allowed to access /tmp owned by uid 0 in /home/spanishf/public_html/wp-content/plugins/counterize/counterize.php on line 30

It also puts about 10 copies of the same plugin in my plugin list all of which are old versions which need updating. They all disappear if I delete the plugin. How do I fix this?</description>
		<content:encoded><![CDATA[<p>Hi<br />
I installed counterize 3.1.0 and as soon as I activated it it comes up with a message saying it cannot be run because it has caused a fatal error and has this message -</p>
<p>Warning: session_start() [function.session-start]: SAFE MODE Restriction in effect. The script whose uid is 670 is not allowed to access /tmp owned by uid 0 in /home/spanishf/public_html/wp-content/plugins/counterize/counterize.php on line 30</p>
<p>It also puts about 10 copies of the same plugin in my plugin list all of which are old versions which need updating. They all disappear if I delete the plugin. How do I fix this?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gabriel Hautclocq</title>
		<link>http://www.gabsoftware.com/support/comment-page-1/#comment-37487</link>
		<dc:creator>Gabriel Hautclocq</dc:creator>
		<pubDate>Fri, 23 Dec 2011 19:40:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.gabsoftware.com/?page_id=20#comment-37487</guid>
		<description>Hi Debbie, do you received my email?</description>
		<content:encoded><![CDATA[<p>Hi Debbie, do you received my email?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gabriel Hautclocq</title>
		<link>http://www.gabsoftware.com/support/comment-page-1/#comment-37486</link>
		<dc:creator>Gabriel Hautclocq</dc:creator>
		<pubDate>Fri, 23 Dec 2011 19:39:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.gabsoftware.com/?page_id=20#comment-37486</guid>
		<description>Hi Julian,

You have to add those lines on top of your wp-config.php, or it may not have the desired effect.</description>
		<content:encoded><![CDATA[<p>Hi Julian,</p>
<p>You have to add those lines on top of your wp-config.php, or it may not have the desired effect.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gabriel Hautclocq</title>
		<link>http://www.gabsoftware.com/support/comment-page-1/#comment-37485</link>
		<dc:creator>Gabriel Hautclocq</dc:creator>
		<pubDate>Fri, 23 Dec 2011 19:38:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.gabsoftware.com/?page_id=20#comment-37485</guid>
		<description>Hi Greg,

You will need a PHP widget to achieve that. Then in that widget you can put whatever PHP code you like, including Counterize functions ;)</description>
		<content:encoded><![CDATA[<p>Hi Greg,</p>
<p>You will need a PHP widget to achieve that. Then in that widget you can put whatever PHP code you like, including Counterize functions <img src='http://www.gabsoftware.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Debbie</title>
		<link>http://www.gabsoftware.com/support/comment-page-1/#comment-37240</link>
		<dc:creator>Debbie</dc:creator>
		<pubDate>Thu, 22 Dec 2011 05:38:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.gabsoftware.com/?page_id=20#comment-37240</guid>
		<description>Counterize ll has been installed for quite some time on our blog and it

recently stopped showing the figures for:
Visits based on day of month (only this month)
0
(It shows zero)

Can you help us with this issue? We will be happy to make a
donation for your services.

We have uninstalled, and reinstalled the plugin and it says it is
up to date.

We now uninstalled Counterize ll and installed Counterize 3.0.33
and it does exactly the same thing - which is it shows no stats for
the day of the month totals.

Any suggestions?

Thank you!

Debbie</description>
		<content:encoded><![CDATA[<p>Counterize ll has been installed for quite some time on our blog and it</p>
<p>recently stopped showing the figures for:<br />
Visits based on day of month (only this month)<br />
0<br />
(It shows zero)</p>
<p>Can you help us with this issue? We will be happy to make a<br />
donation for your services.</p>
<p>We have uninstalled, and reinstalled the plugin and it says it is<br />
up to date.</p>
<p>We now uninstalled Counterize ll and installed Counterize 3.0.33<br />
and it does exactly the same thing &#8211; which is it shows no stats for<br />
the day of the month totals.</p>
<p>Any suggestions?</p>
<p>Thank you!</p>
<p>Debbie</p>
]]></content:encoded>
	</item>
</channel>
</rss>

