| > I have been using httrack for a while, and
> I was wondering if some one developped a programm
> (shell, perl, php, ...) to make a web page out of
> the hts-log.txt file.
What kind of webpage? Do you want a program to analyse the log and display
statistics or something? Or just a simple HTML page? You could convert it do
HTML easily enough:
1. Copy hts-log.txt to hts-log.htm
2. Add code to top of file
<html>
<head><title>HTTrack log</title></head>
<body>
<pre>
3. Add code to bottom of file
</pre>
</body>
</html>
| |