<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
</head>
<body bgcolor="#ffffff" text="#333333">
> Can you please try with the attached patch?<br>
<pre>>
> Thanks,
> Hans
>
<i>>
</i>> -------------- next part --------------
> Index: misc.lisp
> ===================================================================
> --- misc.lisp      (revision 2282)
> +++ misc.lisp      (working copy)
> @@ -180,7 +180,10 @@
>  (defun enough-url (url url-prefix)
>    "Returns the relative portion of URL relative to URL-PREFIX, similar
>  to what ENOUGH-NAMESTRING does for pathnames."
> -  (subseq url (mismatch url url-prefix)))
> +  (let ((start (mismatch url url-prefix)))
> +    (if start
> +        (subseq url start)
> +        "")))
>  
>  (defun create-folder-dispatcher-and-handler (uri-prefix base-path &optional content-type)
>    "Creates and returns a dispatch function which will dispatch to a


I tried the patch. It is still does not work, but the error message changes to:

Bad Request</pre>
Your browser sent a request that this server could not understand.<br>
<br>
--Jeff<br>
</body>
</html>