We just upgraded to EE2 from EE1.7. Our old path.php file had:
$template_group = "f2f";
$template = "index";
$site_url = "";
$site_index = "";
$site_404 = "";
$global_vars = array(); // This array must be associativeThe new index.php file has:
$assign_to_config['template_group'] = 'f2f';
$assign_to_config['template'] = 'index';
$assign_to_config['site_index'] = '';
$assign_to_config['site_404'] = '';
$assign_to_config['global_vars'] = array(); // This array must be associativeI have verified in the control panel that my changes to the index.php file are accepted. When I load any template apart from index in the f2f template group, we still see only the index template. I have also tried setting $site_index = “index” and leaving $template blank, however, then the main sites index loads instead of the template group f2f index.
Any suggestions? Bug or config issue on my end?