Drupal Install steps
CONTENTS OF THIS FILE--------------------- * Requirements * Optional requirements * Installation * Drupal administration * Customizing your theme(s) * Multisite Configuration * More...
View ArticleDrupal Upgrade process
UPGRADING---------Prior to upgrading, you should ensure that: * Your system meets or exceeds Drupal's minimum requirements as shown athttp://drupal.org/requirements. * You have a backup of all your...
View Articlefullsitebackup.sh Drupal Site backup Script
Copy this text to a file named fullsitebackup.sh. Please ensure that special characters, such as backtick ("`") and quotes, are saved correctly. #!/bin/bash## fullsitebackup.sh V1.0## Full backup of...
View Articlefullsiterestore.sh script for Drupal
Copy this text to a file named fullsiterestore.sh. Please ensure that special characters, such as backtick ("`") and quotes, are saved correctly.#!/bin/bash## fullsiterestore.sh v1.0## Restore of...
View ArticleBack up your Drupal files
Back up your Drupal filesCopy the contents of your Drupal directory to a directory outside your website, for example /tmp/drupalbackup.Option 1Use a basic copy (and paste) to copy all the files...
View ArticleBack up your Drupal database with MySQL
Back up your Drupal database with MySQLmysqldump -u user -p databasename> drupaldatabasebackupfile.sql...or use one of the options below:Navigate to your live site directory, and download a special...
View ArticleBack up your Drupal database with PostgreSQL
Back up your Drupal database with PostgreSQLThere several ways to do a database backup. E.g.,pg_dump -U [user] -h [host] [databasename] > dump.sqlorpg_dump -U [user] -W -h [host] [databasename] -F c...
View Article