Опубликовано VladSavitsky

Описание с сайта

Помогает администраторам включать массово режим обслуживания на сайтах в мультисайтинге.
Модуль может переводить в режим обслуживания выбранные сайты и снова их включать. Также может запускать update.php на выбранных сайтах.

Читать дальше...
Опубликовано VladSavitsky

Описание с сайта

Модуль Multisite Login: общая сессия на всех сайтах в мультисайтингеМодуль позволяет пользователям входить на все сайты, которые созданы по схеме мультисайтинга, даже если сайты находятся на разных доменах.

Например:

  • politicker.com
  • politickernj.com
  • politickerny.com
  • etc.

Обратите внимание:
Если вы используете несколько сайтов на одном домене (напр. politicker.com, nj.politicker.com, ny.politicker.com, etc.), то вам не нужен этот модуль
Базовые возможности мультисайтинга Drupal позволяют реализовать общий вход на подобных сайтах.

Модуль создавался как альтернатива модулю singlesignon, но с использованием техники, которая не блокирует доступ к вашим сайтам поисковых систем.

Читать дальше...
Опубликовано VladSavitsky

Описание с сайта

Коллекция общих функций, полезная для управления мультисайтингом.

Модуль нужно устанавливать модуль только, если он требуется другому модулю (multisite_maintenance, multisite_login) или вы не хотите использовать эти функции в своих разработках.

Читать дальше...
Опубликовано VladSavitsky

Описание с сайта

Модуль Login Destination: куда пользователь попадет после входа или регистрацииThis module controls where users go after logging in. You can configure login destination on a settings page. It will be either static URL or a PHP snippet evaluating your own site's logic. You can also configure which pages redirection is applied.

To achieve this you can specify either a list of URLs or a PHP snippet to build this list dynamically. So, you can redirect user to various pages depending on which pages they are logging from.

In the last 5.0 release you can also use alias URLs instead of internal paths.

Developed by ARDAS group - Web solutions development, Drupal CMS and Software outsourcing.

PHP snippet for redirection URL should return a string. Here is an example:

  global $user;
  if ($user->uid == 1) {
    // Redirect the Administrator
    return 'admin';
  } elseif ($user->uid == 2) {
    // Redirect the Site Owner to the 'create content' page
    return 'node/add';
  } else {
    return 'node';
  }

PHP snippet for Redirection condition should return boolean value. An example is:

  return ($_GET['q'] == 'user/login');

Don't put PHP tags when creating snippets.

Turn on "Preserve destination" feature to make module sensible to destination parameter. When login from the path with specified destination (ex: 'any-page?destination=node/18') you will be taken to node/18 instead of the URL specified in login_destination settings.

DRUPAL 5:

$_SESSION['login_page'] was added and stores the page you were before clicking login form button. You can use it to determine the page you logged from instead of $_GET['q'] because $_GET['q'] always equals to 'login_redirect'.

DRUPAL 6:

Now you can use $_GET['q'] to find out internal path and $_REQUEST['q'] for alias of the page you have logged in from.

Читать дальше...

Backup and Migrate

20 Июн 2008
Опубликовано VladSavitsky

Описание с сайта

Backup and Migrate simplifies the task of backing up and restoring your Drupal database or migrating data from one Drupal site to another. It supports gzip, bzip and zip compression as well as automatic scheduled backups.

With Backup and Migrate you can dump some or all of your database tables to a file download or save to a file on the server, and to restore from an uploaded or previously saved database dump. You can chose which tables and what data to backup and cache data is excluded by default.

Читать дальше...

db_maintenance

29 Май 2008
Опубликовано VladSavitsky

Описание модуля

Полное название: DB Maintenance
Проект начат: December 18, 2005

Описание с сайта

DB maintenance optimizes administrator-selected tables in the database during regular cron.php executions. For MyISAM tables, OPTIMIZE TABLE repairs a table if it has deleted or split rows, sorts table indexes, and updates table statistics. For BDB and InnoDB, OPTIMIZE rebuilds the table. Note, MySQL locks tables during the time OPTIMIZE TABLE is running.

