I have a login page- first it checks the user/password. If there is no match it sends the user back to the login page with a message... If there is a match it checks what group the user is in and what quarter they should have access to. (Current quarter or past quarters). It is only on occassion that a user needs access to a past quarter so by default they are set to current quarter. If a user is in current quarter all is fine. I'm having a situation where when a user is given access to a past quarter they can't log in at all- they get kicked back to the login page with a message! But the oddest part is that it works fine from any of my test machines (I have 3 that I use)- I can log in as this user and see her info. However, she can't and we know it isn't a matter of mistyping the password. I set her back to current quarter access- still no luck she can't get in. We finally changed her password and she finally got back in. Here's my cfif statement to set the path...I don't know if that's the problem or where else to look! Thanks in advance
<CFIF GroupCheck.GrID EQ 1 AND (GroupCheck.OpenQuarter EQ "" OR GroupCheck.OpenQuarter EQ "0")> <CFINCLUDE TEMPLATE="url_EditGrades.cfm"> <CFELSEIF GroupCheck.GrID EQ 1 AND ((GroupCheck.OpenQuarter EQ "1")OR (GroupCheck.OpenQuarter EQ "2") Or (GroupCheck.OpenQuarter EQ "3")) > <CFINCLUDE TEMPLATE="url_EditGradesOtherQuarters.cfm"> ______________________________________________________________________ This list and all House of Fusion resources hosted by CFHosting.com. The place for dependable ColdFusion Hosting. FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/[email protected]/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

