Tag: Drupal7

  • Configure Microsoft Live Writer to work with Drupal

    Hey! I’ve managed to configure Microsoft Live Writer to work with my Drupal install (see this URL). I had a minor issue configuring Microsoft Live Writer, where I couldn’t login as my non-administration user. Initially, I worked that that returning the edit privilege in Drupal “Authenticated Users” made it work. Since then I had a…

  • Using drush with drupal

    Using drush has been remarkably simple. I downloaded it as instructed on their site, and it almost works straight away. It was annoying to keep having to tell drush the site to use with the -l flag though, so I have configured it for my needs. I did this by making a .drush directory, and…

  • Updating Language of postings in Drupal.

    Everything said it was undefined language (very weird). Found  this  post so I ran this update: UPDATE node SET language = ‘en’ WHERE language = ‘und’; And it did exactly what it says on the tin (turned everything set to und to en). Perfect!

  • Linking Drupal to QNAP LDAP

    This was way more simple than I expected. For reference, I have a separate server running my Drupal Installation. The QNAP sits along side it (but not accessible to the web).  I basically just added the LDAP module to the Drupal installation. I also had to install the Entity module for LDAP to use. Then…