I have been running my new site on my local machine with full success and am having a problem with FastTemplate when I am going live. I get the following error:
Cannot instantiate non-existent class: fasttemplate in ...
I think this is telling me it can not find the class. I am on a server shared by others and don't have access to the php.ini file so I put the site address in my includes. Here is the first few lines that I can't understand the problem.
include "http://cfbdatawarehouse.com/include_files/class.FastTemplate.php";
$tpl = new FastTemplate("http://cfbdatawarehouse.com/include_files/");
$tpl->define(array(
"toplevel" => "conference/conf_champs_toplevel.htm",
"table" => "conference/conf_champs_table.htm",
"rows" => "conference/conf_champs_rows.htm"
));
Can anyone see a problem?
David