Translate Digits/numbers in Drupal 6.x

Hi, first of all, it’s an old tutorial, I don’t use Drupal 6.x any more. Anyway, below goes the procedures. WARNING: This is done hacking core Drupal files, so be careful when you update Drupal core. All changes might be lost. Edit file ‘DRUPAL_INSTALL_DIR/includes/common.inc‘ Add following code snippet at the end of t($string, $args = […]

Update Drupal Modules using FTP in localhost

When you’re going to update Drupal 7 modules using FTP, you need to have a FTP server running in your computer. In Ubuntu/Linux, we can have one named vsftpd (Very secured FTP Daemon) by running following command in the terminal: Configuration: Drupal: 7.0+ OS: Ubuntu/Linux Step 1: Install VSFTPD sudo apt-get install vsftpd Step 2: […]

Using a View to diplay a single node/content in Drupal 7

Using the View module you can display nodes of any content-types.  Usually, in a “Page” type view you can display many contents/nodes, with pagination support. But what to display only a specific node? perhaps, using an url like http://yoursite.com/viewname/10 where 10 is the Node-ID (nid) You can achieve this using Contextual Filters. In this example, […]