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

[REBOL] Re: Simple cgi problem/w2k

From: louisaturk:eudoramail at: 2-Jan-2002 15:54

Tim, Rich, and Mike, My ISP has no objection to me using rebol, and is trying to help me get set up. Here is the script I am trying to get to work (right out of the user's guide, page 12-52): #!c:/rebol/rebol --cgi --script REBOL[] print "Content-Type: text/html^/^/" count: either exists? %counter.txt [load %counter.txt] [0] save %counter.txt count: count + 1 print [{<html><body><h2>Web Count Page</h2>You Are Visitor} count {to this page!<p></body></html>}] This is the error message being returned: HTTP 500 - Internal server error Internet Explorer Louis At 02:41 PM 1/2/2002 -0600, you wrote: