<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xml:base="http://www.vermario.com/home" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
 <title>Tag: drupal</title>
 <link>http://www.vermario.com/home/category/tags/drupal</link>
 <description>The taxonomy view with a depth of 0.</description>
 <language>it</language>
<item>
 <title>Fatto e consegnato</title>
 <link>http://www.vermario.com/home/2008/10/fattoconsegnato</link>
 <description>&lt;a href=&quot;http://www.vermario.com/home/files//tmp/placeholder.gif&quot; class=&quot;imagecache imagecache-resize imagecache-imagelink imagecache-resize_imagelink&quot;&gt;&lt;img src=&quot;http://www.vermario.com/home/files/imagecache/resize/%252Ftmp/placeholder.gif&quot; alt=&quot;&quot; title=&quot;&quot;  class=&quot;imagecache imagecache-resize&quot; /&gt;&lt;/a&gt;&lt;a href=&quot;http://www.vermario.com/home/files/codice.png&quot; class=&quot;imagecache imagecache-resize400 imagecache-imagelink imagecache-resize400_imagelink&quot;&gt;&lt;img src=&quot;http://www.vermario.com/home/files/imagecache/resize400/codice.png&quot; alt=&quot;codice.png&quot; title=&quot;codice.png&quot;  class=&quot;imagecache imagecache-resize400&quot; /&gt;&lt;/a&gt;&lt;p&gt;Oggi al &lt;a href=&quot;http://www.wedoo.it&quot;&gt;lavoro&lt;/a&gt; si lancia il nuovo sito di &lt;a href=&quot;http://www.codiceedizioni.it&quot;&gt;Codice Edizioni&lt;/a&gt;. Bel sito (ma qui non sono imparziale), gestito da bella gente. :)&lt;/p&gt;
</description>
 <comments>http://www.vermario.com/home/2008/10/fattoconsegnato#comments</comments>
 <category domain="http://www.vermario.com/home/category/tags/drupal">drupal</category>
 <category domain="http://www.vermario.com/home/category/tags/lavoro">lavoro</category>
 <enclosure url="http://www.vermario.com/home/files/" length="4096" />
 <media url="http://www.vermario.com/home/files/" fileSize="4096" type="" />
 <pubDate>Mon, 20 Oct 2008 12:57:36 +0200</pubDate>
 <dc:creator>vermario</dc:creator>
 <guid isPermaLink="false">556 at http://www.vermario.com/home</guid>
</item>
<item>
 <title>Installare Drupal 5 su aruba</title>
 <link>http://www.vermario.com/home/2008/04/installare-drupal-5-su-aruba</link>
 <description>&lt;a href=&quot;http://www.vermario.com/home/files//tmp/placeholder.gif&quot; class=&quot;imagecache imagecache-resize imagecache-imagelink imagecache-resize_imagelink&quot;&gt;&lt;img src=&quot;http://www.vermario.com/home/files/imagecache/resize/%252Ftmp/placeholder.gif&quot; alt=&quot;&quot; title=&quot;&quot;  class=&quot;imagecache imagecache-resize&quot; /&gt;&lt;/a&gt;&lt;a href=&quot;http://www.vermario.com/home/files//tmp/placeholder.gif&quot; class=&quot;imagecache imagecache-resize400 imagecache-imagelink imagecache-resize400_imagelink&quot;&gt;&lt;img src=&quot;http://www.vermario.com/home/files/imagecache/resize400/%252Ftmp/placeholder.gif&quot; alt=&quot;&quot; title=&quot;&quot;  class=&quot;imagecache imagecache-resize400&quot; /&gt;&lt;/a&gt;&lt;p&gt;&lt;a href=&quot;http://www.aruba.it&quot;&gt;Aruba&lt;/a&gt;, anche se piuttosto criticato, rimane un provider piuttosto usato qui da noi perchè costa proprio poco. Ce ne saranno di migliori, ma molti lo usano.&lt;/p&gt;
