Not using Dreamweaver or any page maker.
Now that I have the directory structure the same it seems to be reading HTML but the PHP template file is not showing up.
I think it has something to do with the code not finding this DOCUMENT_ROOT file which is the template for all our pages. I don't understand where it is looking for these these variables. This is the code that heads all our pages:
<?php
$common = $SERVER['DOCUMENT_ROOT']."/common/";
require_once($SERVER['DOCUMENT_ROOT']."/common/consts.html");
//$fname=$GET['fn'];
if($fname == "") {
$fname = "about_body.php";
require_once($SERVER['DOCUMENT_ROOT'].PATH.$fname);
}
//give title and meta tags for the page if they are not set in the body
if ($title == "") $title = "My Company";
//--$meta_cont = "";
//--$meta_desc = "";
include_once($common.'head_tag.html');
//Identify the page by setting it to a constant from consts.html
$nav = ABOUT;
//-----------------------------------------//
//---- page is displayed from here ---//
//for custom tops of the page set below to "true" and provide the title
$no_title_images = false;
//if above is false, do not forget to provide the images
//if files where not set in the body, set it here
if ($top_left_img == "")
$top_left_img = "/images/secondary_char_about.jpg";
if ($page_title_img == "")
$page_title_img = "/images/secondary_titleheads_about.jpg";
$no_title_images = false;
include_once($common.'body_top.html');
?>