Robert Douglass's blog

Drupal in Italy

Robert Douglass's picture

I recently did an interview about Acquia and Drupal with one of the leading IT magazines in Italy, Data Manager. The interview is running in the current print edition. Below you can find an English version of the interview.

The interview was arranged by one of Acquia's Italian partners, SinerVis, as part of a larger Drupal awareness campaign that culminated last week in the Do You Drupal? event that was held in Milan. Jam (Acquia's Senior Writer) and I attended and got to meet with colleagues from SinerVis as well as with members of "Associazione Drupal Italia", the non-profit that is promoting Drupal in Italy.

Robert Douglass Datamanager.it Interview

The take-away from the event was that Italy is seeing an explosion of interest in Drupal. Every company and service provider we talked to spoke of strong leads from many different industry segments, the need for training more drupalists, and an excitement for hosting more DrupalCamps (and possibly even a DrupalCon).

With such an acute need for training, it was good to learn that SinerVis, one of the leading companies for Drupal training in Italy, has as many as five Drupal courses each month with 10-12 people attending each one. They even teach a class on Drupal Gardens!

The demand for training was also mirrored in the response to the "Do You Drupal?" event. On the first day there was a room full of 50+ CIO/CTOs who listened to a range of presentations and discussions about Drupal and Acquia. Jam and I delivered a 2 hour (bilingual!) introduction to Acquia. The second part of the event, on the weekend, included training workshops for students and the general public. This drew over 200 people for two sessions. Jam ended up teaching for 5 hours, introducing Drupal, Acquia, and Drupal Gardens.

Robert Douglass Ice Cream Italy

Although I was only in Milano for one day I did manage to enjoy some of the cultural delights. This is me sampling some gelato with graphic designers and account managers from SinerVis. The market for Drupal has rarely looked better.


Here's the interview that appeared in Datamanager.it:

What is Drupal?

Drupal is a modern web content management system that meets the needs of organizations who value speed and flexibility in developing their web presence. It has a vast worldwide community of passionate developers who have built a library of over 5,000 add-on modules in the last nine years. These let you add nearly any feature to a Drupal site that you can imagine. Drupal's core code is also modular, enabling developers to change and maintain the system cleanly. This has made it very popular with people who want highly customized web sites and specific functionality. Read full article »

Google Fonts API - time to Drupal market - one day

Robert Douglass's picture

When Google announced their new Font API and Font Directory, they gave the web publishing world a great new tool that is ready to add real business value right now. The directory is a bid to close the gap between the rich visual possibilities of print media and the typographically impoverished World Wide Web. In Google's words:

"The Google Font API provides a simple, cross-browser method for using any font in the Google Font Directory on your web page. The fonts have all the advantages of normal text: in addition to being richer visually, text styled in web fonts is still searchable, scales crisply when zoomed, and is accessible to users using screen readers."

Google Fonts Read full article »

State-of-the-Art Search with Drupal and Apache Solr - FOSDEM 2010

Robert Douglass's picture

Use Apache Solr to search in files

Robert Douglass's picture

Drupal's file handling capabilities keep getting better. Beyond the core upload module, the filefield module for CCK has enabled us to build sites with all sorts of files; documents, images, music, videos, and so forth. Searching within these docuements, however, has never been a common feature on Drupal sites. Some solutions have existed, particularly for extracting texts from PDFs and common wordprocessing documents. With Apache Solr, the attachments module, and an extension library called Tika, things can be much better. With Tika you can extract texts not only from Microsoft Office, Open Office, and PDF documents, you can also get text and metadata from images, songs, Flash movies and zipped archives. Searching for these texts is done as part of the normal Apache Solr driven site search. Read full article »

The S-Files: Getting the most out of Comment Notify

Robert Douglass's picture

Tech Support Case Studies

If Facebook has shown us anything, it's that website users like to get timely notifications via email if there is something new to be seen on the site. Acquia Drupal includes the comment notify module that can help achieve this goal for your site. It sends email messages to content authors and commentators whenever new comments are added to content. There are ample subscription options to suit everyone, and an unsubscribe mechanism so that nobody has to endure unwanted items in their inbox. Read full article »

Drupal DevRoom at Fosdem 2010

Robert Douglass's picture

FOSDEM is one of the great European tech conferences, held every year in Brussels. Two years ago I spoke there and introduced the Apache Solr module to the world. Dries and Gàbor introduced Acquia. So much has happened in those two years!

This year, on Sunday, February 7, I'll be back to once again talk about Apache Solr and state-of-the-art search techniques. There's a whole Drupal track, called the Drupal DevRoom, and plenty of other interesting sessions going on, too. If you can make it to Brussels for Fosdem I highly recommend it. It's full of that nitty-gritty hard-core geek stuff that makes open source software tick!

P.S.: The FOSDEM site uses Drupal, of course!

The S-Files: When node_load won't load, and the anonymous user has vanished

Robert Douglass's picture

Tech Support Case Studies

Use these two SQL commands to repair your Drupal 6 site to restore the anonymous user database record:

INSERT INTO users (name, mail) VALUES ('', '');
UPDATE users SET uid=0 WHERE name='';
Read full article »

The symptoms you'll see that tip you off that this is needed:
  1. node_load() is not loading nodes that you can prove are in the node table.
  2. node_delete() is not deleting nodes that you can prove are in the node table.
  3. The query SELECT * FROM users WHERE uid=0; returns zero rows.

Open Government, a citizen's excitement

Robert Douglass's picture

How refreshing it is when the US Government does something so right that my chest swells with pride and my heart fills with hope! How exciting it is that Drupal and Acquia can play a role in bringing openness to government. I'm referring to the Open Government Directive (OGD), an instruction from the President of the United States to all federal agencies to drastically change the way that government talks to and shares information with the public.

The OGD is predicated on three principles: transparancy, participation, and collaboration. Here I quote from the President's website:

Transparency promotes accountability by providing the public with information about what the Government is doing. Participation allows members of the public to contribute ideas and expertise so that their government can make policies with the benefit of information that is widely dispersed in society. Collaboration improves the effectiveness of Government by encouraging partnerships and cooperation within the Federal Government, across levels of government, and between the Government and private institutions. Read full article »

The S-Files: Adding a custom sort to Acquia Search (Apache Solr)

Robert Douglass's picture

Tech Support Case Studies

We've received several inquiries about adding custom sorts to the the sorting block on search results for our popular Acquia Search product. This is fortunately quite easy, though it currently involves preparing a custom module that implements one hook:
hook_apachesolr_prepare_query(&$query) Read full article »

<?php
  
function hook_apachesolr_prepare_query(&$query) {
    
// You can get the 'solr_field_name' from q=admin/reports/apachesolr
    
$query->set_available_sort('solr_field_name', array(
      
// how the sort link is to appear in the sorts block
      
'title' => t('Name of sort'),
      
'default' => 'asc', // or 'desc'
     
));
   }
?>

Acquia's Robert Douglass interview: Digital Marketing

Robert Douglass's picture

On October 22, 2009, I gave a keynote presentation at a digital marketing conference in Brussels. After my speech I was interviewed by the organizers of the conference. Here is the video. Note that my grandmother is actually 88, and really is on Facebook.