&lt;p&gt;Se usate &lt;a href=&quot;www.drupal.org&quot;&gt;drupal &lt;/a&gt;(come DOVRESTE fare, ovviamente!), potreste avere alcuni problemi, vediamo quali.&lt;/p&gt;
&lt;p&gt;1) Drupal, ogni tanto ha bisogno di una dose non bassissima di memoria (ad esempio per usare il modulo color, che è quello che consente di cambiare con un&#039;interfaccia grafica i colori di alcuni temi), e aruba di default le assegna di meno ad ogni utente.&lt;/p&gt;
&lt;p&gt;Quindi, per farlo funzionare dopo l&#039;installazione bisogna scrivere (va bene anche in fondo) nel file:&lt;/p&gt;
&lt;p&gt;&lt;em&gt;/sites/default/settings.php&lt;/em&gt;&lt;/p&gt;
&lt;div class=&quot;codice&quot;&gt;&lt;code&gt;ini_set(&#039;memory_limit&#039;, &#039;24M&#039;);&lt;/code&gt;&lt;/div&gt;
&lt;p&gt;In questo modo al processo di php viene data più memoria e tutto dovrebbe funzionare a dovere. :)&lt;/p&gt;
&lt;p&gt;2) Ah, altra cosa: Aruba &lt;strong&gt;richiede che tutti i file php abbiano i permessi impostati a 755, altrimenti sputa fuori un error 500&lt;/strong&gt;. Ricordatevelo! :)&lt;/p&gt;
&lt;p&gt;3) .htaccess: &lt;/p&gt;
&lt;p&gt;è un file nascosto (dato che inizia con il punto) che trovate nella cartella radice di drupal, in cui sono specificate alcune direttive per la configurazione del server. In pratica in questo file drupal cerca di sovrascrivere alcune impostazioni del server, cosa che ad aruba non va giù e quindi si passa all&#039;errore 500 di cui sopra.&lt;/p&gt;
&lt;p&gt;per ovviare al problema, dovete commentare (ossia aggiungere un # cancelletto davanti a queste tre righe (nel file non sono consecutive):&lt;/p&gt;
&lt;div class=&quot;codice&quot;&gt;
&lt;code&gt;&lt;br /&gt;
#Options -Indexes&lt;br /&gt;
#Options +FollowSymLinks&lt;br /&gt;
#DirectoryIndex index.php&lt;/code&gt;
&lt;/div&gt;
&lt;p&gt;4) .htaccess nella cartella files&lt;/p&gt;
&lt;p&gt;Occorre modificare il file lasciando solo la prima riga.&lt;/p&gt;
</description>
 <comments>http://www.vermario.com/home/2008/04/installare-drupal-5-su-aruba#comments</comments>
 <category domain="http://www.vermario.com/home/category/tags/aruba">aruba</category>
 <category domain="http://www.vermario.com/home/category/tags/drupal">drupal</category>
 <enclosure url="http://www.vermario.com/home/files/" length="4096" />
 <media url="http://www.vermario.com/home/files/" fileSize="4096" type="" />
 <pubDate>Sun, 27 Apr 2008 21:56:02 +0200</pubDate>
 <dc:creator>vermario</dc:creator>
 <guid isPermaLink="false">515 at http://www.vermario.com/home</guid>
</item>
<item>
 <title>Drupalvideo + lighttpd flv streaming in ubuntu</title>
 <link>http://www.vermario.com/home/2008/04/drupalvideo-+-lighttpd-streaming</link>
 <description>&lt;a href=&quot;http://www.vermario.com/home/files//tmp/placeholder.gif&quot; class=&quot;imagecache imagecache-resize imagecache-imagelink imagecache-resize_imagelink&quot;&gt;&lt;img src=&quot;http://www.vermario.com/home/files/imagecache/resize/%252Ftmp/placeholder.gif&quot; alt=&quot;&quot; title=&quot;&quot;  class=&quot;imagecache imagecache-resize&quot; /&gt;&lt;/a&gt;&lt;a href=&quot;http://www.vermario.com/home/files//tmp/placeholder.gif&quot; class=&quot;imagecache imagecache-resize400 imagecache-imagelink imagecache-resize400_imagelink&quot;&gt;&lt;img src=&quot;http://www.vermario.com/home/files/imagecache/resize400/%252Ftmp/placeholder.gif&quot; alt=&quot;&quot; title=&quot;&quot;  class=&quot;imagecache imagecache-resize400&quot; /&gt;&lt;/a&gt;&lt;p&gt;Fare youtube qualche anno fa vi avrebbe reso milionari, ora forse vi frutta una caramella due stecche di cannella, comunque, vale la pena provarci!&lt;/p&gt;
