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 = […]
Category Archives: Drupal
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: […]
Yup, you may call it “multisite installation”. That means, you may run more than one site with only a single Drupal core. Configurations: Drupal 7.0+ Linux Machine Step 1: Create a new virtual host To run multiple sites, we need to create Virtual Hosts in our machine. For example, If I type http://mydrupal I’ll be […]
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, […]