<?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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Diarizing &#187; Software</title>
	<atom:link href="http://www.diarizing.com/category/software/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.diarizing.com</link>
	<description>Some cool people kick ass. Chuck Norris roundhouse kick ass.</description>
	<lastBuildDate>Tue, 08 Jun 2010 07:13:34 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>WordPress, Feedburner and sitemaps</title>
		<link>http://www.diarizing.com/wordpress-feedburner-and-sitemaps/</link>
		<comments>http://www.diarizing.com/wordpress-feedburner-and-sitemaps/#comments</comments>
		<pubDate>Tue, 08 Jun 2010 07:13:34 +0000</pubDate>
		<dc:creator>Stefano</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.diarizing.com/?p=50</guid>
		<description><![CDATA[If you use Feedburner for your wordpress feed, you probably use the FD Feedburner plugin for WordPress . The plugin is cool because it redirects your users to your Feedburner while letting Feedburner itself accessing your wordpress feed; and it&#8217;s really simple to configure. But if you want to submit your feed to Google Webmaster [...]]]></description>
			<content:encoded><![CDATA[<p>If you use <strong>Feedburner</strong> for your wordpress feed, you probably use the <a href="http://flagrantdisregard.com/feedburner/" class="liexternal">FD Feedburner plugin for WordPress</a> . The plugin is cool because it redirects your users to your Feedburner while letting Feedburner itself accessing your wordpress feed; and it&#8217;s really simple to configure.</p>
<p><strong>But if you want to submit your feed to Google Webmaster Tools</strong>, Google will be redirected to your Feedburner too. While you may expect it to work, in some case it won&#8217;t. If you track clicks on Feedburner in fact, your feed will have changed links in it. Feedburner changes the &lt;link&gt;URL&lt;/link&gt; to an internal URL that will redirect to your own URL after tracking stuff.</p>
<p>As a consequence, <strong>if you submit your feed as a sitemap on Google Webmaster Tools, Google will show you errors</strong> like this:</p>
<p><img class="alignnone size-full wp-image-51" title="Feedburner and Google sitemap" src="http://www.diarizing.com/wp-content/uploads/2010/06/feedburner-sitemap.png" alt="Feedburner and Google sitemap" width="479" height="236" /></p>
<p>This happens because the URLs in the Feedburner feed are not into your own domain but on http://feedproxy.google.com/</p>
<p>To fix this behaviour, easiest solution is <strong>having Google accessing your original feed</strong> (http://yourblog.tld/feed/) instead of being redirect to Feedburner. This can be easily done with a <strong>little</strong> change in the plugin.</p>
<p>Edit your plugin (with a text editor accessing the file via ftp, or just from the dashboard -&gt; Plugins -&gt; Editor, and select the FD Feedburner plugin) and look for this piece of code:</p>
<blockquote><p>function feedburner_redirect() {<br />
global $feed, $withcomments, $wp, $wpdb, $wp_version, $wp_db_version;</p>
<p>// Do nothing if not a feed<br />
if (!is_feed()) return;</p>
<p>// Do nothing if feedburner is the user-agent<br />
if (preg_match(&#8216;/feedburner/i&#8217;, $_SERVER['HTTP_USER_AGENT'])) return;</p>
<p>// Do nothing if not configured<br />
$options = get_option(&#8216;fd_feedburner&#8217;);<br />
if (!isset($options['feedburner_url'])) $options['feedburner_url'] = null;</p></blockquote>
<p>Just change the line</p>
<blockquote><p>if (preg_match(&#8216;/feedburner/i&#8217;, $_SERVER['HTTP_USER_AGENT'])) return;</p></blockquote>
<p>with:</p>
<blockquote><p>if (preg_match(&#8216;/(feedburner|google)/i&#8217;, $_SERVER['HTTP_USER_AGENT'])) return;</p></blockquote>
<p>and you are done. Google won&#8217;t be redirected to your Feedburner feed, and it will use your original feed as sitemap.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.diarizing.com/wordpress-feedburner-and-sitemaps/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bigdump</title>
		<link>http://www.diarizing.com/bigdump/</link>
		<comments>http://www.diarizing.com/bigdump/#comments</comments>
		<pubDate>Fri, 08 May 2009 16:44:29 +0000</pubDate>
		<dc:creator>Stefano</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[mysql]]></category>

		<guid isPermaLink="false">http://www.diarizing.com/?p=42</guid>
		<description><![CDATA[Moving a website to a new hosting, i had the problem of importing the database. In fact, export was too much big (30Mb) compared to allowed size of upload files via phpmyadmin on new hosting (1Mb &#8211; where &#8220;M&#8221; maybe stands for &#8220;miserable&#8221;). Of course, no shell access&#8230; So? Fortunately, i found BigDump, a GPL [...]]]></description>
			<content:encoded><![CDATA[<p>Moving a website to a new hosting, i had the problem of importing the database. In fact, export was too much big (30Mb) compared to allowed size of upload files via phpmyadmin on new hosting (1Mb &#8211; where &#8220;M&#8221; maybe stands for &#8220;miserable&#8221;). Of course, no shell access&#8230; </p>
<p>So? Fortunately, i found <a href="http://www.ozerov.de/bigdump.php" class="liexternal">BigDump</a>, a GPL script that allows to import into the new database the exported file. Excellent!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.diarizing.com/bigdump/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>302 loops with Pligg</title>
		<link>http://www.diarizing.com/302-loops-with-pligg/</link>
		<comments>http://www.diarizing.com/302-loops-with-pligg/#comments</comments>
		<pubDate>Tue, 14 Aug 2007 09:43:12 +0000</pubDate>
		<dc:creator>Stefano</dc:creator>
				<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.diarizing.com/302-loops-with-pligg/</guid>
		<description><![CDATA[Yesterday i spent many hours trying to fix a 302 loop with Pligg (a great piece of open source software to create a Digg clone site), so i&#8217;m gonna post here the (easy) solution, just in case someone else have same problem. Installed Pligg and enabled search engine friendly URL (Pligg calls it URL Method [...]]]></description>
			<content:encoded><![CDATA[<p>Yesterday i spent <strong>many hours</strong> trying to fix a <strong>302 loop</strong> with <a href="http://www.pligg.com" class="liexternal">Pligg</a> (a great piece of open source software to create a <a href="http://digg.com" class="liexternal">Digg</a> clone site), so i&#8217;m gonna post here the (easy) solution, just in case someone else have same problem.</p>
<p>Installed Pligg and enabled search engine friendly URL (Pligg calls it <em>URL Method 2</em>), i<strong> had a loop of 302 redirects when i tried to visit users page</strong>.</p>
<p>Apache&#8217;s error log file said &#8220;<em>Negotiation: discovered file(s) matching request: /path/to/vhost/domain.tld/htdocs/index.html (None could be negotiated).</em>&#8221; and it should had tell me something, but i haven&#8217;t be able to look for the solution in the right place (Google is not always the best place&#8230;).</p>
<p>Apache&#8217;s access log file showed a bunch of 302 redirects. So, the problem was a loop of 302 redirects (and page wasn&#8217;t loaded, of course).</p>
<p>Where the problem was? I immediately thought to look in <strong>.htaccess</strong> file, but after i commented every single rewrite instruction i still had the problem. Then, i looked at <strong>Apache&#8217;s configuration</strong> to remember how virtual host are configured (i use VHCS on the server i installed Pligg).</p>
<p>At that point, <strong>something catched my eyes</strong>. In fact, vhosts have this line:</p>
<blockquote><p>Options Indexes Includes FollowSymLinks MultiViews</p></blockquote>
<p>In .htaccess file i had the line:</p>
<blockquote><p>Options +Indexes +FollowSymlinks</p></blockquote>
<p>So, looking for explanation of every option <strong>in Apache documentation</strong>, i found out that <strong>MultiViews was the option giving problems to me</strong> (more info <a href="http://httpd.apache.org/docs/2.2/content-negotiation.html" class="liexternal">here</a>).</p>
<p>And adding -MultiViews to the line above fixed the problem. So, just change</p>
<blockquote><p>Options +Indexes +FollowSymlinks</p></blockquote>
<p>to</p>
<blockquote><p>Options +Indexes +FollowSymlinks -MultiViews</p></blockquote>
<p>if you have the same problem of 302 redirects loop.</p>
<p>I spent many hours to find it out, so i hope this post can <strong>save your time</strong> in case you have the same problem.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.diarizing.com/302-loops-with-pligg/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mass mailing software</title>
		<link>http://www.diarizing.com/mass-mailing-software/</link>
		<comments>http://www.diarizing.com/mass-mailing-software/#comments</comments>
		<pubDate>Thu, 17 May 2007 00:58:57 +0000</pubDate>
		<dc:creator>Stefano</dc:creator>
				<category><![CDATA[Marketing]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.diarizing.com/mass-mailing-software/</guid>
		<description><![CDATA[If you are looking for a versatile mass mailing software, written in PHP and freely provided under the GPL, you should definitely try poMMo.]]></description>
			<content:encoded><![CDATA[<p>If you are looking for a versatile mass mailing software, written in PHP and <em>freely provided</em> under the <a href="http://www.gnu.org/copyleft/gpl.html" title="Gnu Public Licence" target="_blank" class="liexternal">GPL</a>, you should definitely try <a href="http://pommo.org/Main_Page" class="liexternal">poMMo</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.diarizing.com/mass-mailing-software/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
