Hello,
How I can link a user if is not a member to join.php
if a member is connect to the community i change that the main page is member.php
you have to edit the file index.php: after the line
Finde
check_logged();
add the line
if (isLogged()) { header('Location: member.php'); exit; }