&lt;p&gt;Da un po&#039; uso il simpatico modulo di &lt;a href=&quot;http://www.travistidwell.com/flashvideo&quot;&gt;Tradis Tidwell &lt;/a&gt; per &lt;a href=&quot;http://www.drupal.org&quot;&gt;Drupal&lt;/a&gt; chiamato &lt;a href=&quot;http://drupal.org/project/flashvideo&quot;&gt;Flashvideo&lt;/a&gt;, che consente di fare l&#039;upload di video di quasi ogni formato (insomma, tutti i formati che ffmpeg capisce), convertirli automaticamente in flv e usarli come contenuto in drupal (quindi tramite views, integrarli con cck, eccetera).&lt;/p&gt;
&lt;p&gt;Quello che manca in questo idillio è lo streaming dei file, che sono gestiti in download progressivo. Ora, non è che ci sia poi così tanto di sbagliato nel download progressivo, tanti siti lo fanno e sono felici. Però, effettivamente, se hai a che fare con video lunghi, può essere utile poter andare alla fine del file senza aspettare. Poi, c&#039;è sempre un committente che te lo chiede per una sua ossessione, e poi da un po&#039; lo fanno google video e youtube, per cui anche noi che li imitiamo.&lt;/p&gt;
&lt;p&gt;Ci sono diverse soluzioni per effettuare lo streaming di file flv:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;flash media server - (nisba, è a pagamento)&lt;/li&gt;
&lt;li&gt;Red5 (opensource ma complicato, come la fusion per Eelst) :) ne parliamo più avanti&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.lighttpd.net/&quot;&gt;Lighttpd&lt;/a&gt; (leggero, gratis, funziona!)&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Vediamo come fare con &lt;a href=&quot;http://www.lighttpd.net/&quot;&gt;lighttpd&lt;/a&gt;, che, per chi non lo sapesse, è un webserver leggero ma avanzato, che può sostituire apache. In più, cosa che a noi fa tanto comodo, ha un bel modulo per lo streaming di file FLV incluso nella distribuzione.&lt;/p&gt;
&lt;p&gt;Dato che lighttpd può far girare (come cgi) php5, lo useremo, insieme a mysql per far girare drupal, e per servire i file FLV in streaming.&lt;/p&gt;
&lt;p&gt;Quindi, per prima cosa, dobbiamo installare lighttpd, mysql5 , php5, seguendo &lt;a href=&quot;http://www.ubuntugeek.com/lighttpd-webserver-setup-with-php5-and-mysql-support.html&quot;&gt;questa preziosa guida&lt;/a&gt;. Quando abbiamo installato il tutto e tutto funziona, possiamo installare &lt;a href=&quot;http://www.lullabot.com/videocast/installing_drupal_5&quot;&gt;drupal come al solito&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Quindi, scaricate il modulo e seguite quest&#039;altro  &lt;a href=&quot;http://www.travistidwell.com/flashvideo&quot;&gt; tutorial &lt;/a&gt; per impostarlo correttamente. (Già un sacco di tutorial da seguire. Ma qui stiamo mirando ai dollaroni! E non avrebbe moltro senso riscrivere tutto qui.&lt;/p&gt;
&lt;p&gt;Ok, quindi una volta che avete settato tutto, cominciamo con &quot;le cose nuove&quot;.&lt;/p&gt;
&lt;p&gt;Per prima cosa, attiviamo il modulo di streaming di lighttpd. Nel file:&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;/etc/lighttpd/lighttpd.conf&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;bisogna decommentare la riga che riguarda il modulo di streaming:&lt;/p&gt;
&lt;div class=&quot;codice&quot;&gt;&lt;code&gt;server.modules              = (&lt;br /&gt;
            &quot;mod_access&quot;,&lt;br /&gt;
            &quot;mod_alias&quot;,&lt;br /&gt;
            &quot;mod_accesslog&quot;,&lt;br /&gt;
            &quot;mod_compress&quot;,&lt;br /&gt;
#           &quot;mod_rewrite&quot;,&lt;br /&gt;
#           &quot;mod_redirect&quot;,&lt;br /&gt;
#           &quot;mod_status&quot;,&lt;br /&gt;
#           &quot;mod_evhost&quot;,&lt;br /&gt;
#           &quot;mod_usertrack&quot;,&lt;br /&gt;
#           &quot;mod_rrdtool&quot;,&lt;br /&gt;
#           &quot;mod_webdav&quot;,&lt;br /&gt;
#           &quot;mod_expire&quot;,&lt;br /&gt;
           &quot;mod_flv_streaming&quot;, //questa qua&lt;br /&gt;
#           &quot;mod_evasive&quot;&lt;br /&gt;
 )&lt;br /&gt;
