home *** CD-ROM | disk | FTP | other *** search
/ rtsi.com / 2014.01.www.rtsi.com.tar / www.rtsi.com / OS9 / FAQ / cgi-bin / discus4_00 / source / badlogin.tmpl < prev    next >
Text File  |  2009-11-06  |  4KB  |  128 lines

  1. # FILE: badlogin.tmpl
  2. # DESCRIPTION: Error message when you fail to access administration
  3. # Copyright (c) 2002, DiscusWare, LLC, all rights reserved
  4. # -------------------------------------------------------------------------------------------
  5.  
  6. <!--BEGIN-->
  7.  
  8. <html><head><title>Bad Login Error</title>
  9. <style>
  10. p { margin-left: 2pt; }
  11. </style>
  12. </head>
  13. <body bgcolor=#ffffff text=#000000 link=#0000ff vlink=#0000ff>
  14. $fs
  15.  
  16. <#if $general->{upgrade} == 0#>
  17.     <p>
  18.     <font size=5 color=#ff0000><b>BAD LOGIN</b></font>
  19.     </p>
  20.     <#if $general->{reason} == 0#>
  21.         <p>
  22.         Your attempt to access the administration section failed.  Your username
  23.         and/or password was incorrect.
  24.         </p>
  25.         This failed    attempt from
  26.         <#if $ENV{REMOTE_HOST} ne "" && $ENV{REMOTE_ADDR} ne $ENV{REMOTE_HOST}#>
  27.             $ENV{REMOTE_HOST} ($ENV{REMOTE_ADDR})
  28.         <#else#>
  29.             $ENV{REMOTE_ADDR}
  30.         <#endif#>
  31.         has been logged.
  32.         </p>
  33.     <#endif#>
  34.     
  35.     <#if $general->{reason} == 1#>
  36.         <p>
  37.         Your attempt to access the administration section failed.  This error
  38.         generally occurs only if you have not enabled cookies within your browser.
  39.         Check that your browser is set to accept cookies, and then click the
  40.         "Log In Again" link from the main menu to re-attempt your login.
  41.         </p>
  42.     <#endif#>
  43.     
  44.     <#if $general->{reason} == 2#>
  45.         <p>
  46.         Your attempt to access the administration section failed.  This error
  47.         generally occurs if you have toggled the database on or off, and you did
  48.         not export/import the database immediately before you toggled the database.
  49.         </p>
  50.         <p>
  51.         This error can also occur if you have not enabled cookies within your browser.
  52.         </p>
  53.         <p>
  54.         Check that your browser is set to accept cookies, and then click the
  55.         "Log In Again" link from the main menu to re-attempt your login.
  56.         </p>    
  57.     <#endif#>
  58.     
  59.     <#if $general->{reason} == 4#>
  60.         <p>
  61.         Your attempt to access this portion of the administration program has failed.
  62.         This functionality is reserved for the board administrator and is not available
  63.         to regular moderators.
  64.         </p>    
  65.     <#endif#>
  66.     
  67.     <#if $general->{reason} == 5#>
  68.         <p>
  69.         Your attempt to access this portion of the administration program has failed.
  70.         You do not have privileges to access or edit the topic you selected.  Such
  71.         privileges are assigned by the board administrator using the Topic Manager.
  72.         </p>    
  73.     <#endif#>
  74.     
  75.     <#if $general->{reason} == 6#>
  76.         <p>
  77.         Your attempt to access this portion of the administration program has failed.
  78.         You do not have privileges to access or edit this group of users.  Such
  79.         privileges are assigned by the board administrator using the Group Manager.
  80.         </p>    
  81.     <#endif#>
  82. <#endif#>
  83.  
  84. <#if $general->{upgrade} == 1#>
  85.     <p>
  86.     <font size=5 color=#ff0000><b>UPGRADE FAILURE</b></font>
  87.     </p>
  88.     <p>
  89.     Discus 4.0 is equipped to handle upgrades from version 3.10 and later only.
  90.     </p>
  91.     <p>
  92.     Your data from Discus
  93.         {#if $general->{code} == 1#}3.00/3.01
  94.         {#if $general->{code} == 2#}2.50
  95.         {#if $general->{code} == 3#}2.40
  96.         {#if $general->{code} == 4#}2.30 or before
  97.     cannot be directly used in this version.
  98.     </p>
  99.     <p>
  100.     You have two options at this point:
  101.     </p>
  102.     <ol>
  103.     <li><p>Upgrade your board to version 3.10 (available from the DiscusWare web site).
  104.     </p><p>Once that upgrade is properly installed, upgrade to this version.</p></li>
  105.     <li><p>Start over, losing all topics and user data.</p></li>
  106.     </ol>
  107.     <p>
  108.     <a href="http://support.discusware.com/center/resources/errors/upgrfail.html" target="_top">Click here</a>
  109.     for more information concerning this error.
  110.     </p>
  111. <#endif#>
  112.  
  113. <#if $general->{upgrade} == 2#>
  114.     <p>
  115.     <font size=5 color=#ff0000><b>LOGINS DISABLED</b></font>
  116.     </p>
  117.     <p>
  118.     Logins of moderators into the administration program are disabled until the
  119.     board administrator completes the upgrade of this discussion board.
  120.     </p>
  121. <#endif#>
  122.  
  123. </font>
  124. </body>
  125. </html>
  126.  
  127. <!--END-->
  128.