1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<HTML>
<!--
Available WWWOFFLE Variables (all with a '$' prefix).
localurl = The root URL of the server running wwwoffled (='$localurl').
version = The version of the WWWOFFLE server (='$version').
section = The name of the section that has been updated (='$section').
reason = The reason that the update failed (='$reason')
ReadError - The config file could not be read.
BadSection - The specified section does not exist.
BadBody - The body of the request from the browser was invalid.
WriteError - The config file could not be written.
-->
<HEAD>
<TITLE>WWWOFFLE - Configuration Update Error</TITLE>
<LINK href="$localurl/wwwoffle.css" type="text/css" rel="stylesheet">
</HEAD>
<BODY class="wwwoffle-message">
<!-- Standard WWWOFFLE Message Page Header Start -->
<div class="wwwoffle-header" align="center">
<b>WWWOFFLE</b> <b>-</b> <b>W</b>orld <b>W</b>ide <b>W</b>eb <b>Offl</b>ine <b>E</b>xplorer <b>-</b> <b>v$version</b>
</div>
<hr class="wwwoffle-header">
<!-- Standard WWWOFFLE Message Page Header End -->
<H1 align="center">WWWOFFLE Configuration Update Error</H1>
<div class="wwwoffle-message" align="center">
$reason?=ReadError{
Could not open the configuration file <b><tt>wwwoffle.conf</tt></b> for reading
or there was a parse error in reading the configuration file.
<p>
}{}
$reason?=BadSection{
There is no section called <b><tt>$section</tt></b> in the configuration file
<b><tt>wwwoffle.conf</tt></b> to update.
}{}
$reason?=BadBody{
The body of the request was empty or invalid.
}{}
$reason?=WriteError{
Could not open the configuration file <b><tt>wwwoffle.conf</tt></b> for writing.
}{}
</div>
<!-- Standard WWWOFFLE Message Page Inline Help Start -->
<h2 class="wwwoffle-inline-help">Help</h2>
<div class="wwwoffle-inline-help">
$reason?=ReadError{
The configuration file could not be opened or could be opened but the contents
could not be understood. Check that the file <tt>wwwoffle.conf</tt> that was
used to start the <tt>wwwoffled</tt> program exists. It must also be readable
by the user that the program is running as.
}{}
$reason?=BadSection{
The forms on the Configuration File Edit page are the only ones that can be used
to update the configuration file. All of the forms on that page will allow
modification of one of the sections of the configuration file. The request that
your browser sent does not match one of these sections. Check that you are
using the correct forms to update the information.
}{}
$reason?=BadBody{
The browser has sent an invalid response to the form on the Configuration File
Edit page. Either the browser sent an empty reply instead of the form data,
there was a network error sending the form data or the data that was sent was
invalid. You should try to fill in the information in the form again and send
it again.
}{}
$reason?=WriteError{
The configuration file could not be opened for writing. Check that the file
<tt>wwwoffle.conf</tt> that was used to start the <tt>wwwoffled</tt> program
exists. It must also be writable by the user that the program is running as.
}{}
</div>
<!-- Standard WWWOFFLE Message Page Inline Help End -->
<div class="wwwoffle-nav" align="center">
[<a href="/control/edit/">Configuration Edit page</a>]
</div>
<!-- Standard WWWOFFLE Message Page Footer Start -->
<hr class="wwwoffle-footer">
<div class="wwwoffle-footer" align="center">
WWWOFFLE - [ \
<a href="$localurl/Welcome.html" title="An introduction to WWWOFFLE">Welcome Page</a>| \
<a href="$localurl/FAQ.html" title="Frequently Asked Questions about WWWOFFLE">FAQ</a> \
] - WWWOFFLE
</div>
<!-- Standard WWWOFFLE Message Page Footer End -->
</BODY>
</HTML>
|