I would like to make a custom installation profile for D7 and one item I want to set is the default time zone. I tried editing function standard_form_install_configure_form_alter on standard.profile to see how it works and I put there:
print_r($form[);die;
and it never dies. I tried making the one line there:
$form['site_information']['site_name']['#default_value'] = 'XXXXX';
but that also doesn't seem to execute.
Does anyone know why?