June 27, 2006

Cache removal problems

I found out exactly why the cache was not being cleared. Incorrect code. < my $CachingFile = $FreshPorts::Config::CachingRoot . '/cache/' . $category_name . '.' . $port_name; --- > my $CachingFile = $FreshPorts::Config::CachingRoot . ‘/cache/ports/’ . $category_name . ‘/’ . $port_name . ‘.*.html’; The first line is the existing production code. It refers to the old […]

Cache removal problems Read More »

Scroll to Top