<?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>Alessandro Bondi &#187; Tips&amp;Tricks</title>
	<atom:link href="http://blog.alessandrobondi.com/category/tipstricks/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.alessandrobondi.com</link>
	<description>Espositore di passioni</description>
	<lastBuildDate>Fri, 03 Feb 2012 07:41:18 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
		<item>
		<title>URL Seo Friendly per Joomla con IIS 7</title>
		<link>http://blog.alessandrobondi.com/2010/09/26/url-seo-friendly-joomla-con-iis-7/</link>
		<comments>http://blog.alessandrobondi.com/2010/09/26/url-seo-friendly-joomla-con-iis-7/#comments</comments>
		<pubDate>Sun, 26 Sep 2010 19:30:12 +0000</pubDate>
		<dc:creator>Alessandro Bondi</dc:creator>
				<category><![CDATA[Tips&Tricks]]></category>

		<guid isPermaLink="false">http://blog.alessandrobondi.com/?p=281</guid>
		<description><![CDATA[Ecco la regolina XML da mettere nel web.config del sito Joomla per attivare le url seo friendly: &#60;rewrite&#62; &#60;rules&#62; &#60;rule name="Joomla" enabled="true"&#62; &#60;match url="(.*)" ignoreCase="false" /&#62; &#60;conditions logicalGrouping="MatchAll"&#62; &#60;add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" pattern="" ignoreCase="false" /&#62; &#60;add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" pattern="" ignoreCase="false" /&#62; &#60;add input="{SCRIPT_NAME}" negate="true" pattern="^/index.php" ignoreCase="false" /&#62; &#60;add input="{SCRIPT_NAME}" pattern="(/&#124;\.php&#124;\.html&#124;\.htm&#124;\.feed&#124;\.pdf&#124;\.raw&#124;/[^.]*)$" /&#62; &#60;/conditions&#62; &#60;action type="Rewrite" url="index.php" /&#62; &#60;/rule&#62; &#60;/rules&#62; &#60;/rewrite&#62;]]></description>
		<wfw:commentRss>http://blog.alessandrobondi.com/2010/09/26/url-seo-friendly-joomla-con-iis-7/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Scaricamento fallito.: 200: Operation timed out after 1 seconds with 0 bytes received</title>
		<link>http://blog.alessandrobondi.com/2010/09/21/scaricamento-fallito-200-operation-timed-out-after-1-seconds-with-0-bytes-received/</link>
		<comments>http://blog.alessandrobondi.com/2010/09/21/scaricamento-fallito-200-operation-timed-out-after-1-seconds-with-0-bytes-received/#comments</comments>
		<pubDate>Tue, 21 Sep 2010 05:58:45 +0000</pubDate>
		<dc:creator>Alessandro Bondi</dc:creator>
				<category><![CDATA[Tips&Tricks]]></category>

		<guid isPermaLink="false">http://blog.alessandrobondi.com/?p=279</guid>
		<description><![CDATA[Ieri provavo ad aggiornare i plugin di wordpress ma niente da fare, continuava a darmi questo messaggio d&#8217;errore. Scaricamento fallito.: 200: Operation timed out after 1 seconds with 0 bytes received. Tra l&#8217;altro mi sono accorto che lo stesso messaggio appariva nella dashboard. San Google ha risolto il mio problema, grazie a questo post: WordPress MU Site Upgrade Bug: Your server may not be able to connect to blogs running on it I opened wp-admin/wpmu-upgrade-site.php and wp-includes/http.php function &#38;_getTransport( $args = array() ) { on line number 94 of wp-includes/http.php, wordpress tests different http request methods exist on your server [...]]]></description>
		<wfw:commentRss>http://blog.alessandrobondi.com/2010/09/21/scaricamento-fallito-200-operation-timed-out-after-1-seconds-with-0-bytes-received/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Eliminare le cartelle .svn da un progetto SVN Subversion</title>
		<link>http://blog.alessandrobondi.com/2009/05/09/eliminare-le-cartelle-svn-da-un-progetto-svn-subversion/</link>
		<comments>http://blog.alessandrobondi.com/2009/05/09/eliminare-le-cartelle-svn-da-un-progetto-svn-subversion/#comments</comments>
		<pubDate>Sat, 09 May 2009 06:13:36 +0000</pubDate>
		<dc:creator>Alessandro Bondi</dc:creator>
				<category><![CDATA[Tips&Tricks]]></category>
		<category><![CDATA[subversion]]></category>

		<guid isPermaLink="false">http://blog.alessandrobondi.com/?p=133</guid>
		<description><![CDATA[LINUX / MAC OSX find . -name .svn -print0 &#124; xargs -0 rm -rf fonte: http://www.xnovo.it/2009/01/eliminare-le-cartelle-svn-da-un-progetto/ find . -type d -name .svn -depth -exec rm -rf {} \; fonte: http://blog.m1k.info/come-cancellare-cartelle-svn/ WINDOWS (file di registro per aggiunta voce al menu contestuale) Windows Registry Editor Version 5.00 [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Folder\shell\DeleteSVN] @=&#8221;Delete SVN Folders&#8221; [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Folder\shell\DeleteSVN\command] @=&#8221;cmd.exe /c \&#8221;TITLE Removing SVN Folders in %1 &#38;&#38; COLOR 9A &#38;&#38; FOR /r \&#8221;%1\&#8221; %%f IN (.svn) DO RD /s /q \&#8221;%%f\&#8221; \&#8221;" fonte: http://weblogs.asp.net/jgalloway/archive/2007/02/24/shell-command-remove-svn-folders.aspx]]></description>
		<wfw:commentRss>http://blog.alessandrobondi.com/2009/05/09/eliminare-le-cartelle-svn-da-un-progetto-svn-subversion/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Screenshot con OSX</title>
		<link>http://blog.alessandrobondi.com/2008/09/25/screenshot-con-osx/</link>
		<comments>http://blog.alessandrobondi.com/2008/09/25/screenshot-con-osx/#comments</comments>
		<pubDate>Thu, 25 Sep 2008 08:38:41 +0000</pubDate>
		<dc:creator>Alessandro Bondi</dc:creator>
				<category><![CDATA[Tips&Tricks]]></category>

		<guid isPermaLink="false">http://blog.alessandrobondi.com/?p=115</guid>
		<description><![CDATA[L&#8217;alternativa al tasto STAMP in OSX è questa combinazione di tasti: Mela+CTRL+Shift+3]]></description>
		<wfw:commentRss>http://blog.alessandrobondi.com/2008/09/25/screenshot-con-osx/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

