CMS
Back Up Your WordPress Blog Online
9In today’s world every one is blogging. Some people have their own blogs. Blog is the asset for blog reader and the owner. When the blog becomes popular the contents of the blog getting increase, it affects the size of database. Then it might be difficult to take a backup of content. No one would like to lose the valuable content present on the blog. Here the backup comes into picture.
Some useful Drupal Modules
3Some of the Useful Drupal modules
1. beautytips : http://drupal.org/project/beautytips
The best module for Tool tip text. Much configruable.
2. birthdays : http://drupal.org/project/birthdays
Allows user to enter Birthday at the time of registration. Also Displays a upcoming Birthdays.
3. bookmark_us : http://drupal.org/project/bookmark_us
The Bookmark Us Module allows visitors to quickly and easily bookmark your site.
4. captcha : http://drupal.org/project/captcha
provides a simple CAPTCHA.
5. date_picker_formatter : http://drupal.org/project/date_picker_formatter
This module is a CCK formatter allowing users to pick one or more dates (from a date, datetime or datestamp CCK field)
How to install Drupal on windows
71. To install Drupal on windows first you need to install WAMP, XAMPP servers. You can get the WAMP or XAMPP setup from internet.
2. You can get the latest version of Drupal from http://drupal.org . After download finish extract the file.
3. Put the extracted folder in www folder of WAMP or htdocs folder of XAMPP. Generally the locations are (C:\wamp\www) for WAMP and for XAMPP (C:\XAMPP\htdocs). After putting the folder there rename the folder (for e.g Here I have renamed the folder as My Project).
Kaal – Drupal 6 theme
0
Kaal is a port of a wordpress theme to drupal. A pro-blogger theme which can have “ads” in the blog. It is a three column theme which you can use for your blog. It uses Blueprint CSS framework. This is a sub theme of drupal’s blueprint project.
This theme has been tested for browser compatibility and it works fine in most of the widely used browsers like… Opera, Internet explorer, Chrome, Firefox
Features
- Three columns.
- Fixed width.
- It has two sidebars,a AD’s sidebar which can be used to display AD’s with a right sidebar.
- Its table less which makes it light weight.
- Uses blueprint CSS framework, which takes care of browser compatibility issues.
To Download this theme following is the link…
http://www.qed42.com/code/drupal/themes/kaal/kaal-standalone.zip
Code to hide Revision Information, Author Information, Comment Settings etc at the time of creating Node.
20You can write a custom module by using this code. You just need to write the .info file for this module. The format of.info file you will get on internet. Just copy and paste the following code into the editor and save this file with .module extension. Go to your admin panel -> modules and just the enable this module.
code for .module file
<?php
function hide_options_form_alter($form)
{
$form['buttons']['preview']['#attributes'] = array(‘style’ => ‘display:none’);
$form['author']['#attributes'] = array(‘style’ => ‘display:none’);
$form['options']['#attributes'] = array(‘style’ => ‘display:none’);
$form['menu']['#attributes'] = array(‘style’ => ‘display:none’);
$form['comment_settings']['#attributes'] = array(‘style’ => ‘display:none’);
$form['path']['#attributes'] = array(‘style’ => ‘display:none’);
$form['format']['#attributes'] = array(‘style’ => ‘display:none’);
$form['revision_information']['#attributes'] = array(‘style’ => ‘display:none’);
}
?>
Note : You just need to replace ‘ ’ with single cote [ ' ] .
