help imbxproc

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    help imbxproc

    Hello everyone, I have a problem in my lavalair: after sending an inbox or a pop-up by clicking on OK tells me page not found/missing link I think is missing a piece of code but I don't understand what and where ... someone can help me? This is my code
    PHP Code:
    <?php
    header
    ("Cache-Control: no-cache, must-revalidate");
    header("Pragma: no-cache");
    //header('Content-type: application/vnd.wap.xhtml+xml'); 
    echo "<?xml version=\"1.0\"?>";
    echo 
    "<!DOCTYPE html PUBLIC \"-//WAPFORUM//DTD XHTML Mobile 1.0//EN\" \"http://www.wapforum.org/DTD/xhtml-mobile10.dtd\">";
    ?>
    <html xmlns="http://www.w3.org/1999/xhtml">
    <?php
    include("config.php");
    include(
    "core.php");
    connectdb();
    $action $_GET["action"];
    $sid $_GET["sid"];
    $pmtext $_POST["pmtext"];
    $who $_GET["who"];
    $lastloc=$_GET["lstloc"];
    $sitename mysql_fetch_array(mysql_query("SELECT value FROM ibwf_settings WHERE name='sitename'"));
    $sitename $sitename[0];
    $uid getuid_sid($sid);
    $theme mysql_fetch_array(mysql_query("SELECT theme FROM ibwf_users WHERE id='".$uid."'"));

    if(
    $lastloc=="cht"){
        
    $rid$_GET["rid"];
        
    $rooms mysql_fetch_array(mysql_query("SELECT id, name FROM ibwf_rooms WHERE id='".$rid."'"));
        
    $rname $rooms[1];
    }
    if(
    islogged($sid)==false)
    {
          echo 
    "<head>";
          echo 
    "<title>Error!!!</title>";
          echo 
    "<link rel=\"stylesheet\" type=\"text/css\" href=\"../themes/white_medium.css\">";
          echo 
    "</head>";
          echo 
    "<body>";
          echo 
    "<p align=\"center\">";
          echo 
    "You are not logged in<br/>";
          echo 
    "Or Your session has been expired<br/><br/>";
          echo 
    "<a href=\"index.php\">Login</a>";
          echo 
    "</p>";
          echo 
    "</body>";
          echo 
    "</html>";
          exit();
    }

    if(
    $action=="sendpm")
    {
          echo 
    "<head>";
          echo 
    "<title>Posta</title>";
          echo 
    "<link rel=\"stylesheet\" type=\"text/css\" href=\"../themes/$theme[0]\">";
          echo 
    "</head>";
          echo 
    "<body>";
      echo 
    "<p align=\"center\">";
      
    $whonick getnick_uid($who);
      
    $byuid getuid_sid($sid);
      
    $tm time();
      
    $lastpm mysql_fetch_array(mysql_query("SELECT MAX(timesent) FROM ibwf_private WHERE byuid='".$byuid."'"));
      
    $pmfl $lastpm[0]+getpmaf();
      if(
    $byuid==1)$pmfl=0;
      if(
    $pmfl>$tm)
      {
      
    $rema $pmfl $tm;
      echo 
    "<img src=\"../images/notok.gif\" alt=\"X\"/>";
      echo 
    "Flood control: $rema Seconds<br/><br/>";
      echo 
    "<b>9 </b><a accesskey=\"9\" href=\"lists.php?action=buds&amp;sid=$sid\">Lista amici</a><br/>";
      echo 
    "<b>0 </b><a accesskey=\"0\" href=\"index.php?action=main&amp;sid=$sid\"><img src=\"../images/home.gif\" alt=\"\"/>Home</a>";
      echo 
    "</p></body></html>";
      exit();
      }
    if(
    isignored($uid$who))
        {
        echo 
    "<img src=\"../images/notok.gif\" alt=\"X\"/>";
        echo 
    "Invio fallito $whonick ti ha messo in lista ignora...<br/><br/>";
        echo 
    "<b>9 </b><a accesskey=\"9\" href=\"lists.php?action=buds&amp;sid=$sid\">Lista amici</a><br/>";
        echo 
    "<b>0 </b><a accesskey=\"0\" href=\"index.php?action=main&amp;sid=$sid\"><img src=\"../images/home.gif\" alt=\"\"/>Home</a>";
        echo 
    "</p></body></html>";
        exit();
        }
    else if(
    isblocked($pmtext,$byuid))
      {
        
    $bantime time() + (28*24*60*60);
        echo 
    "<img src=\"../images/notok.gif\" alt=\"X\"/>";
        echo 
    "Can't Send Inbox to $whonick<br/><br/>";
        echo 
    "You just sent a link to one of the crapiest sites on earth<br/> The members of these sites spam here a lot, so go to that site and stay there if you don't like it here<br/> as a result of your stupid action:<br/>1. you have lost your sheild<br/>2. you have lost all your plusses<br/>3. You are BANNED!";
            
    $user getnick_sid($sid);
        
    mysql_query("INSERT INTO ibwf_mlog SET action='autoban', details='<b>".getnick_uid(1)."</b> auto banned $user for spamming inbox', actdt='".time()."'"); 
       
    mysql_query("INSERT INTO ibwf_penalties SET uid='".$byuid."', penalty='1', exid='2', timeto='".$bantime."', pnreas='Banned: Automatic Ban for spamming for a crap site'");
        
    mysql_query("UPDATE ibwf_users SET plusses='0', shield='0' WHERE id='".$byuid."'");
        
    mysql_query("INSERT INTO ibwf_private SET text='[b](forwarded spam via inbox)[/b][br/]".$pmtext."', byuid='".$byuid."', touid='1', timesent='".$tm."'");
          echo 
    "</body>";
          echo 
    "</html>";
          exit();
      }
      
    $res mysql_query("INSERT INTO ibwf_private SET text='".$pmtext."', byuid='".$byuid."', touid='".$who."', timesent='".$tm."'");
      if(
    $res)
      {
        echo 
    "<img src=\"../images/ok.gif\" alt=\"O\"/>";
        echo 
    "Posta inviata con successo a $whonick<br/><br/>";
        echo 
    parsepm($pmtext$sid);
      }else{
        echo 
    "<img src=\"../images/notok.gif\" alt=\"X\"/>";
        echo 
    "Can't Send Inbox to $whonick<br/><br/>";
      }

      
    $uid getuid_sid($sid);
      
    $location mysql_fetch_array(mysql_query("SELECT placedet FROM ibwf_online WHERE userid='".$uid."'"));
                 
    $loca $location[0];
                 echo 
    "<br/><b>1 </b><a accesskey=\"1\" href=\"$loca&amp;sid=$sid\">Ok!</a>";
         if(
    $lastloc=="cht"){
         echo 
    "<br/><b>5 </b><a accesskey=\"5\" href=\"chat.php?sid=$sid&amp;rid=$rid\">Torna a $rname</a><br/>";
         }
      echo 
    "<br/><br/><b>6 </b><a accesskey=\"6\" href=\"inbox.php?action=main&amp;sid=$sid\">posta</a><br/>";
      echo 
    "<b>7 </b><a accesskey=\"7\" href=\"lists.php?action=buds&amp;sid=$sid\">Lista amici</a><br/>";
      echo 
    "<b>8 </b><a accesskey=\"8\" href=\"index.php?action=chat&amp;sid=$sid\">Chat</a><br/>";
      echo 
    forumlink($sid,9);
      echo 
    "<b>0 </b><a accesskey=\"0\" href=\"index.php?action=main&amp;sid=$sid\"><img src=\"../images/home.gif\" alt=\"\"/>Home</a>";
      echo 
    "</p>";
        echo 
    "</body>";
    }         
    else if(
    $action=="sendpopup")
    {
      echo 
    "<head>";
      echo 
    "<title>Send Popup</title>";
      echo 
    "<link rel=\"stylesheet\" type=\"text/css\" href=\"../themes/$theme[0]\">";
      echo 
    "</head>";
      echo 
    "<body>";
      echo 
    "<p align=\"center\">";
      
    $pmid $_GET["pmid"];
      
    $whonick getnick_uid($who);
      
    $byuid getuid_sid($sid);
      
    $tm time();
      
    $lastpm mysql_fetch_array(mysql_query("SELECT MAX(timesent) FROM ibwf_popups WHERE byuid='".$byuid."'"));
      
    $pmfl $lastpm[0]+getpmaf();
      
    $pmurd mysql_query("UPDATE ibwf_popups SET unread='0' WHERE id='".$pmid."'");

      if(
    $byuid==1)$pmfl=0;
      if(
    $pmfl>$tm)
      {
      
    $rema $pmfl $tm;
      echo 
    "<img src=\"../images/notok.gif\" alt=\"X\"/>";
      echo 
    "Flood control: $rema Seconds<br/><br/>";
      echo 
    "<b>9 </b><a accesskey=\"9\" href=\"lists.php?action=buds&amp;sid=$sid\">Lista amici</a><br/>";
      echo 
    "<b>0 </b><a accesskey=\"0\" href=\"index.php?action=main&amp;sid=$sid\"><img src=\"../images/home.gif\" alt=\"\"/>Home</a>";
      echo 
    "</p></body></html>";
      exit();
      }
      
    $uid getuid_sid($sid);
      if (!
    arebuds($uid$who))
      {
      echo 
    "$whonick is not in ur buddy list<br/><br/>";
      echo 
    "<b>9 </b><a accesskey=\"9\" href=\"lists.php?action=buds&amp;sid=$sid\">Lista amici</a><br/>";
      echo 
    "<b>0 </b><a accesskey=\"0\" href=\"index.php?action=main&amp;sid=$sid\"><img src=\"../images/home.gif\" alt=\"\"/>Home</a>";
      echo 
    "</p></body></html>";
      exit();
      }
      if(!
    popupson($who))
      {
      echo 
    "$whonick has there popups disabled<br/><br/>";
      echo 
    "<b>9 </b><a accesskey=\"9\" href=\"lists.php?action=buds&amp;sid=$sid\">Lista amici</a><br/>";
      echo 
    "<b>0 </b><a accesskey=\"0\" href=\"index.php?action=main&amp;sid=$sid\"><img src=\"../images/home.gif\" alt=\"\"/>Home</a>";
      echo 
    "</p></body></html>";
      exit();
      }
    if(
    isignored($uid$who))
        {
        echo 
    "<img src=\"../images/notok.gif\" alt=\"X\"/>";
        echo 
    "Failed Sending Pop-up To $whonick they hav u on ignore...<br/><br/>";
        echo 
    "<b>9 </b><a accesskey=\"9\" href=\"lists.php?action=buds&amp;sid=$sid\">Lista amici</a><br/>";
        echo 
    "<b>0 </b><a accesskey=\"0\" href=\"index.php?action=main&amp;sid=$sid\"><img src=\"../images/home.gif\" alt=\"\"/>Home</a>";
        echo 
    "</p></body></html>";
        exit();
        }
    else if(
    isblocked($pmtext,$byuid))
        {
        
    $bantime time() + (28*24*60*60);
        echo 
    "<img src=\"../images/notok.gif\" alt=\"X\"/>";
        echo 
    "Can't Send PM to $whonick<br/><br/>";
        echo 
    "You just sent a link to one of the crapiest sites on earth<br/> The members of these sites spam here a lot, so go to that site and stay there if you don't like it here<br/> as a result of your stupid action:<br/>1. you have lost your sheild<br/>2. you have lost all your plusses<br/>3. You are BANNED!";
            
    $user getnick_sid($sid);
        
    mysql_query("INSERT INTO ibwf_mlog SET action='autoban', details='<b>Wap Desire</b> auto banned $user for spamming thru popups', actdt='".time()."'"); 
        
    mysql_query("INSERT INTO ibwf_penalties SET uid='".$byuid."', penalty='1', exid='2', timeto='".$bantime."', pnreas='Banned: Automatic Ban for spamming for a crap site'");
        
    mysql_query("UPDATE ibwf_users SET plusses='0', shield='0' WHERE id='".$byuid."'");
        
    mysql_query("INSERT INTO ibwf_popups SET text='".$pmtext."', byuid='".$byuid."', touid='1', timesent='".$tm."'");
        
    mysql_query("INSERT INTO ibwf_private SET text='[b](forwarded spam via popups)[/b][br/]".$pmtext."', byuid='".$byuid."', touid='1', timesent='".$tm."'");
        echo 
    "</p></body></html>";
        exit();
        }
      
    $res mysql_query("INSERT INTO ibwf_popups SET text='".$pmtext."', byuid='".$byuid."', touid='".$who."', timesent='".$tm."'");
      if(
    $res)
      {

        echo 
    "<img src=\"../images/ok.gif\" alt=\"O\"/>";
        echo 
    "Pop-up inviato con successo $whonick<br/><br/>";
        echo 
    parsepm($pmtext$sid);
        }else{
        echo 
    "<img src=\"../images/notok.gif\" alt=\"X\"/>";
        echo 
    "Non e' stato possibile mandare il Pop-up a $whonick<br/><br/>";
      }
      
    $uid getuid_sid($sid);
      
    $location mysql_fetch_array(mysql_query("SELECT placedet FROM ibwf_online WHERE userid='".$uid."'"));
                 
    $loca $location[0];
                 echo 
    "<br/><b>1 </b><a accesskey=\"1\" href=\"$loca&amp;sid=$sid\">ok!</a><br/>";
          echo 
    "<br/><b>4 </b><a accesskey=\"4\" href=\"index.php?action=popdisable&amp;sid=$sid\">Disable Pop-Ups</a><br/>";
         if(
    $lastloc=="cht"){
                echo 
    "<b>5 </b><a accesskey=\"5\" href=\"chat.php?sid=$sid&amp;rid=$rid\">Torna a $rname</a><br/>";
    }
      echo 
    "<b>6 </b><a accesskey=\"6\" href=\"inbox.php?action=main&amp;sid=$sid\">Posta</a><br/>";
      echo 
    "<b>7 </b><a accesskey=\"7\" href=\"lists.php?action=buds&amp;sid=$sid\">Lista amici</a><br/>";
      echo 
    "<b>8 </b><a accesskey=\"8\" href=\"index.php?action=chat&amp;sid=$sid\">Chat</a><br/>";
      echo 
    forumlink($sid,9);
      echo 
    "<b>0 </b><a accesskey=\"0\" href=\"index.php?action=main&amp;sid=$sid\"><img src=\"../images/home.gif\" alt=\"\"/>Home</a>";
        echo 
    "</p></body>";
        }
    else if(
    $action=="sendfun")
    {
      echo 
    "<head>";
      echo 
    "<title>Posta</title>";
      echo 
    "<link rel=\"stylesheet\" type=\"text/css\" href=\"../themes/$theme[0]\">";
      echo 
    "</head>";
      echo 
    "<body>";
      echo 
    "<p align=\"center\">";
      
    $pmtou $_POST["who"];
      
    $who getuid_nick($pmtou);
        if(
    $who==0)
        {
          echo 
    "<img src=\"../images/notok.gif\" alt=\"x\"/>User non esiste<br/>";
        }else{
    $whonick getnick_uid($who);
      
    $byuid getuid_sid($sid);
      
    $tm time();
      
    $lastpm mysql_fetch_array(mysql_query("SELECT MAX(timesent) FROM ibwf_private WHERE byuid='".$byuid."'"));
      
    $pmfl $lastpm[0]+getpmaf();
      if(
    $pmfl<$tm)
      {
        if(!
    isblocked($pmtext,$byuid))
        {
        if((!
    isignored($byuid$who))&&(!istrashed($byuid)))
        {
      
    $res mysql_query("INSERT INTO ibwf_private SET text='".$pmtext."', byuid='".$byuid."', touid='".$who."', timesent='".$tm."'");
      }else{
        
    $res true;
      }
      if(
    $res)
      {
        echo 
    "<img src=\"../images/ok.gif\" alt=\"O\"/>";
        echo 
    "Una Dedica Ã¨ stata inviata con successo a $whonick<br/><br/>";
        echo 
    parsepm($pmtext$sid);

      }else{
        echo 
    "<img src=\"../images/notok.gif\" alt=\"X\"/>";
        echo 
    "Impossibile inviare Dediche a $whonick<br/><br/>";
      }
      }else{
       
    $bantime time() + (7*24*60*60);
        echo 
    "<img src=\"../images/notok.gif\" alt=\"X\"/>";
        echo 
    "Impossibile scrivere Inbox a $whonick<br/><br/>";
        echo 
    "You just sent a link to one of the crapiest sites on earth<br/> The members of these sites spam here a lot, so go to that site and stay there if you don't like it here<br/> as a result of your stupid action:<br/>1. you have lost your sheild<br/>2. you have lost all your plusses<br/>3. You are BANNED!";
      
    $user getnick_uid($sid);
        
    mysql_query("INSERT INTO ibwf_mlog SET action='autoban', details='<b>Wap Desire</b> auto banned $user for spamming inbox', actdt='".time()."'");
        
    mysql_query("INSERT INTO ibwf_penalties SET uid='".$byuid."', penalty='1', exid='2', timeto='".$bantime."', pnreas='Banned: Automatic Ban for spamming for a crap site'");
        
    mysql_query("UPDATE ibwf_users SET plusses='0', shield='0' WHERE id='".$byuid."'");
        
    mysql_query("INSERT INTO ibwf_private SET text='".$pmtext."', byuid='".$byuid."', touid='1', timesent='".$tm."', reported='1'");
        exit();
      }
      }else{
        
    $rema $pmfl $tm;
        echo 
    "<img src=\"../images/notok.gif\" alt=\"X\"/>";
        echo 
    "Flood control: $rema Seconds<br/><br/>";
      }

        }

      echo 
    "<br/><b>6 </b><a accesskey=\"6\" href=\"inbox.php?action=main&amp;sid=$sid\">Posta</a><br/>";
      echo 
    "<b>7 </b><a accesskey=\"7\" href=\"lists.php?action=buds&amp;sid=$sid\">Lista Amici</a><br/>";
      echo 
    "<b>8 </b><a accesskey=\"8\" href=\"index.php?action=chat&amp;sid=$sid\">Chat</a><br/>";
      echo 
    forumlink($sid,9);
      echo 
    "<b>0 </b><a accesskey=\"0\" href=\"index.php?action=main&amp;sid=$sid\"><img src=\"../images/home.gif\" alt=\"\"/>Home</a>";
      echo 
    "</p>";
        echo 
    "</body>";
    }
    else if(
    $action=="rptpop")
        {
      echo 
    "<head>";
      echo 
    "<title>Reporting Popup</title>";
      echo 
    "<link rel=\"stylesheet\" type=\"text/css\" href=\"../themes/$theme[0]\">";
      echo 
    "</head>";
      echo 
    "<body>";
      echo 
    "<p align=\"center\">";
            
    addonline(getuid_sid($sid),"Riporta un pop-up allo staff","");
        
    $pminfo mysql_fetch_array(mysql_query("SELECT text, byuid, touid, reported FROM ibwf_popups WHERE id='".$pmid."'"));

            if(
    getuid_sid($sid)==$pminfo[2])
            {
              if(
    $pminfo[3]=="0")
              {
              
    $str mysql_query("UPDATE ibwf_popups SET reported='1' WHERE id='".$pmid."' ");
              if(
    $str)
              {
                echo 
    "<img src=\"../images/ok.gif\" alt=\"O\"/>Popup reported to mods successfully<br/><br/>";
              }else{
                echo 
    "<img src=\"../images/notok.gif\" alt=\"X\"/>Can't report Popup at the moment<br/><br/>";
              }
              }else{
                echo 
    "<img src=\"../images/notok.gif\" alt=\"X\"/>This Popup is already reported<br/><br/>";
              }
            }else{
              echo 
    "<img src=\"../images/notok.gif\" alt=\"X\"/>This Popup ain't yours<br/><br/>";
            }
      echo 
    "<b>0 </b><a accesskey=\"0\" href=\"index.php?action=main&amp;sid=$sid\"><img src=\"../images/home.gif\" alt=\"\"/>Home</a>";
        echo 
    "</p></body>";
        }
    else if(
    $action=="sendto")
    {
      echo 
    "<head>";
      echo 
    "<title>Posta</title>";
      echo 
    "<link rel=\"stylesheet\" type=\"text/css\" href=\"../themes/$theme[0]\">";
      echo 
    "</head>";
      echo 
    "<body>";
      echo 
    "<p align=\"center\">";
      
    $pmtou $_POST["who"];
      
    $who getuid_nick($pmtou);
        if(
    $who==0)
        {
          echo 
    "<img src=\"../images/notok.gif\" alt=\"x\"/>User Does Not exist<br/>";
        }else{
    $whonick getnick_uid($who);
      
    $byuid getuid_sid($sid);
      
    $tm time();
      
    $lastpm mysql_fetch_array(mysql_query("SELECT MAX(timesent) FROM ibwf_private WHERE byuid='".$byuid."'"));
      
    $pmfl $lastpm[0]+getpmaf();
      if(
    $pmfl<$tm)
      {
        if(!
    isblocked($pmtext,$byuid))
        {
        if((!
    isignored($byuid$who))&&(!istrashed($byuid)))
        {
      
    $res mysql_query("INSERT INTO ibwf_private SET text='".$pmtext."', byuid='".$byuid."', touid='".$who."', timesent='".$tm."'");
      }else{
        
    $res true;
      }
      if(
    $res)
      {
        echo 
    "<img src=\"../images/ok.gif\" alt=\"O\"/>";
        echo 
    "Posta inviata con successo a $whonick<br/><br/>";
        echo 
    parsepm($pmtext$sid);

      }else{
        echo 
    "<img src=\"../images/notok.gif\" alt=\"X\"/>";
        echo 
    "Can't Send Inbox to $whonick<br/><br/>";
      }
      }else{
       
    $bantime time() + (7*24*60*60);
        echo 
    "<img src=\"../images/notok.gif\" alt=\"X\"/>";
        echo 
    "Can't Send Inbox to $whonick<br/><br/>";
        echo 
    "You just sent a link to one of the crapiest sites on earth<br/> The members of these sites spam here a lot, so go to that site and stay there if you don't like it here<br/> as a result of your stupid action:<br/>1. you have lost your sheild<br/>2. you have lost all your plusses<br/>3. You are BANNED!";
      
    $user getnick_uid($sid);
        
    mysql_query("INSERT INTO ibwf_mlog SET action='autoban', details='<b>Wap Desire</b> auto banned $user for spamming inbox', actdt='".time()."'");
        
    mysql_query("INSERT INTO ibwf_penalties SET uid='".$byuid."', penalty='1', exid='2', timeto='".$bantime."', pnreas='Banned: Automatic Ban for spamming for a crap site'");
        
    mysql_query("UPDATE ibwf_users SET plusses='0', shield='0' WHERE id='".$byuid."'");
        
    mysql_query("INSERT INTO ibwf_private SET text='".$pmtext."', byuid='".$byuid."', touid='1', timesent='".$tm."', reported='1'");
        exit();
      }
      }else{
        
    $rema $pmfl $tm;
        echo 
    "<img src=\"../images/notok.gif\" alt=\"X\"/>";
        echo 
    "Flood control: $rema Seconds<br/><br/>";
      }

        }
      
      echo 
    "<br/><b>6 </b><a accesskey=\"6\" href=\"inbox.php?action=main&amp;sid=$sid\">Posta</a><br/>";
      echo 
    "<b>7 </b><a accesskey=\"7\" href=\"lists.php?action=buds&amp;sid=$sid\">Lista amici</a><br/>";
      echo 
    "<b>8 </b><a accesskey=\"8\" href=\"index.php?action=chat&amp;sid=$sid\">Chat</a><br/>";
      echo 
    forumlink($sid,9);
      echo 
    "<b>0 </b><a accesskey=\"0\" href=\"index.php?action=main&amp;sid=$sid\"><img src=\"../images/home.gif\" alt=\"\"/>Home</a>";
      echo 
    "</p>";
        echo 
    "</body>";
    }
    else if(
    $action=="proc")
    {
        
    $pmact $_POST["pmact"];
        
    $pact explode("-",$pmact);
        
    $pmid $pact[1];
        
    $pact $pact[0];
        echo 
    "<head>";
        echo 
    "<title>Posta</title>";
        echo 
    "<link rel=\"stylesheet\" type=\"text/css\" href=\"../themes/$theme[0]\">";
        echo 
    "</head>";
        echo 
    "<body>";
        echo 
    "<p align=\"center\">";
        
    $pminfo mysql_fetch_array(mysql_query("SELECT text, byuid, touid, reported FROM ibwf_private WHERE id='".$pmid."'"));
        if(
    $pact=="rep")
        {
          
    addonline(getuid_sid($sid),"Invia posta","inbox.php?action=main");
           
          
    $whonick getnick_uid($pminfo[1]);
      echo 
    "Send Inbox to $whonick<br/><br/>";
         if(
    $lastloc=="cht"){
              echo 
    "<form action=\"inbxproc.php?action=sendpm&amp;who=$pminfo[1]&amp;sid=$sid&amp;lstloc=cht&amp;rid=$rid\" method=\"post\">";
     }else{
      echo 
    "<form action=\"inbxproc.php?action=sendpm&amp;who=$pminfo[1]&amp;sid=$sid\" method=\"post\">";
    }
      echo 
    "<input name=\"pmtext\" maxlength=\"500\"/><br/>";
      echo 
    "<input type=\"Submit\" name=\"send\" Value=\"Send\"></form>";

        }else if(
    $pact=="del")
        {
            
    addonline(getuid_sid($sid),"Cancella posta","");
            if(
    getuid_sid($sid)==$pminfo[2])
            {
              if(
    $pminfo[3]=="1")
              {
                
                echo 
    "<img src=\"../images/notok.gif\" alt=\"X\"/>This Inbox is reported, thus it can't be deleted";
              }else{
              
    $del mysql_query("DELETE FROM ibwf_private WHERE id='".$pmid."' ");
              if(
    $del)
              {
                echo 
    "<img src=\"../images/ok.gif\" alt=\"O\"/>Posta cancellata con successo";
              }else{
                echo 
    "<img src=\"../images/notok.gif\" alt=\"X\"/>Can't Delete Inbox at the moment";
              }
              }

            }else{
              echo 
    "<img src=\"../images/notok.gif\" alt=\"X\"/>This Inbox ain't yours";
            }
        }else if(
    $pact=="str")
        {
            
    addonline(getuid_sid($sid),"Salva posta","");
            if(
    getuid_sid($sid)==$pminfo[2])
            {
              
    $str mysql_query("UPDATE ibwf_private SET starred='1' WHERE id='".$pmid."' ");
              if(
    $str)
              {
                echo 
    "<img src=\"../images/ok.gif\" alt=\"O\"/>Posta salvata su star con successo";
              }else{
                echo 
    "<img src=\"../images/notok.gif\" alt=\"X\"/>Can't star Inbox at the moment";
              }
            }else{
              echo 
    "<img src=\"../images/notok.gif\" alt=\"X\"/>This Inbox ain't yours";
            }
        }else if(
    $pact=="ust")
        {
            
    addonline(getuid_sid($sid),"Salva posta","");
            if(
    getuid_sid($sid)==$pminfo[2])
            {
              
    $str mysql_query("UPDATE ibwf_private SET starred='0' WHERE id='".$pmid."' ");
              if(
    $str)
              {
                echo 
    "<img src=\"../images/ok.gif\" alt=\"O\"/>Inbox unstarred successfully";
              }else{
                echo 
    "<img src=\"../images/notok.gif\" alt=\"X\"/>Can't unstar Inbox at the moment";
              }
            }else{
              echo 
    "<img src=\"../images/notok.gif\" alt=\"X\"/>This Inbox ain't yours";
            }
        }else if(
    $pact=="rpt")
        {
            
    addonline(getuid_sid($sid),"Riporta posta allo staff","");
            if(
    getuid_sid($sid)==$pminfo[2])
            {
              if(
    $pminfo[3]=="0")
              {
              
    $str mysql_query("UPDATE ibwf_private SET reported='1' WHERE id='".$pmid."' ");
              if(
    $str)
              {
                echo 
    "<img src=\"../images/ok.gif\" alt=\"O\"/>Posta riportata allo staff con successo";
              }else{
                echo 
    "<img src=\"../images/notok.gif\" alt=\"X\"/>Can't report Inbox at the moment";
              }
              }else{
                echo 
    "<img src=\"../images/notok.gif\" alt=\"X\"/>This Inbox is already reported";
              }
            }else{
              echo 
    "<img src=\"../images/notok.gif\" alt=\"X\"/>This Inbox ain't yours";
            }
        }
        else if(
    $pact=="frd")
        {
            
    addonline(getuid_sid($sid),"Posta","");
            if(
    getuid_sid($sid)==$pminfo[2]||getuid_sid($sid)==$pminfo[1])
            {
      echo 
    "<form action=\"inbxproc.php?action=frdpm&amp;sid=$sid\" method=\"post\">";  
      echo 
    "Forward to e-mail:<br/><br/>";
      echo 
    "<input name=\"email\" maxlength=\"250\"/><br/><input type=\"hidden\" value=\"$pmid\" name=\"pmid\"><br/>";
      echo 
    "<input type=\"Submit\" name=\"forward\" Value=\"Forward\"></form>";
            }else{
              echo 
    "<img src=\"../images/notok.gif\" alt=\"X\"/>This Inbox ain't yours";
            }
        }
        else if(
    $pact=="dnl")
        {
            
    addonline(getuid_sid($sid),"Scarica posta","");
            if(
    getuid_sid($sid)==$pminfo[2]||getuid_sid($sid)==$pminfo[1])
            {
              echo 
    "<img src=\"../images/ok.gif\" alt=\"X\"/>request processed successfully<br/><br/>";
              echo 
    "<a href=\"rwdpm.php?action=dpm&amp;pmid=$pmid&amp;sid=$sid\">Download Inbox</a>";
            }else{
              echo 
    "<img src=\"../images/notok.gif\" alt=\"X\"/>This Inbox ain't yours";
            }
        }
        if(
    $lastloc=="cht"){
                echo 
    "<br/><b>5 </b><a accesskey=\"5\" href=\"chat.php?sid=$sid&amp;rid=$rid\">Torna a $rname</a><br/>";
        }
      echo 
    "<br/><b>6 </b><a accesskey=\"6\" href=\"inbox.php?action=main&amp;sid=$sid\">Posta</a><br/>";
      echo 
    "<b>7 </b><a accesskey=\"7\" href=\"lists.php?action=buds&amp;sid=$sid\">Lista amici</a><br/>";
      echo 
    "<b>8 </b><a accesskey=\"8\" href=\"index.php?action=chat&amp;sid=$sid\">Chat</a><br/>";
      echo 
    forumlink($sid,9);
      echo 
    "<b>0 </b><a accesskey=\"0\" href=\"index.php?action=main&amp;sid=$sid\"><img src=\"../images/home.gif\" alt=\"\"/>Home</a>";
      echo 
    "</p></body>";
    }
    else if(
    $action=="proall")
    {
      
    $pact $_POST["pmact"];
      echo 
    "<head>";
      echo 
    "<title>Posta</title>";
      echo 
    "<link rel=\"stylesheet\" type=\"text/css\" href=\"../themes/$theme[0]\">";
      echo 
    "</head>";
      echo 
    "<body>";
      echo 
    "<p align=\"center\">";
      
    addonline(getuid_sid($sid),"Cancella posta","");
      
    $uid getuid_sid($sid);
      
    $del mysql_query("DELETE FROM ibwf_private WHERE touid='".$uid."' AND reported !='1' AND unread='0' AND starred='0'");
      if(
    $del)
      {
      echo 
    "<img src=\"../images/ok.gif\" alt=\"O\"/>All Inboxes Deleted Successfully";
      }else{
      echo 
    "<img src=\"../images/notok.gif\" alt=\"X\"/>Can't Delete Inboxes At The Moment";
      }
      echo 
    "<br/><br/><b>6 </b><a accesskey=\"6\" href=\"inbox.php?action=main&amp;sid=$sid\">Posta</a><br/>";
      echo 
    "<b>7 </b><a accesskey=\"7\" href=\"lists.php?action=buds&amp;sid=$sid\">Lista amici</a><br/>";
      echo 
    "<b>8 </b><a accesskey=\"8\" href=\"index.php?action=chat&amp;sid=$sid\">Chat</a><br/>";
      echo 
    forumlink($sid,9);
      echo 
    "<b>0 </b><a accesskey=\"0\" href=\"index.php?action=main&amp;sid=$sid\"><img src=\"../images/home.gif\" alt=\"\"/>Home</a>";
      echo 
    "</p>";
      echo 
    "</body>";
        
      }
    else if(
    $action=="frdpm")
    {
        
    $email $_POST["email"];
        
    $pmid $_POST["pmid"];
      
    addonline(getuid_sid($sid),"Posta","");
      echo 
    "<head>";
      echo 
    "<title>Posta</title>";
      echo 
    "<link rel=\"stylesheet\" type=\"text/css\" href=\"../themes/$theme[0]\">";
      echo 
    "</head>";
      echo 
    "<body>";
      echo 
    "<p align=\"center\">";

      
    $pminfo mysql_fetch_array(mysql_query("SELECT text, byuid, timesent,touid, reported FROM ibwf_private WHERE id='".$pmid."'"));
      
      
      if((
    $pminfo[3]==getuid_sid($sid))||($pminfo[1]==getuid_sid($sid)))
      {
      
    $from_head "From: noreplay@$sitename";
      
    $subject "Inbox By ".getnick_uid($pminfo[1])." To ".getnick_uid($pminfo[3])." ($sitename)";
      
    $content "Date: ".date("l d/m/y H:i:s"$pminfo[2])."\n\n";
      
    $content .= $pminfo[0]."\n------------------------\n";
      
    $content .= "$sitename: The best wap community!";
      
    mail($email$subject$content$from_head);
     echo 
    "<img src=\"../images/ok.gif\" alt=\"X\"/>Inbox forwarded to $email";
      }else{
        echo 
    "<img src=\"../images/notok.gif\" alt=\"X\"/>This Inbox ain't yours";
      }
      echo 
    "<br/><br/><b>6 </b><a accesskey=\"6\" href=\"inbox.php?action=main&amp;sid=$sid\">Posta</a><br/>";
      echo 
    "<b>7 </b><a accesskey=\"7\" href=\"lists.php?action=buds&amp;sid=$sid\">Lista amici</a><br/>";
      echo 
    "<b>8 </b><a accesskey=\"8\" href=\"index.php?action=chat&amp;sid=$sid\">Chat</a><br/>";
      echo 
    forumlink($sid,9);
      echo 
    "<b>0 </b><a accesskey=\"0\" href=\"index.php?action=main&amp;sid=$sid\"><img src=\"../images/home.gif\" alt=\"\"/>Home</a>";
      echo 
    "</p>";
        echo 
    "</body>";

    }

      else{
        
    addonline(getuid_sid($sid),"Perso nella posta","");
      echo 
    "<head>";
      echo 
    "<title>Error!!!</title>";
      echo 
    "<link rel=\"stylesheet\" type=\"text/css\" href=\"../themes/$theme[0]\">";
      echo 
    "</head>";
      echo 
    "<body>";
      echo 
    "<p align=\"center\">";
      echo 
    "I don't know how did you get into here, but there's nothing to show<br/><br/>";
      echo 
    "<br/><b>6 </b><a accesskey=\"6\" href=\"inbox.php?action=main&amp;sid=$sid\">Posta</a><br/>";
      echo 
    "<b>7 </b><a accesskey=\"7\" href=\"lists.php?action=buds&amp;sid=$sid\">Lista amici</a><br/>";
      echo 
    "<b>8 </b><a accesskey=\"8\" href=\"index.php?action=chat&amp;sid=$sid\">Chat</a><br/>";
      echo 
    forumlink($sid,9);
      echo 
    "<b>0 </b><a accesskey=\"0\" href=\"index.php?action=main&amp;sid=$sid\"><img src=\"../images/home.gif\" alt=\"\"/>Home</a>";
      echo 
    "</p></body>";
    }
    ?>
    </html>

    #2
    need to see the code of the (ok) that you are pressing .to see wot the path of the link is.
    Wapchat4u


    Topsites4u

    Comment


      #3
      inbxproc.php

      Comment


        #4
        Originally posted by something else View Post
        inbxproc.php

        Can't seem to find that do you have it ?? where the error ?? please help ....... PMPL joking lol
        Visit: Chat4u.mobi - The New Lay Of being a site of your dreams!
        Visit: WapMasterz Coming Back Soon!
        _______
        SCRIPTS FOR SALE BY SUBZERO
        Chat4u Script : coding-talk.com/f28/chat4u-mobi-script-only-150-a-17677/ - > Best Script for your site no other can be hacked by sql or uploaders.
        FileShare Script : coding-talk.com/f28/file-wap-share-6596/ -> Uploader you will never regret buying yeah it mite be old now but it still seems to own others...
        _______
        Info & Tips
        php.net
        w3schools.com

        Comment


          #5
          its easy to fix ill tell you how

          first check you have this sql in ibwf_online

          `placedet` varchar(255) NOT NULL default '',

          then check u have this line correctly in core.php function addonline($uid,$place,$plclink)

          //////////////////////////////////////////////////////

          $res = mysql_query("UPDATE ibwf_online SET actvtime='".$tm."', place='".$place."', placedet='".$plclink."' WHERE userid='".$uid."'");

          exactly this = place='".$place."', placedet='".$plclink."'

          ///////////////////////////////////////////////////////

          then in inbox.php under... else if($action=="readpm")

          replace this with your code

          addonline(getuid_sid($sid),"Reading Inbox","inbox.php?action=$action");

          or

          addonline(getuid_sid($sid),"Reading Inbox","inbox.php?action=main");

          /////////////////////////////////////

          100% working


          ....................................
          http://photomag.lk/
          ....................................

          Comment

          Working...
          X