Posts

Showing posts with the label Drupal 7

Multilingual Sites with drupal 7

For those of you who are struggling with the multilingual features of drupal 7 (like myself) and can't get it to work give the following article a try: https://drupal.org/node/1268692 . I managed to get a multilingual site up and running with no problems very easily. You'll have to tweak it a bit but at least you won't struggle to get things working. I didn't install many of the optional modules since they are not essential, like the custom administration toolbar.

Drupal with clean urls on Apache

It's been a long time since I've tried to enable clean urls on my testing server, mainly because I use it for development purposes only. Today I decided to enable it because I'm tired of using the "?q=". First of all I enabled the rewrite module using the command "a2enmod rewrite". The above command enables the rewrite module for apache. You still have to enable the use of the module for your site. This can be done in two ways. You can add the configuration on your site file (/etc/apache2/sites-available) or you can configure apache to override it's settings using the .htaccess file. You may have to use the second method in case you're using a hosting environment and you do not have access to apache's configuration. Your provider is most likely using the override settings of your .htaccess file. After enabling the rewrite module, add the following on the <Directory> section of the configuration file of your site (e.g. /etc/a...