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

[REBOL] Re: problem with cgi installation on a server

From: joel:neely:fedex at: 24-May-2003 18:28

Hi, [rebolask--free--fr] wrote:
> www > cgi-bin > > path to perl is #!/usr/bin/perl > > so I uploaded rebol in cgi-bin and set permission to 755 as well as now.cgi > with permission also and content > > #!/usr/bin/rebol -c >
If you put REBOL in .../www/cgi-bin and then specified in your script (via the shebang line) that REBL was located in /usr/bin then it's not surprising that the script won't run. If I've understood your email correctly, then you need either to put REBOL in /usr/bin or change your shebang line to refer to the *file*system*directory* (note: *not* the URL path under the web server's document directory) where REBOL is actually located. HTH, -jn-