New to Drupal. Creating scripts to do a fully automated install. On Windows (is this my problem...?).
I'm downloading Drupal and it's dependencies just fine via 'drush make'. I am even using the 'Profiler' module for extended profiles. (What I don't like about Profiler is that it runs the profile AFTER you've filled out the forms and could put in different values.)
I am attempting to bypass the install screen steps via non-interactive install. I created a simple PHP script which is below, running from the command line:
(I tried using 'drush install-site' but seemed to be getting even more problems. Could this be from a lack of decent handling of / slashes?)
<?php
define('MAINTENANCE_MODE', 'install');
/**
* Root directory of Drupal installation.
*/
define('DRUPAL_ROOT', getcwd());
require_once DRUPAL_ROOT . '/includes/install.core.inc';
$settings = array(
'server' => array(
'HTTP_HOST' => 'localhost',
),
'forms' => array(
'install_select_profile' => array(
'profile' => 'standard',
),
'install-select-locale' => array(
'locale' => 'en',
),
'install_settings_form' => array(
'driver' => 'mysql',
'mysql' => array(
'database' => 'mydatabase',