Page is a not externally linkable
Eugenios - 6:09 pm on Aug 12, 2004 (gmt 0)
In the meanwhile I'm using this script: <?php if (file_exists($cachefile)) ob_start(); Page with html and database here <?php It doesn't check modification events, but it is what I need. Perhaps later I will add an expiration date. I have yet to find how to do this with a perl script. I will post on the Perl forum to get help. Thanks again, Enrique
Many Thanks Jim, I will check that htaccess code.
$cachefile = "cache/".$title.".html";
{ include ($cachefile);
exit();
}
?>
$buffer = ob_get_contents();
$fp = fopen($cachefile, 'w');
fwrite($fp, $buffer);
fclose($fp);
?>