Articles by Aleksey VV
A template lover. Do send me all your fantastic templates, I would love to review them!
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 I will tell how to forbid access to certain resources for some clients. The instructions will include descriptions of different directives.

Continuing articles devoted to menu in Drupal: its structure, functions, constants and specifics.

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

In this article I will teach you how menu works in Drupal and how you can use it & modify it.

In this article, I will tell you how to create menu structure through the menu administration page. You can create the structure first and fill menu with the content later.

In this article, you will learn how to create menu structure on-the-fly, adding new content to your Drupal-based site.

In this article I would tell you about:
Dividing main and secondary menu items
Secondary items show when one of the main item is selected
Highlighting of parent items at every level with an active class
Ability to show …

In this article we will learn how to:
Create two-level menu.
Place first-level menu items are at the top, second-level menu items (submenus) appear at the left side.
Parent menu item stays active when a user navigates by …