Internal version number is now 7.00
authorArt Cancro <ajc@citadel.org>
Mon, 11 Dec 2006 23:02:32 +0000 (23:02 +0000)
committerArt Cancro <ajc@citadel.org>
Mon, 11 Dec 2006 23:02:32 +0000 (23:02 +0000)
webcit/README.txt
webcit/webcit.h

index 628abc2c1d47496be33821edf9364c60e1690cdc..c03deb700b17dc71a877edacc2d232f39a5db0c3 100644 (file)
@@ -1,5 +1,5 @@
                         WEBCIT for the Citadel System
-                               version 6.84
+                               version 7.00
  
    Copyright (C) 1996-2006 by the authors.  Portions written by:
        Art Cancro
@@ -33,7 +33,6 @@
    [http://cerca.html.it/cgi-bin/cerca.cgi?q=nifty+corners].  This component
    is licensed to you under the terms of the GNU General Public License.
 
-
    The Citadel logo was designed by Lisa Aurigemma.
 
  
@@ -57,11 +56,10 @@ to be attractive and easy to navigate.
  Unline some web-based packages, WebCit contains its own standalone HTTP
 engine.  As a result, you can get it running quickly without all that tedious
 mucking about with Apache configuration files and directories.  WebCit is not
-intended to replace your Apache server, however -- it *only* provides a front
-end to Citadel.  If you do not have another web server running, you may run
-WebCit on port 80; however, in the more likely situation that you have Apache
-or some other web server listening on port 80, you must run WebCit on another
-port.  The default is port 2000.
+intended to be a general-purpose web server, however -- it *only* provides a
+front end to Citadel.  If you do not have another web server running, you may
+run WebCit on port 80; however, if you have Apache or some other web server
+listening on port 80, you must run WebCit on another port.
  
  To compile from source, enter the usual commands:
   ./configure --prefix=/usr/local/webcit   [or whatever directory you prefer]
@@ -78,7 +76,11 @@ port.  The default is port 2000.
  After running setup, you just point your web browser to whatever port you
 specified, such as:
  
-  http://your.host.name:2000
+  http://your.host.name
+ (or if you specified some other port, such as 8080 in this example...)
+  http://your.host.name:8080
  
  ...and log in.
  
@@ -109,13 +111,15 @@ the "webserver" program:
      You can leave this out, in which case WebCit will listen on all
      available network interfaces.  Normally this will be the case, but if
      you are running multiple Citadel systems on one host, it can be useful.
+     You can also use this option to run Apache and WebCit on different IP
+     addresses instead of different ports, if you have them available.
  
   -> http_port: the TCP port on which you wish your WebCit server to run.  If
      you are installing WebCit on a dedicated server, you can use the
      standard port 80.  Otherwise, if port 80 is already occupied by some
      other web service (probably Apache), then you'll need to select a
      different port.  If you do not specify a port number, WebCit will attempt
-     to use port 2000.
+     to use port 80.
      
   -> tracefile: where you want WebCit to log to.  This can be a file, a
      virtual console, or /dev/null to suppress logging altogether.
index 4fd908bbca7fcc62041890ccff86e65c005b7546..0ad8dd926529fc3fe725d92ace8fbf7beeeb5e76 100644 (file)
@@ -121,11 +121,11 @@ extern locale_t wc_locales[];
 
 #define SLEEPING               180             /* TCP connection timeout */
 #define WEBCIT_TIMEOUT         900             /* WebCit session timeout */
-#define PORT_NUM               2000            /* port number to listen on */
-#define SERVER                 "WebCit v6.90 (beta)"   /* who's in da house */
+#define PORT_NUM               80              /* port number to listen on */
+#define SERVER                 "WebCit v7.00"  /* who's in da house */
 #define DEVELOPER_ID           0
 #define CLIENT_ID              4
-#define CLIENT_VERSION         690             /* This version of WebCit */
+#define CLIENT_VERSION         700             /* This version of WebCit */
 #define MINIMUM_CIT_VERSION    690             /* min required Citadel ver. */
 #define DEFAULT_HOST           "localhost"     /* Default Citadel server */
 #define DEFAULT_PORT           "504"