328 Results
  • Latest
  • Oldest
Article
Posted on 15th March 2011
Takes about 2 mins to read

Drupalcon Chicago had a track for 'Core conversations' that were discussion focused and about the future of Drupal core. On the first day there were two sessions essentially about managing content and configuration in Drupal. They focused on the differences, similarity and possible solutions for moving content and configuration around and between sites. Greg Dunlap started a discussion about configuration management, he suggested that we shouldn't try to define a line between content and configuration...

Published in: #Drupal core #drupalcon
Article
Posted on 11th March 2011
Takes about 4 mins to read

Boosting terms in Solr search results produced by the Apache Solr Search module that integrates Solr with Drupal is something we had to do for a project recently. If a user has come to our website from a search engine, we can pick up the terms that they had originally searched for - and then boost any documents containing those terms in our own search pages, regardless of what they search for on our pages...

Published in: #Drupal #search #solr #Drupal Planet #Drupal 7
Article
Posted on 8th March 2011
Takes about 3 mins to read

Dries kicked off another Drupalcon today by giving his keynote presentation to the community. If you missed it then you can view it on the [Drupalcon website][1] but read on for my summary and thoughts. Dries has been doing these keynotes for a while now, and every one gets better and more polished. Today's was no exception. Dries summarised the process of Drupal 7 development and suggested changes and improvements to the Drupal 8 development...

Published in: #drupalcon #Drupal core
Article
Posted on 23rd February 2011
Takes about 1 min to read

We have been using mercury/pantheon to host sites for a while now, we love the fact that you can get a fully configured Drupal hosting environment with all the trimmings for very little work. Specifically we have been using linode for our actual hosting, they are well priced, offer a good product and (this WAS the deal breaker) have mercury/pantheon "stackscripts" ready to roll (a linode stack script is essentially a build script you can...

Published in: #hosting
Article
Posted on 22nd February 2011
Takes about 1 min to read

Another quick tip here: if you're working with the Apache Solr module, specifically looking at the documents that are being created from your nodes, and you want to print out the document and have a look at what fields and values are on your $document then if you did this: // Print the $document using the devel dpm function. dpm($document); Then you would get a very unhelpful output from Krumo, because all the fields on...

Published in: #quick tips #solr #search
Article
Posted on 15th February 2011
Takes about 1 min to read

Have you ever wanted to create a 'queue' of content that would be published at a regular interval? I have. It seems like this should be one of those things that should be nice and easy to do with Drupal: Set up a nodequeue, schedule some kind of rule to pop the first item off the front of the queue and publish it. But try as I might there just didn't seem to be any...

Published in: #nodequeue #workflow #Drupalgive
Article
Posted on 10th February 2011
Takes about 2 mins to read

We've been using Display Suite with Node displays on one of our latest sites. It was an experiment, and possibly not something we'll do again - DS offers some great functionality with build modes and ways to re-arrange fields and all sorts on nodes, but since we end up theming most nodes quite a lot anyway, it's not worth the extra hassle that Display Suite can add when you want to change the theming on...

Article
Posted on 7th February 2011
Takes about 3 mins to read

These three tools ([drush make][drush_make], [Aegir][aegir] and [Dropbox][dropbox]) have come together to produce a release system that means I don't have to ssh into a remote server to deploy a new version of site. This means that I can do releases really, really simply, and actually with nothing more than a web browser[^1]. Let me explain: ### Drush make If you aren't using [Drush make][drush_make], then you should look into it. Essentially you specify a...

Article
Posted on 3rd February 2011
Takes about 1 min to read

Drupal 7 heralds the end of the throttle module. It has been around since Drupal 4.6.x and as of November 22, 2008 was extinguished from Drupal 7.

Published in: #Drupal Planet #throttle
Article
Posted on 3rd February 2011
Takes about 2 mins to read

Creating extra field formatters in Drupal 7 is fairly simple, but it can take some poking around in the new Fields code. So here is some sample code to make it easier for you! You can add formats to your own fields -- or existing fields that are defined by other Drupal modules. This is the case for the following example - a formatter for a link field to display the URL as an absolute...