home *** CD-ROM | disk | FTP | other *** search
/ Bila Vrana / BILA_VRANA.iso / 018A / NO2F16XL.ZIP / NO2F16XL.EXE / t2.z / config < prev    next >
Text File  |  1997-01-20  |  2KB  |  43 lines

  1.  
  2. ##################################
  3. ###CONFIGURATION##################
  4. ##################################
  5. ##################################
  6. ###FULL URL of BBS################
  7. ##################################
  8. $BBS_HOME='../';
  9. ##################################
  10. ###DISPLAY DIRECTORY##############
  11. ##################################
  12. $HTML_DIR='../html';
  13. $ERROR='error.html';
  14. $ERROR_CHAR='error-char.html';
  15. $SUCCESS='success.html';
  16. ###################################
  17. ###STORAGE DIRECTORY###############
  18. ###################################
  19. # This directory should be "server" readable/writeable/executable only.
  20. $STORAGE_DIR='../message';
  21. # The files below should be world readable/writable only.
  22. $ERROR_COLLECT='error-collect.txt';
  23. $SUCCESS_COLLECT='bbs-data.html';
  24. $TOKEN_FILE ='counter';
  25. $THREAD_TOKEN ='thread_counter';
  26. # if your system does not support the flock() function, comment this out, or set it to 0.
  27. # the latest edition of NT Perl, as well as all unix perl should have flock build in.
  28. $flock_exists = 1;
  29. ##################################
  30. ### END OF CONFIGURATION #########
  31. ##################################
  32. ### APPEND DIRECTORY with FILE ###
  33. ##################################
  34.  $ERROR = $HTML_DIR.'/'.$ERROR;
  35. $ERROR_CHAR = $HTML_DIR.'/'.$ERROR_CHAR;
  36. $SUCCESS = $HTML_DIR.'/'.$SUCCESS;
  37. $TMP = $STORAGE_DIR.'/'.($$).".tmp";
  38. $ERROR_COLLECT = $STORAGE_DIR.'/'.$ERROR_COLLECT;
  39. $INDEX_FILE = $STORAGE_DIR.'/'.$SUCCESS_COLLECT;
  40. $TOKEN_FILE = $STORAGE_DIR.'/'.$TOKEN_FILE;
  41. $THREAD_TOKEN = $STORAGE_DIR.'/'.$THREAD_TOKEN;
  42. ###################################
  43.