[quote author=support link=topic=232.msg703#msg703 date=1319204758]
Another way to set CGI environment variables is to specify them as either GET or as POST parameters in the http request.
[/quote]
Do you mean like this?
[code]
form-
<input type="hidden" name="HTMLDOC_NOCGI" value="true">
sb prg-
#!/usr/bin/scriba -c
INCLUDE cgi.bas
OPTION cgi$Method cgi::Post or cgi::Get
cgi::PostParam("HTMLDOC_NOCGI")
or should it be-
HTMLDOC_NOCGI=cgi::PostParam("HTMLDOC_NOCGI")
-------
The sbhttpd server is solid and have made a number of programs for it. Most are xml data parses.
I was going to start compiling more SB modules and ran into the file location problem. I changed these by hand one time on the few I compiled.
/home/riveraa/tmp/scriptbasic/
C:\\ScriptBasic\\
I am going to globally change to
/usr/src/scriptbasic/
-----------
I am still trying to get a working copy of the GD graphics library for linux. The open source project seems to be in disarray. The japi (java) SB module does more really, so have changed servers.
Was using unbutu server LAMP install. Just changed to ubuntu server tomcat 6 for the java server, still setting up. The biggest problem is testing the home server, as it has to be accessed locally to load it. Often remote users off the web run into different problems that I can not see. If you know a way around this I would love to know it. The biggest problem using scriptbasic I think is the lack of examples in the documentation. Many times a lot of time is spent trying to figure out how a command works, what the syntax is. Where examples are shown sometimes they are the most complex and involved imaginable. I simple example would serve as a better starting point for new users maybe.
Later, Ron
[/code]