&lt;/code&gt;&lt;/div&gt;
&lt;p&gt;e aggiungere la riga:&lt;/p&gt;
&lt;div class=&quot;codice&quot;&gt;&lt;code&gt;flv-streaming.extensions = ( &quot;.flv&quot; )&lt;/code&gt;&lt;/div&gt;
&lt;p&gt;Ok, facciamo ripartire lighttpd:&lt;/p&gt;
&lt;div class=&quot;codice&quot;&gt;&lt;code&gt;sudo /etc/init.d/lighttpd restart&lt;/code&gt;&lt;/div&gt;
&lt;p&gt;Ok, ora il server è pronto a gestire tramite streaming i file di tipo FLV.&lt;/p&gt;
&lt;p&gt;Perchè funzioni lo streaming, però, i file FLV devono contenere dei metadati, ed ffmpeg, che il modulo flashvideo usa per fare le conversioni, non li inserisce da solo. Abbiamo quindi bisogno di un programma che lo faccia per noi. Useremo un programma opensource chiamato Yamdi (Yet Another Medatada injector), che si scarica da &lt;a href=&quot;http://yamdi.sourceforge.net/&quot;&gt;qui&lt;/a&gt;.  Installiamolo e lo mettiamo in /usr/bin.&lt;/p&gt;
&lt;p&gt;Ora, dobbiamo settare alcune opzioni nel modulo flashvideo. (ma non toccheremo il codice, che è una gran cosa).&lt;/p&gt;
&lt;p&gt;Per prima cosa, dobbiamo avvertire il &lt;a href=&quot;http://www.jeroenwijering.com/?item=JW_FLV_Player&quot;&gt;player flash &lt;/a&gt; che deve funzionare in modalità streaming: nelle opzioni del moduo, sezione &lt;strong&gt;Flash player&lt;/strong&gt;, settare come segue:&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;http://www.vermario.com/home/files/images/opzione1.jpg&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Più in basso, nella sezione&lt;strong&gt; Ffmpeg Settings&lt;/strong&gt;, scrivere  nella casella &quot;ffmpeg command&quot;: &lt;/p&gt;
&lt;div class=&quot;codice&quot;&gt;&lt;code&gt;-i @input -v -1 -f flv -acodec mp3 -ar 22050 -b 400k -s 400x300 -ab 96k -ac 1 @output &amp;amp;&amp; /usr/bin/yamdi -i @output -o /tmp/yamdi.flv &amp;amp;&amp; /bin/mv /tmp/yamdi.flv @output &lt;/code&gt;&lt;/div&gt;
&lt;p&gt;Questo comando esegue la conversione, poi passa il file attraverso yamdi, e lo mette al posto giusto.&lt;/p&gt;
&lt;p&gt;Ok! Fatto! Ora i file video vengono serviti da lighttpd in modalità streaming, e siete un passo più vicino ai dollaroni! :)&lt;/p&gt;
</description>
 <comments>http://www.vermario.com/home/2008/04/drupalvideo-+-lighttpd-streaming#comments</comments>
 <category domain="http://www.vermario.com/home/category/tags/drupal">drupal</category>
 <category domain="http://www.vermario.com/home/category/tags/flashvideo">flashvideo</category>
 <category domain="http://www.vermario.com/home/category/tags/lighttpd">lighttpd</category>
 <category domain="http://www.vermario.com/home/category/tags/nerdism">nerdism</category>
 <category domain="http://www.vermario.com/home/category/tags/streaming">streaming</category>
 <category domain="http://www.vermario.com/home/category/tags/youtube">youtube</category>
 <enclosure url="http://www.vermario.com/home/files/" length="4096" />
 <media url="http://www.vermario.com/home/files/" fileSize="4096" type="" />
 <pubDate>Wed, 16 Apr 2008 18:29:42 +0200</pubDate>
 <dc:creator>vermario</dc:creator>
 <guid isPermaLink="false">509 at http://www.vermario.com/home</guid>
