Login obligatory

Hello,

I'm looking for an add-on : I want to forbid access to any content of Dolphin to users if they aren't registered... Does anyone know if it exists ?

I simply want to create a "private community", acces only for members...
Expertzz is not very simple when you are looking for something very definite.

Thx,

Phil.

Quote · 8 Dec 2008

Not sure if this is what you're looking for- but edit the php as follows to require a user to login to view the page:

Find-

if ( !( $logged['admin'] = member_auth( 1, false ) ) )
{
if ( !( $logged['member'] = member_auth( 0, false ) ) )
{
if ( !( $logged['aff'] = member_auth( 2, false )) )
{
$logged['moderator'] = member_auth( 3, false );
}
}
}

To read instead-

if ( !( $logged['admin'] = member_auth( 1, false ) ) )
{
if ( !( $logged['member'] = member_auth( 0 ) ) )
{
if ( !( $logged['aff'] = member_auth( 2, false )) )
{
$logged['moderator'] = member_auth( 3, false );
}
}
}

Quote · 8 Dec 2008

Lmb - I'm thinking maybe cerialkiller is new, and his question might be more basic than needing a sophisticated mod.  Phil- have you familiarized  yourself with the membership-levels settings yet?

-

Rob

Quote · 8 Dec 2008
 
 
Below is the legacy version of the Boonex site, maintained for Dolphin.Pro 7.x support.
The new Dolphin solution is powered by UNA Community Management System.