Posts Tagged ‘Drupal’

Drupal Site Migration

var fbShare = {url: ‘http://sree.cc/drupal/drupal-site-migration’,size:’large’} Migrating Drupal from one folder (or one server) to another is not always as simple as just copying the files and database. All the file paths, configuration data, content, menus & structure are stored in the Drupal database. Hence, just a blind copy will break the new Drupal system.
Steps [...]

Drupal

var fbShare = {url: ‘http://sree.cc/drupal/drupal’,size:’large’} Drupal is a free and open source content management system (CMS) written in PHP.It is used as a back-end system for many different types of websites, ranging from small personal blogs to large corporate and political sites, including whitehouse.
The standard release of Drupal, known as Drupal core, contains basic [...]

Manage User Session Time-out via Drupal Admin Settings

var fbShare = {url: ‘http://sree.cc/drupal/manage-user-session-time-out-via-drupal-admin-settings’,size:’large’} Found this great post to manage user session auto time-out via Drupal admin area.
http://old.nabble.com/I-am-intersted-in-the-TimeOut-module-tt2800133.html
It was exactly what I was looking for. Nothing fancy. Just specifying the idle session time out for each type of user role. Made a few code tweaks and customized it to work for Drupal 6.x. [...]

How to format Drupal Printer-Friendly Email and PDF pages

var fbShare = {url: ‘http://sree.cc/drupal/how-to-format-drupal-printer-friendly-email-and-pdf-pages’,size:’large’} Open your Drupal project’s sites/all/modules/print/css folder, then open the print.css file, there you can change the format(text color, size, line spacing etc.) of the content.

How to theme a form in Drupal 6

var fbShare = {url: ‘http://sree.cc/drupal/how-to-theme-a-form-in-drupal-6′,size:’large’} Creating a theme for a form in Drupal 6 is slightly different from Drupal 5.
Steps on how to theme a form in Drupal 6:

Register the theme file.
Use the hook_theme() function to register the theme for  the form. More information on hook_theme() can be got from here: http://api.drupal.org/api/function/hook_theme
NOTE: myform1_form and myform2_form [...]