</item>
<item>
 <title>&quot;Mi faccio uno youtube&quot;</title>
 <link>http://www.vermario.com/home/2008/02/%2526quot%3Bmi-faccio-uno-youtube%2526quot%3B</link>
 <description>&lt;a href=&quot;http://www.vermario.com/home/files//tmp/placeholder.gif&quot; class=&quot;imagecache imagecache-resize imagecache-imagelink imagecache-resize_imagelink&quot;&gt;&lt;img src=&quot;http://www.vermario.com/home/files/imagecache/resize/%252Ftmp/placeholder.gif&quot; alt=&quot;&quot; title=&quot;&quot;  class=&quot;imagecache imagecache-resize&quot; /&gt;&lt;/a&gt;&lt;a href=&quot;http://www.vermario.com/home/files//tmp/placeholder.gif&quot; class=&quot;imagecache imagecache-resize400 imagecache-imagelink imagecache-resize400_imagelink&quot;&gt;&lt;img src=&quot;http://www.vermario.com/home/files/imagecache/resize400/%252Ftmp/placeholder.gif&quot; alt=&quot;&quot; title=&quot;&quot;  class=&quot;imagecache imagecache-resize400&quot; /&gt;&lt;/a&gt;&lt;p&gt;&lt;img src=&quot;http://www.vermario.com/home/files/screenshot.jpg&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Oggi al &lt;a href=&quot;http://barcamp.org/torinobarcamp2008&quot;&gt;Barcamp Torino &lt;/a&gt;potete sentire un disorganizzato intervento di me medesimo dal titolo &quot;&lt;a href=&quot;http://www.vermario.com/wiki/doku.php/uno_youtube_con_forbici_a_punta_arrotondata_collavinilica_drupal_e_ffmpeg&quot;&gt;Uno youtube con forbici a punta arrotondata collavinilica drupal e ffmpeg&lt;/a&gt;&quot;. Ho anche iniziato a scrivere un tutorial per l&#039;occasione, che avrei finito se non avessi dovuto passare le notti a tappare falle su server vari (maledetti!!). &lt;/p&gt;
&lt;p&gt;Ci vediamo alle due e mezza, portatevi le forbici arrotondate &quot;o fatevi aiutare da un grande&quot;! :)&lt;/p&gt;
</description>
 <comments>http://www.vermario.com/home/2008/02/%2526quot%3Bmi-faccio-uno-youtube%2526quot%3B#comments</comments>
 <category domain="http://www.vermario.com/home/category/tags/barcamp">barcamp</category>
 <category domain="http://www.vermario.com/home/category/tags/drupal">drupal</category>
 <category domain="http://www.vermario.com/home/category/tags/torino">torino</category>
 <enclosure url="http://www.vermario.com/home/files/screenshot.jpg" length="38712" type="image/jpeg" />
 <enclosure url="http://www.vermario.com/home/files/" length="4096" />
 <media url="http://www.vermario.com/home/files/" fileSize="4096" type="" />
 <pubDate>Sat, 23 Feb 2008 12:24:34 +0100</pubDate>
 <dc:creator>vermario</dc:creator>
 <guid isPermaLink="false">477 at http://www.vermario.com/home</guid>
</item>
<item>
 <title>Wordpress is for sissies and drupal will save the world</title>
 <link>http://www.vermario.com/home/2007/06/wordpress-sissies-and-drupal-will-save-world</link>
 <description>&lt;a href=&quot;http://www.vermario.com/home/files//tmp/placeholder.gif&quot; class=&quot;imagecache imagecache-resize imagecache-imagelink imagecache-resize_imagelink&quot;&gt;&lt;img src=&quot;http://www.vermario.com/home/files/imagecache/resize/%252Ftmp/placeholder.gif&quot; alt=&quot;&quot; title=&quot;&quot;  class=&quot;imagecache imagecache-resize&quot; /&gt;&lt;/a&gt;&lt;a href=&quot;http://www.vermario.com/home/files//tmp/placeholder.gif&quot; class=&quot;imagecache imagecache-resize400 imagecache-imagelink imagecache-resize400_imagelink&quot;&gt;&lt;img src=&quot;http://www.vermario.com/home/files/imagecache/resize400/%252Ftmp/placeholder.gif&quot; alt=&quot;&quot; title=&quot;&quot;  class=&quot;imagecache imagecache-resize400&quot; /&gt;&lt;/a&gt;&lt;p&gt;Ah here we are, some useless CMS war!&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;http://www.vermario.com/home/files/drupal.png&quot;&gt; &lt;strong&gt;VS &lt;/strong&gt; &lt;img src=&quot;http://www.vermario.com/home/files/wp.png&quot;&gt;&lt;/p&gt;
