home *** CD-ROM | disk | FTP | other *** search
/ Beijing Paradise BBS Backup / PARADISE.ISO / software / BBSDOORW / LABTST34.ZIP / BBS.ZIP / QUICKBBS.DOC < prev    next >
Encoding:
Text File  |  1995-01-15  |  2.5 KB  |  61 lines

  1.           QuickBBS 2.80 "Classic" or "GoldBase"
  2.  
  3.                Labtest also directly supports QuickBBS 2.80 "Classic" and
  4.                2.80 "GoldBase".  To install Labtest into QuickBBS 2.80, you
  5.                will need to set up a special upload menu (ie: UPLOAD.MNU)
  6.                that would be called from your regular Files Menu.  This
  7.                menu will have three commands, each of which are automatic
  8.                execution commands:
  9.  
  10.                    Optional Data  : C:\UPLOADS\TEMP
  11.                    Menu Type      : 33 (Upload a file)
  12.                    Key            :   (Ctrl A)
  13.  
  14.                    Optional Data  : *C /C C:\QUICKBBS\LABTEST.BAT *M
  15.                    Menu Type      : 7 Shell Under Board and Run Program
  16.                    Key            :   (Ctrl A)
  17.  
  18.                    Optional Data  : FILES
  19.                    Menu Command   : 2 Return to previous menu
  20.                    Key            :   (Ctrl A)
  21.  
  22.                    Sample LABTEST.BAT for QuickBBS
  23.  
  24.                :UPLDSCAN
  25.                   CD\UPLOADS\TEMP
  26.                   IF NOT EXIST *.* GOTO DONE
  27.                   REM ** Caller uploaded something
  28.                   REM ** Run scanner on directory TEMP; if bad, move to BAD
  29.                   REM ** directory
  30.                   C:\LABTEST\LABTEST C:\UPLOADS\TEMP\
  31.                   IF NOT EXIST FILES.BBS GOTO SKIP
  32.                   REM ** Transfer description to the download directory
  33.                   TYPE FILES.BBS >> \UPLOADS\NEWUPLDS\FILES.BBS
  34.                   DEL FILES.BBS
  35.                :SKIP
  36.                   REM ** Move good files to UPLOADS directory
  37.                   COPY *.* \UPLOADS\NEWUPLDS /V
  38.                   ECHO Y | DEL *.* > NUL
  39.                :DONE
  40.               
  41.                C:
  42.                CD\QBBS
  43.                EXIT
  44.  
  45.                Note:  The trailing back slash on the upload directory in
  46.                line 7 is required!
  47.  
  48.                This informs Labtest that C:\UPLOADS\TEMP\ is a directory
  49.                and not a file. Your Labtest Directory must also be in your
  50.                PATH statement or Labtest must be setup in a Directory
  51.                that is already in your PATH.
  52.  
  53.                You must specify the *M command to force QuickBBS to swap
  54.                out of memory.
  55.  
  56.                This menu will be called from your normal Files menu and
  57.                will replace your existing upload command.
  58.  
  59.                Labtest will check any new files received in your upload
  60.                directory.
  61.