Drupal 6.x

Delete Orphaned terms from vocabulary (Drupal)

We have been managing several websites powered by Drupal. Over the years we have found that we have several terms that do not have any nodes associated with them, thus rendering empty pages for those keyword.

Here is a small piece code to delete those terms. This can be added to cron to make sure terms are cleaned regularly.


$vid = 3; // Vocabulary ID
$terms = taxonomy_get_children($tid = 0, $vid);
foreach ($terms as $term) {
if (taxonomy_term_count_nodes($term->tid) == 0) {
// See if any nodes use the terms. If none, delete the terms.

RaipurLive.com - Updates & New look

We have been busy renovating our portal for Raipur - the capital of Chhattisgarh - RaipurLive.com

The website was upgraded to latest version of Drupal 6 (ie Drupal 6.16) along with main modules used in the system.

Second most important update is its theme. We tried to keep the theme look simple and elegant

Event module has been replaced by date module. And also we are now automatically importing events from http://www.ebharat.in using iCal formats.

Please check the website at http://www.raipurlive.com/

We are open to suggestions and comments.

UniSaraswati Devnagari Transliterator - Drupal 6.x Version

UniSaraswati Devnagari Transliterator is a Drupal module to allow typing in Devanagri. Right now the module is only available for Drupal 5.x

We have update the module for Drupal 6.x, you can checkout the latest module at http://drupal.org/node/254129

Download the file at http://drupal.org/files/issues/unisaraswati.tar_.gz

Google Transliteration - New Drupal module

VinayRas Infotech is proud to announce a module for Drupal 6.x ( a leading Open Source CMS)

http://drupal.org/project/googleLanguageApi

googleLanguageApi is a simple module that implements Google AJAX Language API for Transliteration of Indian languages

Supported Languages
Arabic
Bengali
Gujarati
Hindi
Kannada
Malayalam
Marathi,
Nepali
Punjabi
Tamil
Telugu
Urdu

For more details about Google Transliteration service, please visit http://www.google.com/transliterate/

If you find any bugs, please file them at