Browsing All posts tagged under »Drupal«

January 5, 2009

Comments

DEMOTIX, built using Drupal, is a collaborative news publishing portal where qnyone who registers can write a story, publish pphotos and upload videos.

Read On...

October 29, 2008

Comments

The Drupal module of this week is The Media Mover. From Media Mover project page Media Mover is a set of modules which allows website administrators to easily create complex file conversion processes. Media Mover is essentially a system for Drupal that is targeted at file harvesting/conversion/storage or all three.

Read On...

August 29, 2008

Comments

The Module Of This Week is The Mighty Drush. Since this is the first post in DrupalMOTW series, I could not think of a better module than Drush. Drush has been making my life easier for past 6 months and I must confess that I have fell in love with this module and I am [...]

Read On...

August 29, 2008

Comments

As some of you might be knowing that I am also a Python programmer, in addition to being a PHP/Drupal developer. For almost past 1 year I have been hooked on to PyMOTW by Doug Hellmann. Based on the similar idea I starting a weekly blog series about the modules available to be used with our [...]

Read On...

August 28, 2008

Comments

Consider a scenario that a file is requested and you have to display content of the requested file in the browser. Look at the following code example: <?php // File Name: print_file_contents.php $file = $_GET['filename']; //get the file name from query string print file_get_contents($file); //print the contents of the file ?> If you have worked with PHP [...]

Read On...