&lt;p&gt;I&#039;ve used them both. Both are great. &lt;a href=&quot;http://www.wordpress.org&quot;&gt;Wordpress&lt;/a&gt; is easier. Drupal is for real men. Wordpress has &lt;a href=&quot;themes.wordpress.net&quot;&gt;nicer themes&lt;/a&gt;. Drupal has a &lt;a href=&quot;http://drupal.org/project/Modules&quot;&gt;module &lt;/a&gt;for everything. It will polish your nails, buy you a drink, call a taxi to drive you home when you&#039;re drunk. Wordpress has a &lt;a href=&quot;http://www.wordpress.org&quot;&gt;nicer website&lt;/a&gt;. &lt;a href=&quot;http://drupal.org/project/Modules&quot;&gt;Drupal&#039;s website&lt;/a&gt; is super complex and slow. Wordpress is like a mac: you still have lots of options and you can alter them, but you normally don&#039;t because it looks pretty as it is. Drupal is more like linux: it&#039;s a bit ugly sometimes but you normally try different things until you find the right one (or &lt;a href=&quot;http://www.vermario.com/home/?q=node/243&quot;&gt;you make it&lt;/a&gt;). Wordpress is what you advice your mother to use because she will get it, Drupal lets you decide on everything and can get confusing sometimes (you don&#039;t want to find yourself in a phonecall &quot;how do i activate the (random) ejection seat module in the admin interface&quot; with your boss).&lt;/p&gt;
&lt;p&gt;Wordpress will make you look cool, but &lt;a href=&quot;http://www.lullabot.com/articles/how_drupal_will_save_world&quot;&gt;Drupal will save the world&lt;/a&gt;! :D&lt;/p&gt;
&lt;p&gt;p.s.: the useless rant goes on on the discussion &lt;a href=&quot;http://drupal.org/node/29364&quot;&gt;Wordpress Vs. Drupal&lt;/a&gt;.&lt;/p&gt;
</description>
 <comments>http://www.vermario.com/home/2007/06/wordpress-sissies-and-drupal-will-save-world#comments</comments>
 <category domain="http://www.vermario.com/home/category/tags/drupal">drupal</category>
 <category domain="http://www.vermario.com/home/category/tags/flame">flame</category>
 <category domain="http://www.vermario.com/home/category/tags/nerdism">nerdism</category>
 <enclosure url="http://www.vermario.com/home/files/" length="4096" />
 <media url="http://www.vermario.com/home/files/" fileSize="4096" type="" />
 <pubDate>Wed, 27 Jun 2007 11:15:46 +0200</pubDate>
 <dc:creator>vermario</dc:creator>
 <guid isPermaLink="false">253 at http://www.vermario.com/home</guid>
</item>
<item>
 <title>Drupal: narrowing the target</title>
 <link>http://www.vermario.com/home/2007/03/drupal%3A-narrowing-target</link>
 <description>&lt;a href=&quot;http://www.vermario.com/home/files//tmp/placeholder.gif&quot; class=&quot;imagecache imagecache-resize imagecache-imagelink imagecache-resize_imagelink&quot;&gt;&lt;img src=&quot;http://www.vermario.com/home/files/imagecache/resize/%252Ftmp/placeholder.gif&quot; alt=&quot;&quot; title=&quot;&quot;  class=&quot;imagecache imagecache-resize&quot; /&gt;&lt;/a&gt;&lt;a href=&quot;http://www.vermario.com/home/files//tmp/placeholder.gif&quot; class=&quot;imagecache imagecache-resize400 imagecache-imagelink imagecache-resize400_imagelink&quot;&gt;&lt;img src=&quot;http://www.vermario.com/home/files/imagecache/resize400/%252Ftmp/placeholder.gif&quot; alt=&quot;&quot; title=&quot;&quot;  class=&quot;imagecache imagecache-resize400&quot; /&gt;&lt;/a&gt;&lt;p&gt;&lt;img src=&quot;http://drupal.org/themes/bluebeach/logos/drupal.org.png&quot; class=&quot;alignleft&quot;&gt;I strongly feel that &lt;a href=&quot;http://www.drupal.org&quot;&gt;Drupal&lt;/a&gt; is currently the strongest and most active CMS around. (along with Plone, maybe... but Zope gives me headache, and I have bad experiences with plone).&lt;/p&gt;
