Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

webserve.r

 [1/4] from: inetw3::mindspring::com at: 27-Apr-2001 15:53


Hello Rebols' The question was asked months ago, but i missed the reply. If any one nows how to set the %webserve.r,%micro-web serverup to use locally for cgi developement, man/(or woman), please respond, my hairs thinning out. I'm still learning

 [2/4] from: ryanc:iesco-dms at: 27-Apr-2001 14:09


Cal Dixon's webserv.r? Just make sure you have a www subdirectory, and it should go. I am running it right now. You might use this for testing: ------------------------------ #!rebol --cgi REBOL [ Title: "CGI Form Dumper" Date: 19-July-1999 File: %cgidump.r Purpose: { Display the contents of a submitted form as a web page. Useful for debugging CGI forms. } Notes: { See the cgiform.r file for server instructions. } ] print "Content-Type: text/html^/" ;-- Required Page Header cgi: make object! decode-cgi system/options/cgi/query-string print [<html><body><h2>"CGI Form Results:"</h2>] foreach name next first cgi [print [name "is" <B> cgi/:name </B><P>]] print [</body><html>] ------------------------------ Just give it a url like 10.67.96.3/cgidump.r?test="ok", otherwise it bombs--this might be your difficulty if your already using it. --Ryan Daniel Murrill wrote:
> Hello Rebols' > The question was asked months ago, but i missed the reply.
<<quoted lines omitted: 5>>
> [rebol-request--rebol--com] with "unsubscribe" in the > subject, without the quotes.
-- Ryan Cole Programmer Analyst www.iesco-dms.com 707-468-5400 I am enough of an artist to draw freely upon my imagination. Imagination is more important than knowledge. Knowledge is limited. Imagination encircles the world. -Einstein

 [3/4] from: gchiu:compkarori at: 28-Apr-2001 9:55


On Fri, 27 Apr 2001 15:53:36 -0500 "Daniel Murrill" <[inetw3--mindspring--com]> wrote:
> The question was asked months ago, but i missed the > reply.
<<quoted lines omitted: 3>>
> respond, > my hairs thinning out. I'm still learning
I have a modified version of rebweb.r at http://203.79.82.38/zwiki/RebWeb which also executes rebol scripts -- Graham Chiu

 [4/4] from: dmurrill:mindspring at: 27-Apr-2001 17:10


Thanks a whole lot Graham and Ryan.

Notes
  • Quoted lines have been omitted from some messages.
    View the message alone to see the lines that have been omitted