r3wp [groups: 83 posts: 189283]
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

World: r3wp

[!Cheyenne] Discussions about the Cheyenne Web Server

onetom
4-Jun-2011
[10776]
i happen to have a win7 laptop around. i will git it a try, if u 
can be more specific about the versions of ur environment
run http://cheyenne-server.org/tmp/cheyenne-sources-r146.zip
with http://www.rebol.com/downloads/v278/rebol-view-278-3-1.exe?
Maxim
4-Jun-2011
[10777x3]
rebol-view-278-3-1.exe doing an svn checkout  (r146) which should 
be the same as the .zip
win7 (not yet upgraded to sp1)  with UAC turned on.
dir opus has a mode where you can elevate the explorer to have administrative 
rights enabled (which is independent of being an admin user) and 
this doesn't change anything.
GrahamC
5-Jun-2011
[10780x2]
In the database connections, can Cheyenne connect to an odbc dnsless 
connection?
dsn-less
Dockimbel
6-Jun-2011
[10782]
Cheyenne just calls "open" on the URL you pass in the databases block, 
so if you can connect from console, Cheyenne can too.
GrahamC
6-Jun-2011
[10783]
It has to be a url?  In a dsn-less connection you provide a spec 
block
Dockimbel
7-Jun-2011
[10784]
You are lucky, Cheyenne does not check the syntax of the 'databases 
config block, so a block! should work (as long as it is accepted 
by OPEN).
GrahamC
7-Jun-2011
[10785]
:)
Sunanda
16-Jun-2011
[10786]
Config question on stack overflow:
   http://stackoverflow.com/questions/6367201
Henrik
17-Jun-2011
[10787]
Maarten, this is the Cheyenne group.
Maarten
18-Jun-2011
[10788x2]
Yep, didn't see it first.
Question stands: can I encap an embbed Cheyenne, and if so, how?
Kaj
18-Jun-2011
[10790]
Should be possible by following the embed documentation, but I've 
never done it
nve
18-Jun-2011
[10791x2]
In httpd.cfg, activate embed module :
modules [
embed
]
From http://cheyenne-server.org/wiki/Config/Struct:

Note that the embed module, if activated, will disable all the other 
ones (required for proper working of embedded mode).
Maarten
19-Jun-2011
[10793]
So far, that's I don't know either :(
Dockimbel
19-Jun-2011
[10794x6]
Hi Maarten, been quite busy these last days, nice to see you back 
in REBOL world.
About your question: Cheyenne has its own built-in preprocessor for 
encapping. So you should be able to encap Cheyenne using just an 
#include %cheyenne.r
But you need to run Cheyenne from sources at least once to force 
the generation of the %.cache.efs file (result of the preprocessing).
About %httpd.cfg file, it will be written down on disk if not present, 
so if you want to avoid that, you need to patch the sources. For 
that, just edit %Cheyenne/misc/conf-parser.r and comment line 69:

        ; write file data
I never tried encapping Cheyenne in embedded mode, so you might encounter 
other issues though.
Ah, another important thing for encapping: you need to edit %Cheyenne/encap-paths.r 
and configure the paths to your local SDK folder.
Maarten
19-Jun-2011
[10800]
OK, I may take a look. What I eed is a really simple web server, 
so if it takes too much time I'l just do a 10-liner. That's good 
enough in this case.
Dockimbel
19-Jun-2011
[10801]
If you need a really simple one, they are several on rebol.org that 
could work for you, like Carl's micro web server script.
Henrik
22-Jun-2011
[10802x2]
back to my problem from april 19th: is anyone using webapps under 
a virtual host?
I have tried to use the testapp on Dockimbels request, but it serves 
only non-functioning rsp pages on http://hmkdesign.dk.
Dockimbel
22-Jun-2011
[10804]
Henrik, if you haven't solved yet your configuration issue, you should 
send me your working directory archived along with your configuration 
file, so I can see where is the issue.
Henrik
22-Jun-2011
[10805x2]
Unfortunately that woud take a while to pick apart as I have other 
pages running on that server.
The testapp script makes this error:

22/6-21:54:04.832205-[RSP] ##RSP Script Error:

        URL  = /show.rsp
        File = /home/henrikmk/sites/testapp/show.rsp


        ** Script Error : empty? expected series argument of type: series 
        port bitset
        ** Where: rsp-script
        ** Near:  [either empty? session/content [
print "<LI>No session variables</LI>"
] [
foreach [name value] session/content [
print [<LI> <B> name ":" </B> mold value </LI>]
]
]]
Dockimbel
22-Jun-2011
[10807x3]
Are you overwriting 'session word somehow?
Strange error, having a quick look in RSP.r code.
A session has not been started, which is not possible if it's in 
a webapp.
Henrik
22-Jun-2011
[10810x2]
Is this not the same as if app-init.r was never run?
it's the same as for my webapp. app-init.r never runs, when it's 
inside a virtual host.
Dockimbel
22-Jun-2011
[10812x2]
The session is controlled from the main process, the %app-init cannot 
interfere on session/content loading.
What Cheyenne version are you using?
Henrik
22-Jun-2011
[10814]
a fairly late one. I upgraded shortly before april 19th.
Pekr
24-Jun-2011
[10815]
There is following tweet of Rebol Tutorial. Any advice?

rebtut rebolution is fun

rebol cheyenne works on IP only http://88.191.118.45:2011/ not on 
domain name weird http://reboltutorial.com:2011
Dockimbel
24-Jun-2011
[10816]
He probably has not configured properly his virtual host.
nve
9-Jul-2011
[10817x3]
Does anyone has implemented %html.r extract from Magic! (from Olivier 
Auverlot) under Cheyenne ?
Does anyone is using QM from Chris RG under Cheyenne ?
What are the contribution to Cheyenne ?
Service by Maxim...
Kaj
9-Jul-2011
[10820]
I used QM with Cheyenne
nve
9-Jul-2011
[10821]
Kaj: Cool, is the site is online or just internal ?
Dockimbel
9-Jul-2011
[10822]
I am the author of the NT Services support for Cheyenne.
Kaj
9-Jul-2011
[10823x2]
Nicolas, TryREBOL used to run on QM for the interactivity, but I've 
replaced it with my own framework now
It's still in Syllable Server configured for Cheyenne, though
nve
10-Jul-2011
[10825]
And your own framework is intended to be public ?