44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
-
+
|
To run this same program as a traditional web-server on TCP port 8080, enter:
>
wapptclsh main.tcl --server 8080
Here the built-in web-server listens on all IP addresses and so the
web page is available on other machines. But the web-brwser is not
web page is available on other machines. But the web-browser is not
automatically started in this case, so you will have to manually enter
"http://localhost:8080/" into your web-browser in order to see the page.
To run this program as CGI, put the main.tcl script in your web-servers
file hierarchy, in the appropriate place for CGI scripts, and make any
other web-server specific configuration changes so that the web-server
understands that the main.tcl file is a CGI script. Then point your
|