NukeSentinel™ User Guide - Version 2.2.2
About NukeSentinel™ ::
Installation ::
IP 2 Country Installation ::
File Edits ::
Main Menu ::
FAQ's
Fixing the "Your_Account" module bug
In PHP-Nuke 6.5 to 7.4, make the following changes in the modules/Your_Account/index.php file. Find all 4 individual placements of:
getusrinfo($user);
if (($userinfo[username] != $cookie[1]) AND ($userinfo[user_password] != $cookie[2])) { |
Replace each occurence with:
cookiedecode($user);
getusrinfo($user); if ((is_user($user)) AND ($userinfo[username] == $cookie[1]) AND ($userinfo[user_password] == $cookie[2])) { |
On certain pages you will see this image:
![]() Click on it, and it will copy the text in the box above it into your clipboard. Then you can PASTE it in to your editor. NOTE: The copy to clipboard feature only works for Internet Explorer based browsers. Mozilla browser types must copy & paste manually. Last Updated: June 19, 2005 by: Steph Benoit (64bitguy) |