Syndicate content subscribe to RSS feed

Drupal running on lycos webhosting - 500 internal server error

Another quick one this, we recently had a small client experience issues with their Drupal site which was hosted on lycos webhosting. They hadn't changed anything on the site, but suddenly they were getting nothing but 500 (internal server) errors.

Drupal TinyMCE buttons displaying on multiple lines

A quick post about the Drupal tinymce module and it's tendancy to display all it's buttons in one inflexible line. The following CSS will split the tinymce buttons onto several lines.


Drupal mysql utf8 and latin1 character set issues

Upgrading from Drupal 4.6 has always been complicated by issues of character sets, but the Drupal upgrade scripts normally solve most of these problems for us. But when your dealing with a complex upgrade you need a good understanding of how Drupal is dealing with character sets in Mysql.


Amateur Rowing Association / GB Rowing

ara-screen.jpg

The Amateur Rowing Association (ARA) is the governing body for the sport of rowing (both indoor rowing and rowing on water), while GB Rowing, is responsible for training, preparing and selecting GB Rowing teams for international competitions at junior, U23 and senior level, including Olympic and Paralympic Games.


Drupal Problem with the admin/content/node page filter

A rather obscure one this, but we found a problem today on one of our Drupal sites with the filter form on the node admin screen (admin/content/node). Changing the filter settings on the form had no effect, which prevented you from filtering the list of nodes. We tracked the solution down to the $_SESSION array being cleared between page reloads, and a quick google pointed the finger at the Remember me module. Disabling the module solved the problem


Increase the performance of Drupal's ubercart for sites with a large number of products

We are in the process of putting together a large (20k products) store with ubercart and ran into some performance issues due to the hook_forms implementation.


Bulk deleting Drupal nodes of a particular content type

The Drupal admin interface allows you to delete up to 50 nodes at one time, which is great - but there are times when you it's just not enough and you need to bulk delete many thousands of nodes.


Ourpower

ourpower.gif

Ourpower is the site for self and micro generation, the site connects providers with consumers, and builds communities around micro generation. The site also features a rich editorial section with guides and information on micro generation.


Weekly Homes

Weekly homes

Weekly Home offer a wide variety of high quality short let serviced and holiday properties in the Oxford region. They needed a website to showcase their property portfolio to potential visitors from all over the world.

Working with Oxford based PE Design, ComputerMinds built this Drupal 5 based property sales site using standard Drupal modules with a smattering of custom code.


Conosco

Untitled-3.jpg

Another project working with PE Design, and another nice clean Drupal site. Theres some nice custom templating used in the client area particularly, and a smattering of jquery (with clean degrading of course), as well as some netsuite integration.

http://www.conosco.com


Drupal image assist force a default alt tag

We make heavy use of the Drupal image assist module (or img_assist as its known) - but find that its handling of empty alt tags is quite poor. The problem being that if when inserting the image the user does not specify a caption or description then the alt (and title) attributes are both empty.


Multilingual views in Drupal when using i18n module

Building multilingual sites in Drupal using the i18n module always throws up a few fun problems to be solved. One of the most awkward being views.

The i18n views integration module does an excellent job of allowing you to return only nodes matching a particular language, but it doesn't help when it comes to translating the view itself - and more importantly allowing a view to site nicely into multiple positions in the menu (one per language).


Drupal 6 is released - hoooooray!!

Well, it's finally happened - the brand spanking new Drupal 6 has been released into the wild. We have been playing a lot with Drupal 6 and getting ourselves quite excited (finally drupal_execute has decent return values, and the menu system feels a bit less 'brutal'). However, while we would love to start building client sites on it there is one major omission - the views module.

Suffice to say there have been many discussions about the core-worthyness of the views module, so I am not about to start another one here! Instead I'll just say a HUGE thank you to everyone involved with what we think will be a massively important release for the Drupal

PS - Can it really be a year already since Drupal 5 was released! It seems like only yesterday we were stumbling over those fancy new admin/build and admin/content menu entries LOL


Company X - bristol based design and marketing agency

Untitled-3_0.jpg

A nice little show site for our good friends over at CompanyX, featuring some fresh and funky jquery carousel views action, and a nice clean accessible theme.

http://thecompanyx.com


Drupal themeing : Adding active class to the Drupal primary links

This little snippet lives in your phptemplate_variables function and will set a useful 'active' class alongside the not so useful menuid-active class which Drupal assigns to the active primary links


foreach($vars['primary_links'] as $key=>$link){
   if (strpos($key,'-active')){
      $vars['primary_links'][$key]['attributes']['class']='active';
   }
}

Drupal 5.6 bug affects prevents saving of HTML filter settings

Just flagging this as a bit of an issue - it appears there is fairly serious bug in the version of the filter module provided in Drupal 5.6 which prevents you from saving changes to the allowed HTML tags

A patch is available on drupal.org but it's quite well hidden! Post number 7 in this thread contains a working patch http://drupal.org/node/208700

An alternative solution is to download the 5.x HEAD http://drupal.org/drupal-5.x-dev) and take the version of the filter module from there

UPDATE This has now been fixed with the release of Drupal 5.7