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

[REBOL] Apache Config for CGI with REBOL

From: raimund:swol at: 26-Feb-2001 20:15

Hi, I am trying to set up apache on my computer (SuSE 7.1) at home to play with CGI and REBOL. But it still does not work. I did the following: - /etc/mime.types added the following line application/x-http-rebol r - /etc/httpd/httpd.conf added the following line Addtype application/x-http-rebol .r Additionally I created the following simple web page ---------------------------------------------------------- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <title>REBOL CGI Test</title> </head> <body> <h1>REBOL CGI Test</h1> <a href="cgi-bin/simple-cgi.r"> Mein erster REBOL-CGI Versuch </a> <hr> <address><a href="mailto:[raimund--linux--local]">Raimund Dold</a></address> <!-- Created: Sat Feb 24 22:13:26 MET 2001 --> <!-- hhmts start --> Last modified: Sat Feb 24 22:46:14 MET 2001 <!-- hhmts end --> </body> </html> ------------------------------------------------------------- The script simple-cgi.r looks like the following. -------------------------------- #!/bin/rebol --cgi REBOL [ ] print "Content-Type: text/plain^/" print "Hello" -------------------------------- But the browser I tried do not process the page like I expected. Netscape just shows the script as plain text and konqueror calls rebol and processes the script as separate process (probably due to the fact that .r files are mime types in KDE, too) Did I miss anything? Thanx Raimund