Howdy Kelby Cody:
> I have Rebol installed on a Sun Solaris web server. Now
> I'm wanting to use the script tag within an HTML document
> to run a Rebol script. How do I configure my server to run
> the rebol script?? I know I just put <script
> language="rebol"> but what do I do on the server to get it
> to run/compile the script? Thanks for any help.
>
> Kelby Cody [EMAIL PROTECTED]
Welp, see now, the <script language="foo"> tag is used for
client side (in the browser) languages such as Javascript,
and vbscript. REBOL doesn't run within the browser right
now. Having a script run on the server (where the web pages
are located) is a whole different ball game. You do that
with aid of the Common Gateway Interface (CGI), Server Side
Includes (SSI) or as an embedded web server language (such
as with the REBOL/apache module). From these approaches,
REBOL can be used on the server. They're a bit much to
really explain adequately in an email, but you might try
doing some web searches on the the above as a start.. :-)
You can, though put a script in a web page and fire up rebol
and DO that web page: ie:
do http://my.web.page
--cheers--
-jeff