Liran Tal wrote:
> Our permissions and authentications are controlled via the
> htpasswd/htaccess
> utility which is very common to Apache-style web servers.
Yes, it is great unless you need session control and complex authentication
and access control logic.
> Could you elaborate more on the single-CGI page architecture?
> How do you differentiate pages? (using a main.cgi?Page=12 method?)
No, we're using clean URL's and receiving paths via PATH_INFO variable.
So, to the user it looks like "http://router/section/page.html" and CGI
program receives "router/section/page.html" in the PATH_INFO.
Sincerely,
Nick