i wanted view guest forum in lavalair script
there's a topic on this
but no solution to lavalair script
anyways i am just learning php
i added this coz , i was getting session expired error
and added guest forum as with g prefix
and added to all guest action
$uid =getuid_sid($sid);
if($uid>0)
and removed canaccess if statement
i can view cat or forums on my my pc (localhost) using this mtehod
but it doesn't work on website
<div class='codetop'>CODE</div><div class='codemain' style='height:200px;white-space:pre;overflow:auto'>
if(($action != "") && ($action!="terms") && ($action!="gviewfrm") && ($action!="gviewcat") && ($action!="gviewtpc") && ($action!="gmain") && ($action!="gforumindx"))
</div>
and this
<div class='codetop'>CODE</div><div class='codemain' style='height:200px;white-space:pre;overflow:auto'>
else if($action=="gviewcat")
{
$uid =getuid_sid($sid);
if($uid>0)
</div>
there's a topic on this
but no solution to lavalair script
anyways i am just learning php
i added this coz , i was getting session expired error
and added guest forum as with g prefix
and added to all guest action
$uid =getuid_sid($sid);
if($uid>0)
and removed canaccess if statement
i can view cat or forums on my my pc (localhost) using this mtehod
but it doesn't work on website
<div class='codetop'>CODE</div><div class='codemain' style='height:200px;white-space:pre;overflow:auto'>
if(($action != "") && ($action!="terms") && ($action!="gviewfrm") && ($action!="gviewcat") && ($action!="gviewtpc") && ($action!="gmain") && ($action!="gforumindx"))
</div>
and this
<div class='codetop'>CODE</div><div class='codemain' style='height:200px;white-space:pre;overflow:auto'>
else if($action=="gviewcat")
{
$uid =getuid_sid($sid);
if($uid>0)
</div>
Comment