Pages last built on --The date and time does not show up Any-one know how to fixx this?
Jun 10, 1999, 12:54 PM
Veteran (3111 posts)
Jun 10, 1999, 12:54 PM
Post #4 of 5
Views: 2613
At the top of site_html.pl, there should be code that reads:
# the site.
$date = &get_date;
$time = &get_time;
Is it there? If it is, does your site_html.pl also contain this code:
<p><small class="update">Pages Updated On: $date - $time<br>
If so, are you using $site_footer near the bottom of all your pages in the appropriate site_html.pl subroutines?
Code:
# You can put variables here that you would like to use throughout # the site.
$date = &get_date;
$time = &get_time;
Is it there? If it is, does your site_html.pl also contain this code:
Code:
$site_footer = qq~ <p><small class="update">Pages Updated On: $date - $time<br>
If so, are you using $site_footer near the bottom of all your pages in the appropriate site_html.pl subroutines?