Edit Profile Error
Wafflechunk 5
From: -
From: -
Notice
This topic is archived. New comments cannot be posted and votes cannot be cast.Responses to this topic
1 Re: Edit Profile Error
Wafflechunk
OP
5
From: -
From: -
I see. Open /modules/users/usereditprofile.php in an editor and replace:
if( $_SESSION[ 'user_security_hash' ] != $input_security_hash )
with:
if( ( $_SESSION[ 'user_security_hash' ] != $input_security_hash ) and( $preferences[ 'website_subsessions_user' ] ) )
You need to disable users subsession protection after that change.
This worked. Thanks a bunch.
1 Re: Edit Profile Error
Philipp Esselbach
From: -
Editor
0From: -
I see. Open /modules/users/usereditprofile.php in an editor and replace:
with:
You need to disable users subsession protection after that change.
if( $_SESSION[ 'user_security_hash' ] != $input_security_hash )
with:
if( ( $_SESSION[ 'user_security_hash' ] != $input_security_hash ) and( $preferences[ 'website_subsessions_user' ] ) )
You need to disable users subsession protection after that change.
1 Re: Edit Profile Error
Wafflechunk
OP
5
From: -
From: -
Did you enable users subsession protection under Manage Websites?
Nope, that is off. For testing I tried turning it on, but it generated the same error.
1 Re: Edit Profile Error
Philipp Esselbach
From: -
Editor
0From: -
Did you enable users subsession protection under Manage Websites?
I just installed Contentteller for the first time last night and like all the features so far. So far I've come across 1 issue that I'm not sure how to handle.
When I try and edit my profile through the user control panel I get the following error:
I can edit my profile if I use the Admin way.