Date:  11/24/2003 05:11:50 PM Msg ID:  001737
From:  FoxWeb Support Thread:  001735
Subject:  Re: Where to put fw_enter.prg
The program fw_enter.prg must be located in the FoxWeb Program Root as specified in the FoxWeb Control Center.  If you are running FoxWeb with the VFP run-time DLL you will need to make sure that you manually compile the PRG file using the full version of VFP.

FoxWeb Support Team
support@foxweb.com email

Sent by Randy Petty on 11/23/2003 05:25:04 PM:
Below is a suggested version of fw_enter.prg for us to use, from Foxweb Support. We're running Foxweb 1.29c.
I added this line --   strtofile("Started " + ttoc(datetime()), "C:\program files\foxweb\fw_enterRan.txt", .t.) 
 
I've tried putting the program in     C:\program files\foxweb       C:\program files\foxweb\programs
C:\inetpub\scripts   ,  F:\foxweb  ( which is where our program root points )   and in
F:\foxweb\programs           After stopping and starting Foxweb each time, I can't see that it's executing this program.
 
 
* fw_enter.prg
#DEFINE TOTAL_BUFFER_SIZE 1300000000
#DEFINE TOTAL_CHANNELS 4
IF TYPE("FW_CompletedFirstTime") = "U"
* The following code only gets executed during
* startup and after each "serious" error
PUBLIC FW_CompletedFirstTime
FW_CompletedFirstTime = .T.
=SYS(3050, 1, TOTAL_BUFFER_SIZE / TOTAL_CHANNELS)
=SYS(3050, 2, TOTAL_BUFFER_SIZE / TOTAL_CHANNELS)
ENDIF