I have two standard templates that all my pages use: headers.shtml and footers.shtml. However, it seems as if one of my CGI files is reading the headers.shtml file from an older cached version while my other CGI file is reading the the more recent one.
I've checked directories containing both files as well as the directory with the .shtml files to see if there are hidden or cache files but there are none. The changes I made yesterday were simply adding two links. I have a couple more html and shtml files that have picked up the changes just fine. This is what's contained in both files: use HTML::Template; ... my $header_template = HTML::Template->new(filename=>'/var/www/html/headers.shtml'); my $footer_template = HTML::Template->new(filename=>'/var/www/html/footers.shtml'); ... print $header_template->output; ... print $footer_template->output; ... I have also checked Template.pm to make sure caching was turned off. Any ideas? ------------------------------------------------------- The SF.Net email is sponsored by: Beat the post-holiday blues Get a FREE limited edition SourceForge.net t-shirt from ThinkGeek. It's fun and FREE -- well, almost....http://www.thinkgeek.com/sfshirt _______________________________________________ Html-template-users mailing list Html-template-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/html-template-users