shell

Fix for How to install Drupal 7 in the command-line

  1. <?php
  2. // Load the installer
  3. require_once 'install.php';
  4.  
  5. // Configure.
  6. $settings = array(
  7.   'interactive' => FALSE,
  8.   'parameters' => array(
  9.     // Available profiles are expert, default.
  10.    

How to install Drupal 7 in the command-line

  1. <?php
  2. require_once 'install.php';
  3.  
  4. $settings = array(
  5.   'interactive' => FALSE,
  6.   'parameters' => array(
  7.     // Available profiles are expert, default.
  8.     'profile' => 'expert',
  9.     'locale'

Shell script for taking a copy of a remote database to your local machine.

  1. if [ $1 = "--help" ];
  2.   then
  3.     echo "
  4.   #########
  5.   # USAGE #
  6.   #########
  7.  
  8.   Syntax for running this script is:
  9.     ./devdb2localdb.sh sshuser sshdomain remotedatabaseuser databasename
Syndicate content