No known problems
Comparison of Ads / Banners Advertising modules
Comparison of Ads / Banners Advertising modules http://drupal.org/node/514810
Comparison of Lightbox-type modules
Comparison of Lightbox-type modules http://drupal.org/node/266126
Contributed modules for dealing with troublesome users
Three ways to deal with troublesome users.
-
Using a contributed module. Read more.
- Build in Drupal version 6 under
admin/user/rulesYou must setup the appropriate access rule. You can find any user's IP address underadmin/reports/dblogSearch under theMessagecolumn forSession opened for User-Name-Here. Then click on this link. User's IP address is on the next page. If not working make sure that theTrackercore module is activated. - At server level with HTACCESS. Read more.
Sorting fix for cyrillic (Ukrainian BTW)
Bottom text in Ukrainian - fixing sorting trouble with "і" "ї" "є" letters
При сортуванні матеріалів за допомогою модуля views було замічено
помилку. Матеріали з українською буквою "і" поміщаються вище ніж
матеріали з буквами "а", "б",... і т.д.
Вирішення цієї проблеми полягає в заміні порівняння кодування з
utf8_general_ci на utf8_unicode_ci.
В моєму випадку сортування проводив по загаловках матеріалів. Виправлення:
ALTER TABLE `node` CHANGE `title` `title` VARCHAR(255) CHARACTER SET
utf8 COLLATE utf8_unicode_ci NOT NULL;Оскільки сортування прводяться не тільки по цих полях, тому варто
змінити це у всій базі.
snippet fix by Brun
Disable the permissions interface using Secure Permissions
Secure Permissions disables the user interface for creating and assigning roles and permissions.
Secure Permissions is an advanced security module for Drupal 7. It disables the Roles and Permissions editing screens and lets all user roles and permissions be handled through code. This adds an extra layer of security, as the site's permission can no longer be misconfigured accidentally.
This module was inspired the security paradigm of the Plone platform. See, in particular, 'Problem A2: Broken Access Control' in the Plone documentation.
----
1. Use case
This module is designed for cases where you want control of Roles and
Permissions only in a development environment. When fully enabled, this module
will make it so that the live site cannot have its permissions modified, except
through code.
It may be sufficient for most users to simply enable this module on the live
site, and to disable it when it is no longer needed.
----
2. Installation
Before installing this module you should configure the site Roles and
Permissions as you see fit. After installing and configuring this module,
changes to these settings can only be made through code.
On installation this module will have two immediate effects:
Overriding a theme using the Custom Node Template module
Purpose
The primary purpose of this module is to provide a simple way to customize the display of specific nodes. It is not intended to overlap functionality that can best be done directly through your theme or with another module. In particular, if you are trying to customize the display of ALL nodes of a particular content type, this is probably best done through your theme (or perhaps with another helper module like Contemplate).
If you have not arrived at this handbook page from the Custom Node Template module page, you may also wish to read the description of the project on the Custom Node Template project page.
Why Use This Module?
In general, this module would most likely be useful for overriding or customizing the display of node on a node-by-node basis or to provide such options to those who don't have access or the ability to customize a theme. It can still be useful for advanced users and developers as well when it is not convenient, feasible, or efficient to customize a theme to achieve the same functionality. For example, one could add some addition code for node template suggestions into the template.php file and add node-NodeID.tpl.php files to a theme. But this isn't not very efficient if you are overriding or customizing the display of a number of nodes in the same way. This module would allow you to add one customized node template into your theme and then select this template for the several nodes in question.
Please also see the Use Cases section at the bottom of this page for additional information to help you decide if this module would be useful.
