home *** CD-ROM | disk | FTP | other *** search
/ Beijing Paradise BBS Backup / PARADISE.ISO / software / BBSDOORW / BFE2000P.ZIP / BFE2000P.EXE / DOCS / TIPS.DOC < prev   
Encoding:
Text File  |  1993-10-30  |  4.8 KB  |  107 lines

  1.  
  2.            Frequently asked Questions on successfully running BFE
  3.     (Compiled by user submissions to the author and beta testers of BFE)
  4.  
  5.                       Last updated: 30 October 1993  
  6.  
  7. Q) I am trying to call another door from one of my BFE menus, but it just
  8.    simply isn't working!  What can I do?
  9.  
  10. A) For starters, replace the name of the door with the supplied CMDLINE.EXE
  11.    program that came packed in the distribution archive.  This program will
  12.    simply echo the command line parameters to your console.  The improper
  13.    passing of command line parameters to a door is perhaps the number one
  14.    cause of heart ailment in sysops today.
  15.  
  16.    Secondly, check the configuration of your menu item in BFE/Setup.  Do you
  17.    have PASSPARMS set to the proper value?  If your door needs a dropfile,
  18.    is BFE configured to create one for you?
  19.  
  20.    If all else fails, post a message in either DOORWARE, SPHINX, etc, and
  21.    see if other sysops have it running successfully.
  22.  
  23. Q) I am trying to run my BBS as an external process.  Why won't it work?!
  24.                            
  25. A) This be quite a few things, the first being lack of conventional memory
  26.    for the BBS to operate!  Be sure that you have enabled the swapping
  27.    features of BFE, to allow it to swap itself out when running external
  28.    processes!
  29.  
  30. Q) I am trying to display an ANSI animation, and I keep getting this
  31.    annoying "continue?" prompt every few lines that go by!  This is getting
  32.    old, friend!
  33.  
  34. A) By default, BFE uses an internal page pausing system.  You can disable
  35.    this feature, and show your animated ANSI screen, by using the following
  36.    simple script example:
  37.  
  38.         main()
  39.         {
  40.           ToggleMore();            /* Disable the page pausing system */
  41.           Displayfile("Cartoon");  /* Show the screen!                */
  42.           ToggleMore();            /* Re-enable the page pauser...    */
  43.         }
  44.  
  45. Q) How can I display more than one "welcome" screen when a user goes into
  46.    BFE?
  47.  
  48. A) This can also be done very easily in BFE/Script.  First, you must enable
  49.    the BFE "startup" script option (see the docs).  Then, create and call
  50.    a script which looks something like:
  51.  
  52.         main()
  53.         {
  54.           DisplayFile("Welcome1");      /* Main welcome screen   */
  55.           DisplayFile("Welcome2");      /* Second welcome screen */
  56.         }
  57.  
  58. Q) BFE simply refuses to operate for me!  What the heck is wrong here?
  59.  
  60. A) Read!  That is the key to using BFE, plain and simple.  Chances are, you
  61.    have a stray dropfile somewhere, or simply have BFE set up wrong.  If all
  62.    else fails, post a message in the SPHINX echo, or drop us a netmail
  63.    message (we do read our mail!) :-)
  64.  
  65. Q) When I try to use a custom user menu, it absolutely refuses to be
  66.    displayed properly!  It scrolls down the screen with a number of extra
  67.    lines, etc.
  68.  
  69. A) Chances are, you will need to manually modify any custom user menus that
  70.    you create, as most ANSI paint programs will tack on "extra" lines and
  71.    ANSI escape sequences at the end of the file.  Basically, simply truncate
  72.    the file at the end of your "select" prompt.
  73.  
  74. Q) For some reason, every time a user selects a password-protected option,
  75.    it keeps saying "access denied", but the user hasn't even entered a
  76.    password yet?  What kind of product is this anyway?!?!?!
  77.  
  78. A) Relax!  Check your password attempts setting in BFE/Setup under the
  79.    Global Options menu.  More than likely, you have it set to 0. :-)
  80.  
  81. Q) Why doesn't the BFE Message System allow me to browse, delete, etc.
  82.  
  83. A) Simple!  The BFE Message System was never meant to provide a hook for
  84.    online message reading.  The purpose of the message system is to provide
  85.    a method of entering feedback messages, netmail robot messages, etc.  If
  86.    you want to read and delete them, you should do this through your BBS
  87.    softare, not BFE.
  88.  
  89. Q) When BFE is running with the internal RIP menus, I can't see anything on
  90.    the local screen, but the user can see everything just fine on his end!
  91.  
  92. A) Unfortunately, without writing an internal RIP emulator, there is nothing
  93.    we can do about this problem.  You will find this to be a problem in a
  94.    number of RIP compatible doors.
  95.  
  96. Q) Again with the internal RIP menus, the text of some menu descriptions
  97.    runs past the borders of the button!
  98.  
  99. A) Due to the limited size of the graphics screen, we were forced to create
  100.    two "columns" of selection buttons in RIP mode, in order to display as
  101.    many menu options as possible on the screen.  Hence, you will need to
  102.    shorten your descriptions a bit.  Of course, you could always create
  103.    your own custom menus.  The internal menus of BFE were designed to
  104.    provide a quick way to get BFE up and running without having to spend
  105.    any down time designing and testing custom screens.
  106.  
  107.