Jan
14
2006
Configuration
Posted by admin under
Old ASP applications
How to get it to work?
1. When you have downloaded it you will get eight files.
2. Place them in a suitable subdirectory, maybe /stats.
3. Have all your ASP pages include incstat.asp like this:
<!--#include virtual="/stats/incstats.asp"-->
4. And have your ASP pages call the subroutine StatLog.
<!--#include virtual="/stats/incstats.asp"-->
<%
StatLog
%>
5. Configuration: The application creates logfiles ( regular textfiles ). You will need a place to put them - that is a directory with read and write rights. Let say you put them under your /stats/files subdirectory.
At the very top of the file incstats.asp there is a function called GetStatDir. You will need to change one line there to point to your /stats/files/ directory.