OPTIMIZE works best on tables with large deletions (e.g. cache or watchdog), however MySQL will reuse old record positions, therefore in most setups, OPTIMIZE TABLE is unnecessary unless you just like defragmenting. The Overhead column in phpMyAdmin's database view is the most common way to determine the need of an OPTIMIZE TABLE query. It essentially shows the amount of disk space you would recover by running an optimize/defragmentation query.

Per PostgreSQL documentation's recommendation, this module does not use the VACUUM FULL operation that locks the tables; this module can operate in parallel with normal reading and writing of PostgreSQL tables.

Think of OPTIMIZE TABLE like defragmenting your hard drive. Sure your system will run without it, and it might even be fast, but isn't it nice to run a defrag when you can?

Читать дальше...
Категории модулей:
Версия Drupal:
| Добавить комментарий

robotstxt

26 Май 2008
Опубликовано VladSavitsky

Описание модуля

Полное название: RobotsTxt
Проект начат: March 12, 2006

Описание с сайта

Используйте этот модуль, если вы используете несколько Друпал-сайтов с общими файлами (multisite) и вам нужны разные файлы robots.txt для каждого из них. Этот модуль создаёт файл robots.txt динамически и даёт вам возможность его редактировать отдельно для каждого сайта через веб-интерфейс.

Читать дальше...
Категории модулей:
Версия Drupal:
| Добавить комментарий

nofollow

26 Май 2008
Опубликовано VladSavitsky

Описание модуля

Полное название: Nofollow
Проект начат: March 2, 2008

Описание с сайта

This is a quick little module to allow you to selectively apply nofollow to menu items and taxonomy terms to allow 'sculpting' of pagerank - effectively allowing you to focus search engines' attention on particular areas of your website by controlling the flow of link juice around your website.

This can be useful for large websites, by moving the focus away from links repeated on every page (About us, Contact Us, Privacy Policy, T&Cs etc) and onto the content itself, whilst still allowing you enough granularity to ensure these pages are indexed, somewhere.

It uses roughly the same admin menu as the block visibility sections, allowing you to enable or disable nofollow on a page by page basis, or even to use PHP code to determine whether nofollow is passed or not.

To install you will need to add some custom theming functions, see the readme.txt file for more information

Авторы решений:
Категории модулей:
Версия Drupal:
| Добавить комментарий

print

26 Май 2008
Опубликовано VladSavitsky

Описание модуля

Полное название: Printer-friendly Pages
Проект начат: November 2, 2004

Описание с сайта

This module allows you to generate printer friendly versions of any node by navigating to www.example.com/print/nid, where nid is the node id of content to render.

A link is inserted in the each node (configurable in the content type settings), that opens a version of the page with no sidebars, search boxes, navigation pages, etc.

The 6.x version for Drupal 6 includes support for generating a PDF version also via the print_pdf module. Please follow the instructions in the INSTALL.txt carefully. PDF support is not usable out of the box. You must install a third-party tool!

By editing the default print.css (or specifying you own CSS file) or the print.tpl.php files, it is possible to change the look of the output page to suit your taste. For a more fine-grained customization, it is possible to use a print.node-type.tpl.php file located in either the current theme or the module directory.

Читать дальше...
Авторы решений:
Категории модулей:
Версия Drupal:
| Добавить комментарий

fasttoggle

24 Май 2008
Опубликовано VladSavitsky

Описание модуля

Полное название: Fasttoggle
Проект начат: September 16, 2006

Описание с сайта

Ускоряет выполнение самых распространённых задач по администрированию таких как:
снятие с публикации, продвижение документа на главную страницу, блокирование польователей через использование AJAX callbacks. Это экономит множество перезагрузок страницы. Если JavaScript запрещён, то все будет работать в обычном режиме - с перезагрузкой страницы.

Читать дальше...
Авторы решений:
Категории модулей:
Версия Drupal:
| Добавить комментарий
 
 
 

RSS-лента новостей

Dries Buytaert по-русски
]]>Русский поиск Drupal]]>

Перенос сайта из Joomla в Drupal
Перенос сайта из WordPress в Drupal

]]> Drupal - это бесплатная система управления контентом с открытым исходным кодом ]]>