Help
(How to) Create Triggers in Drupal - Actions and Triggers
How to : Create Triggers in Drupal - Actions and Triggers
Actions and Triggers are awesome, and they made it into core with Drupal 6. The combination of the modules creates an event and responder system for Drupal. On a basic level, Triggers are like events in (for instance, creating a comment). Actions are then the responding procedure that Drupal takes based on that Trigger.
- guru's blog
- Login to post comments
- Read more
(Tips) Drupal backup script
Tips : Drupal backup script
First it is necessary to create a backup user on the database which has (only) read access to everything. This is because its password will be embedded in the backup script which reduces security. This can be done with:
BKUSR=backup
BKPW=backuppassword
BKDIR=/var/www/dbbackup
mkdir -p $BKDIR
echo "GRANT SELECT, LOCK TABLES ON *.* TO '$BKUSR'@'localhost' IDENTIFIED BY '$BKPW'; FLUSH PRIVILEGES;" | mysql -u root -p
- guru's blog
- Login to post comments
- Read more
(Tips) Drupal Home Page Creation Techniques
Tips : Drupal Home Page Creation Techniques
This is a guide based on a post in the Drupal support forum. The current version of this guide is a work-in-progress, and will be tweaked and improved with any advice and tips provided in the comments, and will also have some screenshots added to help guide you through the process.
- guru's blog
- Login to post comments
- Read more
(Tips) 8 Drupal Admin Tasks to Complete Before Putting Your Site Live
Tips : 8 Drupal Admin Tasks to Complete Before Putting Your Site Live
- guru's blog
- Login to post comments
- Read more
(How to) .htaccess - How to make a subfolder the main folder for your main domain
How to : .htaccess - How to make a subfolder the main folder for your main domain
- guru's blog
- Login to post comments
- Read more
(Tips) Drupal Shared Database Multi-Site
Tips : Drupal Shared Database Multi-Site
- guru's blog
- Login to post comments
- Read more
(Tips) 4 Things to Know Before Installing Drupal 6
Tips : 4 Things to Know Before Installing Drupal 6
[1] Make sure that you update your MySQL database to version 5
- guru's blog
- Login to post comments
- Read more
(Tips) How to reset my Drupal admin password?
Tips : How to reset my Drupal admin password?
- guru's blog
- Login to post comments
- Read more
(Tips) Programatically creating a CCK field in Drupal 6
Tips : Programatically creating a CCK field in Drupal 6
The first step is to create the field using CCK's UI. Once you've got the
field setup the way you'd like it use PHP's var_export()
to dump the contents of the node's field as an array:
- guru's blog
- Login to post comments
- Read more
![Drupal-6-Book-[Building Powerful and Robust Websites with Drupal 6].jpg](http://www.drupalranch.com/images/Drupal-6-Book-[Building%20Powerful%20and%20Robust%20Websites%20with%20Drupal%206].jpg)