Online documentation - Websydian v6.0 |
Users Guide | Patterns Reference | WebsydianExpress | Search |
[HTML]
PATH=.\HTML\
DATE=dd/mm/yyyy
TIME=hh:mm:ss
TIMESTAMP=dd/mm/yyyy hh:mm:ss
Make sure the DATE, TIME, and TIMESTAMP has the correct format for your Websydian Application.
ScriptAlias /webdemo/ "C:/Apache/webdemo/"
The ScriptAlias name "/webdemo/" is case sensitive by default.
Below the Script Alias add a Directory section for the authoriazation of the directory described under the ScriptAlias.
<Directory "c:/Apache/webdemo">
AllowOverride None
Options None
Order allow,deny
Allow from all
</Directory>
Select the "Start Apache in console" from the menu item created during installation of the Apache HTTP Server. This will start the Apache HTTP Server in a console which will be shown as a window holding no information.
Default installation of the Apache HTTP Server as a console application sets the listening port to 8080. Change this by changing the value of the Listen statement in the configuration file.
In order to check if the Apache HTTP Server is running, try accessing the server from the browser http://localhost:8080.
http://localhost:8080/webdemo/dispat.exe
Further information on the Apache HTTP Server can be found at http://www.apache.org/