I was not the person who did the original installation or setup of this server/site configuration, but the first site’s index and path are in the htdocs folder. The second site’s files are in a few folders down within the htdocs. Each folder has a domain name pointing to it.
Site1 - Domain points to htdocs
Site2 - Domain points to mwrbrandcentral folder within htdocs.
Other sites that were ideally going to be built in EE would be placed in a folder within mwrbrandcentral, their URLs being mwrbrandcentral/site/.
EDIT: Man it’s way too early, I forgot to finish this post before posting.
The “system” folder is called creativesvs and that folder is in htdocs (htdocs/creativesvs).
here is what is in each of the path files:
Site 1 Path (htdocs):
<?php
// ------------------------------------------------------
// DO NOT ALTER THIS FILE UNLESS YOU HAVE A REASON TO
// ------------------------------------------------------
// Path to the directory containing your backend files
$system_path = "./creativesvs/";
// ------------------------------------------------------
// MANUALLY CONFIGURABLE VARIABLES
// See user guide for more information
// ------------------------------------------------------
$site_name = 'default_site';
$template_group = "";
$template = "";
$site_url = "http://www.armyfestivalofthearts.com/";
$site_index = "index.php";
$site_404 = "";
$global_vars = array(); // This array must be associative
?>
Site 2 Path (htdocs/mwrbrandcentral/test):
<?php
// ------------------------------------------------------
// DO NOT ALTER THIS FILE UNLESS YOU HAVE A REASON TO
// ------------------------------------------------------
// Path to the directory containing your backend files
$system_path = "../../creativesvs/";
// ------------------------------------------------------
// MANUALLY CONFIGURABLE VARIABLES
// See user guide for more information
// ------------------------------------------------------
$site_name = 'fs';
$template_group = "";
$template = "";
$site_url = "http://www.mwrbrandcentral.com/test/";
$site_index = "index.php";
$site_404 = "";
$global_vars = array(); // This array must be associative
?>