View Single Post
  #29  
Old 21st January 2012, 20:06
romano1's Avatar
romano1 romano1 is offline
Senior Member
 
Join Date: Jan 2012
Portugal
Posts: 107
Default
Joe a problem with register in this theme(and i thing in all themes except original):

Click the image to open in full size.

Bump: I have test it and no theme except the basic one the invites work.
Can you please help joe?

Bump: easy fix find
if($pivate_mode AND !$user->user AND !eregi("user.php",$_SERVER["PHP_SELF"])) loginrequired("user", true);

in themes/acidtech/main.php and replace it with
function newuserpage($page) { if(eregi("faq.php",$page))return true; if(eregi("rules.php",$page))return true; if(eregi("user.php",$page))return true; if(eregi("takeconfirminvite.php",$page))return true; if(eregi("confirminvite.php",$page))return true; return false; } if($pivate_mode AND !$user->user AND !newuserpage($_SERVER["PHP_SELF"])){ loginrequired("user", false); include'footer.php'; }



Fix it, thank you.
Reply With Quote