diff --git a/doc/en/install.txt b/doc/en/install.txt
index 96bbbdca..2774a812 100644
--- a/doc/en/install.txt
+++ b/doc/en/install.txt
@@ -175,6 +175,11 @@ interface.
You can use and adjust the example HTML files in the lconline directory
to run the script.
+0. Note that running LinkChecker requires CPU and memory resources.
+ Allowing a CGI script to execute such a program for possibly a
+ large number of users might deplete those resources.
+ Be sure to only allow access from trusted sites to this script.
+
1. Choose a CGI script. The simplest is lc.cgi and you need a web server
with CGI support.
The script lc.fcgi (I tested this a while ago) needs a web server
diff --git a/linkcheck/lc_cgi.py b/linkcheck/lc_cgi.py
index 0f963da3..4b8b95b8 100644
--- a/linkcheck/lc_cgi.py
+++ b/linkcheck/lc_cgi.py
@@ -35,7 +35,7 @@ import linkcheck.director
_logfile = None
_supported_langs = ('de', 'fr', 'nl', 'C')
-_is_level = re.compile(r'^[0123]$').match
+_is_level = re.compile(r'^(0|1|2|3|-1)$').match
class FormError (StandardError):
"""