good to hear ...
you mentioned a change to the config-inc.php? What did you add? something about a pp-embedded var ... i don't think i understand what you were aiming at with that?
Quote:
|
I still need to figure out a quirk with the PN user NOT being logged in, i.e. guest/anonymous user. The default PN user groups are Users and Admins which are imported by PP when you install it with the postnuke integration option. A guest/anonymous user is also a member of the Users group even if they are NOT logged in. Problem is then that the guest/anon user has all the permissions of a user who is logged in. So I need to figure out a scheme to get around that .... maybe force the guest/anon user into a PP specific group for non-registered folks. So would have to create an additional PP user group when installing and then check if guest user - which I have to do anyway to see if user logged in ...
|
could be related to this slice of code:
Quote:
// login for guests
$ubbgroups[0] = -1;
|
found in forums/nuke.php for me, but probably forums/postnuke.php for you. With an anon group id of -1 i was always having problems with anon users having same status as other regular users. To fix this i had to determine the anon user id and then modify that code to reflect appropriate IDnum. That help?