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

[REBOL] Re: Putting Rebol on Server?

From: jason:cunliffe:verizon at: 7-Nov-2002 19:31

Robert you're almost there.. Q1: Did you remember to make the script executable ? In a login shell enter: chmod 755 test-absolute.r Heres a mimimal cgi script I use to check Rebol installations. It displays the date and time. ------------------------------- #!/home/jasonic/rebol/rebol -cs REBOL[] print "Content-type: text/html^/^/" result: copy "" append result rejoin[now/precise <br>] print result ------------------------------- Also if you get errors, check by looking at the Apache logs. In a login shell enter: tail path-to-your-apache-logs/error_log Call that rigth after you get an error. hth and please post a little report when you get it running good luck ./Jason