messages.ini, stores error codes and messages returned to client on error.
Syntax
error_code = title{;message}
|
error_code
|
the HTTP return code to associate with this message.
|
|
message
|
any message to display for this error code.
|
|
title
|
the title to display and return to the client in the header.
|
Notes
Messages are used when sending a reply to the client or when returning an
error message.
Servertec Internet Server uses the template
iws_dirbuild\storage\messages.html
when generating messages.
Title and Message may contain CGI variables delimited by %. Some of
the CGI variables are:
request_uri - the requested URI.
request_method - the request method.
Changes made to configuration files will not be used until the Servertec
Internet Server is rebuilt and redeployed.
Example
405 = 405 Method Not Allowed: %request_method% ;The method specified %request_method% is not supported.
|