Blog
Configuration of Ticket Tracking System in Drupal
I wanted to have an issue database for managing projects and I found a comparison of this kind of systems: groups.drupal.org/node/17948
I tried the modules:
In my opinion these 4 modules were the best in the list. The …
Automatic translating content in Drupal by using Google Translate
To translate content on your website, it is possible to use Google Translate. There are 2 ways to do this:
- Translating the website on the client side (in Drupal by using the module GTranslate). The website will be readable in more than 50 languages.
- Translating the content for every language used …
Page not found from Locale javascript translation files
Since I changed some Locale settings, I was getting the following ‘page not found’ warning in my log entries:
| Type | page not found |
| Location | /sites/default/files/languages/nl_b9a0d0f79075a0e581d6f0700086988b.js?3 |
| Referrer … |
Optimizing the robots.txt and the Google webmaster tools
One week ago, this site had some URL path changes. It is possible to check for Google crawl errors on: www.google.com/webmasters/tools/
The web crawler errors were containing some paths, which I am not using, but are used by the hosting provider. My directory structure also contains some paths, …
Using PuTTY to tunnel to multiple machines on your remote network
PuTTY is a handy little program to login via SSH. It can be downloaded here: PuTTY.
Do not underestimate the functionality of PuTTY, it is lean and mea. It is possible to access other ports on a remote server, via tunnels, through SSH port 22.
It is even possible to access other machines on the …
Checking database integrity in Drupal and cleanup the database
After some time the database integrity is not ok. This does not always cause problems, but it is better to clean up.
The cause is for example installing and removing modules, which are not de-installing very well.
With the Schema module is it possible to look for the database integrity. The status …
Drupal: Optimizing the website speed
There are several ways to optimize the your Drupal website:
- Enable Drupal caches
- Daily Automatic optimization of the database tables
Before you start
Before you start to optimize your website, you first have to measure the current speed.
This is can be done with this service: …
Howto change the .htaccess mod_rewrite and background information
In this post I try to explain about the how the mod_rewrite module of Apache2 works.
For example we are taking here the mod_rewrite part from .htaccess delivered with Drupal, but other CMS’s has something similar in the .htaccess file:
# Various rewrite rules.
<IfModule mod_rewrite.c> …
Taxonomy in Drupal 6
Drupal contains Taxonomy to categorize the content. There are several ways to do this, for example:
- Tags on content
- Category on content
Tags on content
Taxonomy in Drupal can be configured to use tags in the content. Tags are very handy to find back related content. Nodes like a blog entry, page …