ZikZak wrote: > I'm a beginner with Rebol and im' trying to test the cgi of the tutorial : > > #!/www/cgi/rebol -c > REBOL [Title: "Server Time"] > print "content-type: text/html^/" > print [<HTML><BODY>] > print ["Date/time is:" now] > print [</BODY></HTML>] > > but when I open the page with my browser I obtain the following message : > > ** Near: size: size-text self > all [ > para para/origin size: size + para/origin > para/margin size: size + para/margin > ] > > [H[J > > > Can you explain to me where is the problem ?
That error looks like a Rebol/View problem. It seems like you're using Rebol/View on the web server and it hasn't had the opportunity to install itself yet. I'd suggest switching to Rebol/Core and try the script again. Alternatively, try running Rebol/View on the server and let it install self (you'll need to provide appropriate answers during the install). I hope that helps! -- Andrew J Martin ICQ: 26227169 http://www.rebol.it/Valley/ http://valley.orcon.net.nz/ http://Valley.150m.com/ -><- -- To unsubscribe from this list, just send an email to [EMAIL PROTECTED] with unsubscribe as the subject.
