Drupal: .htaccess Access Deny
August 21, 2014 – 7:59 am | No Comment

In this article I will tell how to forbid access to certain resources for some clients. The instructions will include descriptions of different directives.

Read the full story »
CSS Templates

Contain reviews and news about CSS Templates.

Freebies

Contain freebies such as icons, graphics, headers and images for your websites.

Fun Stuff

Contains other fun stuff for entertainment or interesting site showcase.

How-To

Contain technical elaborations on some specific workarounds or common tweak.

Joomla Templates

Contains reviews and news about Joomla templates.

Home » Archive by Category

Articles in Uncategorized

MySQL multiple instance on CentOS howto
November 17, 2014 – 4:42 am | No Comment

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 …

Drupal: Menu Functions
July 3, 2013 – 10:38 pm | No Comment
Drupal: Menu Functions

In this article, I would tell you about Drupal menu functions:

Drupal: Menu Constants And Functions
June 26, 2012 – 12:23 pm | No Comment
Drupal: Menu Constants And Functions

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

Drupal: How To Setup Comments Notification
March 26, 2012 – 10:15 am | No Comment
Drupal: How To Setup Comments Notification

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

Drupal: Plural Noun Forms For Translated Articles
March 21, 2012 – 2:34 pm | No Comment
Drupal: Plural Noun Forms For Translated Articles

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.

Drupal: How To Show List Of Terms In Alphabetical Order
March 13, 2012 – 4:47 am | No Comment
Drupal: How To Show List Of Terms In Alphabetical Order

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 …

What has been changed in Book module in Drupal 6
January 16, 2012 – 10:54 am | No Comment
What has been changed in Book module in Drupal 6

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.

How To Compress Traffic
November 14, 2011 – 11:11 am | No Comment

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.

Drupal API
November 4, 2011 – 8:09 am | No Comment
Drupal API

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

Drupal: Theme Function Flow Diagram
July 4, 2011 – 9:37 am | No Comment
Drupal: Theme Function Flow Diagram

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