View Single Post
  #4  
Old 12-08-2012, 07:16 PM
Hall of Famer's Avatar
Hall of Famer Hall of Famer is offline
Administrator, Lead Coder
 
Join Date: Dec 2008
Location: South Brunswick
Posts: 4,448
Gender: Male
Credits: 327,451
Hall of Famer is on a distinguished road
Default

Well for whatever pages you wish to be members only, enclose the code in this format:

PHP Code:
if($isloggedin == "yes"){
    
// Code for members
}
else{
    
$article_title $accden;
    
$article_content $reqlogin;

Otherwise, you will have to remove the if-condition ($isloggedin = "yes") so that guests can view the page. One good example is levelup.php, which does not have restriction for members. Just go to whatever php files/pages you want your guests to view, remove the if/else statement to check user login. This may take a while though, considering the script disallows guests to view most content.
__________________


Mysidia Adoptables, a free and ever-improving script for aspiring adoptables/pets site.
Reply With Quote