You can put a module everywhere, i.e. \sites\all\modules\custom\youre_module Run cron job from command line (drush): drush cron
Category: Drupal
Drupal: simple OTAP workflow
This post describes a simple DTAP workflow used in the company I work for. We work according to the methodology DTAP (Development, testing, acceptance and production). Five drupal parts are subject to change between the different phases: Assets (uploads / downloads) Assets (uploads / downloads) Content (database) Configuration (database: content types, views, module settings, etc)
Continue reading Drupal: simple OTAP workflow
Drupal: Drush
To install Drush you need PEAR – make sure it is installed on your system before continuing. yum -y install php-pear pear -Vyum -y install php-pear pear -V After confirming that PEAR works, enter pear channel-discover pear.drush.orgpear channel-discover pear.drush.org If PEAR is correctly installed installed you should see a message “Adding Channel Pear Drush.org Succeeded.
Continue reading Drupal: Drush
Drupal: Features (2.0) module
The features module enables the capture and management of features in Drupal. A feature is a collection of Drupal entities which taken together satisfy a certain use-case. Features provides a UI and API for taking different site building components from modules with exportables and bundling them together in a single feature module. A feature module
Continue reading Drupal: Features (2.0) module
Drupal: deployment
There are a couple of tools which can be used for Drupal deployment. This article is about managing code, content and configurations across multiple environments. The problems we face: Move content and configuration from one to another environment What is content and what is configuration? There is no line in Drupal 7. “If it is
Continue reading Drupal: deployment