We are using Webinator 4.4.8-Unix-w/plugin and implemented the IGNORE TAGS option with <!--beginnotexis--> and <!--endnotexis-->. Whenever we run the WALK with the tags anywhere in our pages, Webinator fails to get the Last Modified Date from the HTTP header. Any suggestions?
In the "storepage" function of dowalk there's a bit of code like below. Delete it from there and put it into the "collectmeta" function (at the beginning).
<getmodheader><!-- get last-modified date of document -->
<if $ret eq ""><!-- webserver did not provide modified date -->
<$when="now"><!-- use visited date -->
<else>
<!-- expected format: Mon, 25 Oct 1999 19:50:28 GMT -->
<timport "recexpr .+
datefmt x, dd mmm yyyy HH:MM:SS xxx
field when date 1
" $ret></timport><!-- turn it into a texis style date -->
<if $loop eq 0><!-- format didn't match -->
<$when="now"><!-- use visited date -->
<else>
<$when=($when-$TZ)><!-- convert from GMT to localtime -->
</if>
</if>