General

Zyxware default image4
| 3 min read
If you need to deliver a custom tailored home page to a user visiting your Drupal website based on their actual physical location you need to need to match their ip addresses with their actual physical location. There are many third party services that provide this functionality and you need to use the API key provided by them in your Drupal application. If you need to know how to get IP address and Country code from an API key to be used in your Drupal application then read on to know more.
Zyxware default image3
| 3 min read
As a Drupal developer you might have come across a Drupal multisite installation in which the different sites were connected through symlinks. As a developer you often need to create a local installation of a live Drupal project to make the required changes before pushing it to the live version of a site. If you are facing the same situation in your Drupal site and would like to know how to create a local installation of a Drupal multisite project connected through symlinks then continue reading to know more.
Zyxware default image1
| 2 min read
We have faced a situation in one of our Drupal sites where we needed to disable a Drupal block that was being displayed using Contexts. The block had to be disabled for all nodes that contained a particular taxonomy term. If you are facing the same situation in your Drupal site which is using Contexts and are looking to know how to disable a block on a node with a particular taxonomy term via Contexts then continue reading.
Zyxware default image3
| 2 min read
This is a script to create a particular directory under all subdirectories in a parent directory. Consider the case when a parent directory consists of more than 100 folders and you want create a new folder under all these directories, with the same name. Doing this manually would be a mess. This script would help you do this in no time. These are the steps for executing the script: First, add the exact path where the parent directory is present, and the name of the folder that is to be created.
Zyxware default image4
| 2 min read
A large number of websites on the web today have some kind of slideshow in them and they are probably using a library like jQuery to create the slide effect. When there are 10 images cycling in a slideshow, you might want to shuffle the order of the slideshow a bit. If you have a slideshow in your Drupal website and want to know how to change the order of the slideshow on every pageload then continue reading to know more.
Zyxware default image3
| 2 min read
When we have a multi site Drupal installation, we might have to set a default theme for each site. The easiest way of setting a default theme for each Drupal site is by setting the theme from the settings.php file. If you are having a Drupal multistie installation and want to know how to set a default theme for each site in a Drupal multisite installation the continue reading.
Calendar History
| 2 min read
Did you know that year 2013 is the first year after 1987 which had all its digits as distinct. Did you know that Oct 1582 had 10 days removed from the month to adjust for the shift in the year? Did you know that Sumerians had calendars way back in 4000BC?. Here are some interesting pieces of information about the history of calendars.
Zyxware default image3
| 2 min read
Zyxware recently conducted a session on GIMP for dentists. The workshop was conducted on the 17th of December, 2012. This was as part of a workshop organised by Indian Dental Association for their members on photography and photo editing. Zyxware conducted a 4 hour session on photo editing using GIMP, a Free Software Tool. Photography and photo editing are important skills for the modern day dentist given the requirements of documentation and research and communication with patients. Recognising the need for training for dentists in these areas, the IDA has taken an important step by organising this workshop. That they have chosen Free Software Tools like GIMP is commendable.
Zyxware default image3
| 2 min read
The function of the script is to rename a specific-directory present under all sub-directories of a specified parent folder. Consider, you have a particular folder under all sub-directories of a folder and you want to rename all of those occurrences. Doing it manually would take much time. Here is a script to make it easy for you. The script takes the following inputs: 'path' is the absolute path of the parent folder, and 'foldername.txt' is a text file which contains the names of the subdirectories under each of which the specific directory has to be renamed.
Zyxware default image1
| 3 min read
If you are a beginner in Drupal your might be wondering what a node is. The concept of a node is very simple. All you have to understand is that each and every content in Drupal is treated as a node. A page is a node, an article is also a node. If you want to add custom styles and formatting to the nodes of a specific content type then you have to theme a node. Read on to know how to theme a node in a Drupal 7 website.
Zyxware default image1
| 3 min read
One of our Drupal sites we had worked on required us to implement region based content filtering and it was to be done through a value stored in a session. The Drupal site was also using Boost to enable static page caching. Boost stores pages as HTML files inside a cache folder and each page is served from the cache for anonymous users. To implement the filtering process successfully for anonymous users, we had to find a way to alter the URLs for the selected region. Read on to know how to alter URLs in a Drupal 6 website.