Posted on: 03/07/05 01:28am
By: Anonymous (mdubious)
Hi there,
I have an uploads page that I'd like to restrict access to only logged-in users. Can anyone tell me how?
I'm pretty sure it will be in the line of code containing:
if (!SEC_inGroup(' ??? '))
Thanks,
-michael
setting page access for restered users only
Posted on: 03/07/05 01:59am
By: Dirk
if (SEC_inGroup ('Logged-in Users'))
or
if (isset ($_USER['uid']) && ($_USER['uid') > 1))
bye, Dirk
setting page access for restered users only
Posted on: 03/07/05 02:11am
By: Anonymous (mdubious)
Thanks Dirk!!