<?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: Wordpress Download Monitor Plugin</title>
	<atom:link href="http://blue-anvil.com/archives/wordpress-download-monitor-plugin/feed/" rel="self" type="application/rss+xml" />
	<link>http://blue-anvil.com/archives/wordpress-download-monitor-plugin/</link>
	<description>The online blogfolio of Mike Jolley</description>
	<lastBuildDate>Thu, 11 Mar 2010 22:32:22 +0000</lastBuildDate>
	
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Mike Jolley</title>
		<link>http://blue-anvil.com/archives/wordpress-download-monitor-plugin/comment-page-2/#comment-243</link>
		<dc:creator>Mike Jolley</dc:creator>
		<pubDate>Sat, 10 Mar 2007 02:15:06 +0000</pubDate>
		<guid isPermaLink="false">http://82.110.105.91/blue-anvil.co.uk/?p=31#comment-243</guid>
		<description>Say good bye to this post.........  The new one is now being posted. New version everyone!!!!! :)</description>
		<content:encoded><![CDATA[<p>Say good bye to this post&#8230;&#8230;&#8230;  The new one is now being posted. New version everyone!!!!! <img src='http://blue-anvil.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sheri</title>
		<link>http://blue-anvil.com/archives/wordpress-download-monitor-plugin/comment-page-2/#comment-244</link>
		<dc:creator>Sheri</dc:creator>
		<pubDate>Fri, 09 Mar 2007 04:23:45 +0000</pubDate>
		<guid isPermaLink="false">http://82.110.105.91/blue-anvil.co.uk/?p=31#comment-244</guid>
		<description>Hi Mike.  When I have a spare moment I&#039;ll revisit the query issue!  But for now I found an exclusion from the code that I think should be there, so I have included it into the wp_dlm_ins_button() function.  Right now you have the download option dropdown on just the page-new and post screens but not the post-new.  So I have changed this line of code:

if(	strpos($_SERVER[&#039;REQUEST_URI&#039;], &#039;post.php&#039;)
  	&#124;&#124; strstr($_SERVER[&#039;PHP_SELF&#039;], &#039;page-new.php&#039;))
  {

to

if(	strpos($_SERVER[&#039;REQUEST_URI&#039;], &#039;post.php&#039;)
  	&#124;&#124; strstr($_SERVER[&#039;PHP_SELF&#039;], &#039;page-new.php&#039;)
        &#124;&#124; strstr($_SERVER[&#039;PHP_SELF&#039;], &#039;post-new.php&#039;)  )
  {

Now the list appears when I want to use it in a new post. :)</description>
		<content:encoded><![CDATA[<p>Hi Mike.  When I have a spare moment I&#8217;ll revisit the query issue!  But for now I found an exclusion from the code that I think should be there, so I have included it into the wp_dlm_ins_button() function.  Right now you have the download option dropdown on just the page-new and post screens but not the post-new.  So I have changed this line of code:</p>
<p>if(	strpos($_SERVER['REQUEST_URI'], &#8216;post.php&#8217;)<br />
  	|| strstr($_SERVER['PHP_SELF'], &#8216;page-new.php&#8217;))<br />
  {</p>
<p>to</p>
<p>if(	strpos($_SERVER['REQUEST_URI'], &#8216;post.php&#8217;)<br />
  	|| strstr($_SERVER['PHP_SELF'], &#8216;page-new.php&#8217;)<br />
        || strstr($_SERVER['PHP_SELF'], &#8216;post-new.php&#8217;)  )<br />
  {</p>
<p>Now the list appears when I want to use it in a new post. <img src='http://blue-anvil.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike Jolley</title>
		<link>http://blue-anvil.com/archives/wordpress-download-monitor-plugin/comment-page-2/#comment-246</link>
		<dc:creator>Mike Jolley</dc:creator>
		<pubDate>Wed, 07 Mar 2007 17:23:58 +0000</pubDate>
		<guid isPermaLink="false">http://82.110.105.91/blue-anvil.co.uk/?p=31#comment-246</guid>
		<description>Hi, someone else mentioned my queries :( Im working on a solution, and some other add-ons. But if you find the problem/make optimisations please email me :)</description>
		<content:encoded><![CDATA[<p>Hi, someone else mentioned my queries <img src='http://blue-anvil.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' />  Im working on a solution, and some other add-ons. But if you find the problem/make optimisations please email me <img src='http://blue-anvil.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sheri</title>
		<link>http://blue-anvil.com/archives/wordpress-download-monitor-plugin/comment-page-2/#comment-245</link>
		<dc:creator>Sheri</dc:creator>
		<pubDate>Wed, 07 Mar 2007 14:32:20 +0000</pubDate>
		<guid isPermaLink="false">http://82.110.105.91/blue-anvil.co.uk/?p=31#comment-245</guid>
		<description>Thanks for the plugin. I have been using it for about a week with success...no issues right from the get go.

I just had one comment and that is with regard to the queries performed.  I debug often and discovered that your script shot my db queries through the roof.  I have modified the code to cache the results and delete the cache when a download occurs but that is just a quick fix until I have the time to get into the code.

Just thought I&#039;d mention it!

Thanks again for the plug-in! Enjoying the stats :-)</description>
		<content:encoded><![CDATA[<p>Thanks for the plugin. I have been using it for about a week with success&#8230;no issues right from the get go.</p>
<p>I just had one comment and that is with regard to the queries performed.  I debug often and discovered that your script shot my db queries through the roof.  I have modified the code to cache the results and delete the cache when a download occurs but that is just a quick fix until I have the time to get into the code.</p>
<p>Just thought I&#8217;d mention it!</p>
<p>Thanks again for the plug-in! Enjoying the stats <img src='http://blue-anvil.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike Jolley</title>
		<link>http://blue-anvil.com/archives/wordpress-download-monitor-plugin/comment-page-1/#comment-242</link>
		<dc:creator>Mike Jolley</dc:creator>
		<pubDate>Mon, 05 Mar 2007 11:23:31 +0000</pubDate>
		<guid isPermaLink="false">http://82.110.105.91/blue-anvil.co.uk/?p=31#comment-242</guid>
		<description>Can you show me the link to the file it is producing? It may be the wrong path.</description>
		<content:encoded><![CDATA[<p>Can you show me the link to the file it is producing? It may be the wrong path.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David</title>
		<link>http://blue-anvil.com/archives/wordpress-download-monitor-plugin/comment-page-1/#comment-235</link>
		<dc:creator>David</dc:creator>
		<pubDate>Mon, 05 Mar 2007 09:44:43 +0000</pubDate>
		<guid isPermaLink="false">http://82.110.105.91/blue-anvil.co.uk/?p=31#comment-235</guid>
		<description>This looks really handy and I can view my post correctly but I get a 404 error when I try and download the uploaded file itself. The upload folder permissions are correct. Any ideas what I can do to fix this?</description>
		<content:encoded><![CDATA[<p>This looks really handy and I can view my post correctly but I get a 404 error when I try and download the uploaded file itself. The upload folder permissions are correct. Any ideas what I can do to fix this?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dave Forde</title>
		<link>http://blue-anvil.com/archives/wordpress-download-monitor-plugin/comment-page-1/#comment-234</link>
		<dc:creator>Dave Forde</dc:creator>
		<pubDate>Sat, 03 Mar 2007 21:44:02 +0000</pubDate>
		<guid isPermaLink="false">http://82.110.105.91/blue-anvil.co.uk/?p=31#comment-234</guid>
		<description>Looks like a great plugin, I managed to get it to upload a file and used &quot;&lt;a href=&quot;download.php?id=1&quot; title=&quot;Version 1 downloaded 10 times&quot;&gt;Download title&lt;/a&gt;&quot; but when I went to view that post I got a 404 error.

What is the right code that I&#039;d use to have a link to a file and not publically show any stats, and just the link oto the file.</description>
		<content:encoded><![CDATA[<p>Looks like a great plugin, I managed to get it to upload a file and used &#8220;<a href="download.php?id=1" title="Version 1 downloaded 10 times">Download title</a>&#8221; but when I went to view that post I got a 404 error.</p>
<p>What is the right code that I&#8217;d use to have a link to a file and not publically show any stats, and just the link oto the file.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Steve Weintraub</title>
		<link>http://blue-anvil.com/archives/wordpress-download-monitor-plugin/comment-page-1/#comment-241</link>
		<dc:creator>Steve Weintraub</dc:creator>
		<pubDate>Wed, 21 Feb 2007 22:24:53 +0000</pubDate>
		<guid isPermaLink="false">http://82.110.105.91/blue-anvil.co.uk/?p=31#comment-241</guid>
		<description>GREAT plugin! I&#039;ve dropped you an email, as my questions require more space than would be fair here.</description>
		<content:encoded><![CDATA[<p>GREAT plugin! I&#8217;ve dropped you an email, as my questions require more space than would be fair here.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike Jolley</title>
		<link>http://blue-anvil.com/archives/wordpress-download-monitor-plugin/comment-page-1/#comment-240</link>
		<dc:creator>Mike Jolley</dc:creator>
		<pubDate>Wed, 21 Feb 2007 14:19:29 +0000</pubDate>
		<guid isPermaLink="false">http://82.110.105.91/blue-anvil.co.uk/?p=31#comment-240</guid>
		<description>&quot;Does this include image downloaded from my pages?&quot; - Do you mean can you allow images to be downloaded? If so I don&#039;t see why not.</description>
		<content:encoded><![CDATA[<p>&#8220;Does this include image downloaded from my pages?&#8221; &#8211; Do you mean can you allow images to be downloaded? If so I don&#8217;t see why not.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alfredo</title>
		<link>http://blue-anvil.com/archives/wordpress-download-monitor-plugin/comment-page-1/#comment-239</link>
		<dc:creator>Alfredo</dc:creator>
		<pubDate>Wed, 21 Feb 2007 13:05:58 +0000</pubDate>
		<guid isPermaLink="false">http://82.110.105.91/blue-anvil.co.uk/?p=31#comment-239</guid>
		<description>This is a really neat piece of plugin! Does this include image downloaded from my pages? thanks!</description>
		<content:encoded><![CDATA[<p>This is a really neat piece of plugin! Does this include image downloaded from my pages? thanks!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
