View Single Post
Old 05-20-2010, 12:27 PM   PM User | #1
theborg72
New Coder

 
Join Date: May 2010
Location: Sweden
Posts: 15
Thanks: 1
Thanked 0 Times in 0 Posts
theborg72 is an unknown quantity at this point
Question session UserAuthorization

Hello. i try go get this funktion to start

i have try create somfing that hide and show funktion on page with MM_UserAuthorization.

to make it i use EQ
Code:
  <cfif Session.MM_UserAuthorization EQ 1>
    show funktion only fore user with level 1
  </cfif>

  <cfif not Session.MM_UserAuthorization EQ 1>
    hide funktion
  </cfif>
then a login and logout..
i add structKeyExists to logout funktion to make session work (allmost)

Code:
<cfif IsDefined("URL.MM_logout") AND URL.MM_logout EQ "1" or (NOT structKeyExists(SESSION,'MM_USERAUTHORIZATION'))>
but when i close browser i get follow error

Invalid list index 0.
In function ListDeleteAt(list, index [, delimiters]), the value of index, 0, is not a valid as the first argument (this list has 0 elements). Valid indexes are in the range 1 through the number of elements in the list.


iff i reload page it working.

so i get negative valute in ListDeleteAt with is from the Structkeyexists..

am stuck to find out how to make this work
theborg72 is offline   Reply With Quote