----- Original Message -----
From: <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Monday, November 22, 1999 2:09 AM
Subject: [REBOL] cgi-rebol
> I am trying to run this cgi form example script that I got from rebol's
> website on a xitami server running on win98. This is the message I get
> run I submit the form. After a minute I also get a server overloaded
> message from xitami. Any ideas?
>
>
> Script: "Easy CGI Form Example" (19-Jul-1999)
> Content-Type: text/html
>
> ** Script Error: decode-cgi expected args argument of type: any-string.
> ** Where: cgi: make object! decode-cgi system/options/cgi/query-string
Looks like nothing is in the query-string.
;Add this line just before the decode-cgi line.
print ["Query String" probe system/options/cgi/query-string]
This should let you see if anything is coming into the query string.
If nothing is in the query-string, make sure the page that is calling this
script is actually passing the
query. You can also just test to if any query-string is showing up at all by
typing the path and query directly into your browser. e.g
http://www.server.com/cgi-form.r?teststring=pleaseworkorIwilldeleteyou
Hope this helps
Allen K