I'm just getting into coldfusion. I've been reading the live docs about using
application.cfc to handle logins but I have some questions about my specific
situation. There are three login pages in my site: 1. [url]www.foo.com/index.cfm[/url] 2.
[url]www.foo.com/manager/index.cfm[/url] 3. [url]www.foo.com/admin/index.cfm[/url] Someone who can
login to #1 cannot login to #2 and #3. Someone who logs in to #2 is
automatically logged into #1 as well, but cannot login to #3 (that is, the
person could click a link from within the #2 site and it would take them to the
#1 site, bypassing the login page since they are already logged in. Someone who
logs in to #3 is automatically logged in to #1 and #2 as well. Can I do this
with just one application.cfc file at the [url]www.foo.com[/url] level? Or do I need a
seperate application.cfc file in each directory? Any help or direction would
be greatly appreciated Thank you.