Articles in Uncategorized
Create new database instance on new destination
mkdir /u02/mysql
mkdir /u02/mysql/data
mkdir /u02/mysql/log
mkdir /u02/mysql/run
mkdir /u02/mysql/lock
chown -R mysql:mysql /u02/mysql
mysql_install_db –datadir=/u02/mysql/data –user=mysql
Create new configuration file for new instance
/etc/my.server2.cnf
[mysqld]
port=3307
datadir=/u02/mysql/data
socket=/u02/mysql/mysql.sock
user=mysql
# Default to using old password format for compatibility with mysql 3.x
# clients …

In this article you will find a list of main Drupal menu constants with descriptions and code examples.

A site user should receive email notification about every new comment added by another user. Here I will tell how to setup such notifications.

From this article, you will get know how to configure a module so that when you translate a site to other languages plural forms work correctly.

In this article, I would tell you how Drupal allows to show a list of a certain vocabulary taxonomy terms in alphabetical order. We will also get know of how to show node list for …

In this article I will tell you the recent changes for Book module. Knowing about that will help you to adapt snippets and modules which work with Book module for working in Drupal 6.
This article is devoted to traffic compression. Here I will tell how to proceed speed-up uploading CSS and JS files by compressing data on a server and passing the compressed copy yo a browser.

In this article, I would tell you the basics of Drupal API. You will learn how to find all required API information here.

In this article we will try to understand what was changed in working of theme() function in Drupal 6.