404 File Not Found

'; } } # If there's no template.html we don't want to parse $html_file. if($html_exists && !$php_exists && !file_exists('template.html')) { readfile($html_file); exit(); } if($html_exists) { tem_load_new($html_file); } if($php_exists) { # files can return a basename or URL of a page to be run/displayed $other = file_run($php_file); if($other) { run_php($other); return; } } else { $sub_names = tem_top_sub_names(); foreach($sub_names as $sub_name) { tem_sub($sub_name); } } # Check for $GLOBALS['wfpl_template'] because it might have been set (or unset) by the php script. if($GLOBALS['wfpl_template']) { if(file_exists('template.html')) { $tem = new tem(); $tem->load("template.html"); $tem->set('basename', $basename); if($cms_content) foreach($cms_content as $name => $val) { $tem->append($name, $val); } $sections = tem_top_subs(); if($sections) foreach($sections as $name => $val) { $tem->append($name, $val); } if(file_exists("$basename.css")) { $tem->set('css_link', "$basename.css"); $tem->sub('css_links'); } $GLOBALS['wfpl_template'] = $tem; } if(function_exists('display_messages')) { display_messages(); } tem_output(); } } run_php(); ?>