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 Tags

Articles tagged with: drupal modules

Drupal: Changes in Book Module in Drupal 6
July 30, 2010 – 2:59 am | No Comment

This article describes how to find and understand changes in Book module. This will make you able to adapt snippets and modules which interact with Books module in Drupal 6.

Drupal Modules: Nofollow List
July 28, 2010 – 8:12 am | No Comment

Allows a blacklist of sites that will have a rel="nofollow" attribute added to their link tags whenever used on your site. Originally the only page in the blacklist was Wikipedia, though it now allows an …

Drupal: How to Create Subdomain for Every User
June 23, 2010 – 9:26 am | 2 Comments

So you should create subdomain for every user. For example,

http://mary.example.com 
http://kate.example.com 
http://jeff.example.com

Drupal: Default Input Format
June 3, 2010 – 8:18 am | No Comment

This article is devoted to default input format for role or node type. Setting the default input format, you do not need to select format for every node created.

Drupal: Blocks Caching
May 11, 2010 – 11:33 am | No Comment

This article is devoted to increasing site performance for registered users. There are two ways for to this: use Block Cache module and use Drupal caching. Below is the detailed description of the first one.

Drupal: Auto-Generating of Document Title
April 23, 2010 – 5:28 am | No Comment

In article I would tell how to

Disable title output
Auto-fill the title
Disable necessary filling in of title

 

Drupal: Modules Page Doesn’t Open
April 15, 2010 – 3:58 am | No Comment

If you try to open modules page: Administer > Site building > Modules and get the blank page instead of it, then you probably have a problem of memory lack. When this page opens, all …

Drupal: How to Hide or Disable Blank Comment Subject
April 9, 2010 – 8:36 am | One Comment

This article would tell you how to disable an ability to change comment subject when comment adding and how to do not show the subject on the node page in the list of all.
 

Drupal: How to Get Know Type of Current Node
April 7, 2010 – 3:16 pm | 2 Comments

Problem:
It is necessary to get know type of the displayed node. There is no such info in Edit form.

Drupal: Creating views programmatically in Views 2
March 30, 2010 – 6:51 am | 3 Comments

Task:
Create a view via code with Views (in your custom module).
Solution To create a view via code with Views 2 in Drupal 6 you should:

Create a view using Viws user interface as …