&lt;p&gt;The problem and strongness of drupal are its modules: you can find practically anything, but you can definitely get lost in there. Then there are modules that will let you create new content types, new views... the possibilities are endless, really...&lt;/p&gt;
&lt;p&gt;So it&#039;s good news that they are trying to make it simpler using &lt;a href=&quot;http://drupal.org/project/Installation+profiles&quot;&gt;installation profiles&lt;/a&gt;: collection of modules and settings that will make the average cms user simpler! for now there are just some examples (among which &quot;Drupal for churches!&quot; I have to test it! :D ) but I&#039;m sure they will make 10 000 of them (and we will be back to square one!).&lt;/p&gt;
</description>
 <comments>http://www.vermario.com/home/2007/03/drupal%3A-narrowing-target#comments</comments>
 <category domain="http://www.vermario.com/home/category/tags/drupal">drupal</category>
 <enclosure url="http://www.vermario.com/home/files/" length="4096" />
 <media url="http://www.vermario.com/home/files/" fileSize="4096" type="" />
 <pubDate>Tue, 27 Mar 2007 23:05:58 +0200</pubDate>
 <dc:creator>vermario</dc:creator>
 <guid isPermaLink="false">219 at http://www.vermario.com/home</guid>
</item>
<item>
 <title>New home for www.vermario.com!</title>
 <link>http://www.vermario.com/home/2006/11/new-home-www.vermario.com%21</link>
 <description>&lt;a href=&quot;http://www.vermario.com/home/files//tmp/placeholder.gif&quot; class=&quot;imagecache imagecache-resize imagecache-imagelink imagecache-resize_imagelink&quot;&gt;&lt;img src=&quot;http://www.vermario.com/home/files/imagecache/resize/%252Ftmp/placeholder.gif&quot; alt=&quot;&quot; title=&quot;&quot;  class=&quot;imagecache imagecache-resize&quot; /&gt;&lt;/a&gt;&lt;a href=&quot;http://www.vermario.com/home/files//tmp/placeholder.gif&quot; class=&quot;imagecache imagecache-resize400 imagecache-imagelink imagecache-resize400_imagelink&quot;&gt;&lt;img src=&quot;http://www.vermario.com/home/files/imagecache/resize400/%252Ftmp/placeholder.gif&quot; alt=&quot;&quot; title=&quot;&quot;  class=&quot;imagecache imagecache-resize400&quot; /&gt;&lt;/a&gt;&lt;p&gt;To liven up the website, and try something new, here&amp;#39;s a brand new version of &lt;a href=&quot;http://www.vermario.com&quot;&gt;www.vermario.com&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;The underlying system has changed from &lt;a href=&quot;http://www.wordpress.org&quot;&gt;Wordpress&lt;/a&gt; to &lt;a href=&quot;http://www.drupal.org&quot;&gt;Drupal&lt;/a&gt;, but don&amp;#39;t worry! The rubbish content is still with us, it has been migrated completely! :)&lt;/p&gt;
&lt;p&gt;On the right (bad luck if you read this through an rss reader), there are updated links to the smart articles of Theodor and Splunge, that I generously host (&lt;em&gt;one day, and that day might even not come, i will ask you for a favor...&lt;/em&gt; :) ).&lt;/p&gt;
&lt;p&gt;Tagging is extensively  supported, and I&amp;#39;m trying to tag all the old posts, (i bet you will see a huge &amp;quot;Rubbish&amp;quot; tag, in the tag cloud on the left...&lt;/p&gt;
&lt;p&gt;A bit of cleaning is still necessary, and the theme will likely get some modifications, but I hope you like the new design! &lt;/p&gt;
</description>
 <comments>http://www.vermario.com/home/2006/11/new-home-www.vermario.com%21#comments</comments>
 <category domain="http://www.vermario.com/home/category/tags/drupal">drupal</category>
 <category domain="http://www.vermario.com/home/category/tags/redesign">redesign</category>
 <category domain="http://www.vermario.com/home/category/topics/whatever">Whatever</category>
 <category domain="http://www.vermario.com/home/category/tags/wordpress">wordpress</category>
 <enclosure url="http://www.vermario.com/home/files/" length="4096" />
 <media url="http://www.vermario.com/home/files/" fileSize="4096" type="" />
 <pubDate>Sun, 26 Nov 2006 18:07:40 +0100</pubDate>
 <dc:creator>vermario</dc:creator>
 <guid isPermaLink="false">186 at http://www.vermario.com/home</guid>
</item>
</channel>
</rss>

