Methos Script

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

    #31
    Nah sorry then was not actually boasting but i just no in the sql it is ibwf_users etc not methos must just add few more tables like mainthemes wil check my sql place n post parts here

    Comment


      #32
      what options,to change ibwf_tables with mesthos_tables no,this is not work.
      When i try this script with other lava tables i have,nothing work,becouse this script is different.
      look haoswap.net/forum/methos[/b]

      from the error i saw posted before it was done like ibwf_methostables .........

      Comment


        #33
        i cant be assed doing it anyway heres the table for ibwf_metpenaltiespl

        Code:
        DROP TABLE IF EXISTS ibwf_metpenaltiespl;
        CREATE TABLE IF NOT EXISTS ibwf_metpenaltiespl (
          timeto int(100) NOT NULL,
          uid tinyint(100) NOT NULL,
          penalty char(1) NOT NULL,
          ipadd varchar(30) NOT NULL,
          browserm varchar(50) NOT NULL
        ) ENGINE=MyISAM DEFAULT CHARSET=latin1;

        Comment


          #34
          i cant be assed doing it anyway heres the table for ibwf_metpenaltiespl

          Code:
          DROP TABLE IF EXISTS ibwf_metpenaltiespl;
          CREATE TABLE IF NOT EXISTS ibwf_metpenaltiespl (
            timeto int(100) NOT NULL,
            uid tinyint(100) NOT NULL,
            penalty char(1) NOT NULL,
            ipadd varchar(30) NOT NULL,
            browserm varchar(50) NOT NULL
          ) ENGINE=MyISAM DEFAULT CHARSET=latin1;
          [/b]
          fair play amy it simple i dont nw why they geting there knickers in a twist for
          Want something coded email me at sales@webnwaphost.com for a prices.




          Comment


            #35
            just need to look at the script search for ibwf_ and fill in the missing tables basically what i did

            Comment


              #36
              I'll have a look on my laptop to find the full sql.... can't promise anything but I'll have a look when i have time

              Comment


                #37
                great,thank you WhiteWarrior /well,i this one table will not help that script work,but thank you amy

                Comment


                  #38
                  any got the sql yet?

                  Comment


                    #39
                    tnks white
                    if like my post click:

                    http://coding-talk.com/images/totall...ost_thanks.gif

                    Comment


                      #40
                      i have problem with deleteing folders in inbox,can someone see where is mistake?I can edit folder,but can't delete




                      Code:
                      else if($action=="delfolder")
                      {
                        addonline(getuid_sid($sid),"Deleting PM Folder","");
                          $pstyle = gettheme($sid);
                        echo xhtmlhead("Deleting PM Folder",$pstyle);
                        
                        echo "<p align=\"center\">";
                        
                       $folderid = $_POST["fid"]; 
                       $res = mysql_query("DELETE FROM ibwf_private_folders WHERE folderid=&#39;".$folderid."&#39;");
                       
                      
                          $sql = "SELECT folderid FROM ibwf_private WHERE folderid=&#39;".$folderid."&#39;";
                          $items = mysql_query($sql);
                          echo mysql_error();
                          if(mysql_num_rows($items)>0)
                          {
                           while ($item = mysql_fetch_array($items))
                             {
                                   $sql = mysql_query("UPDATE ibwf_private SET folderid=&#39;0&#39; WHERE folderid=&#39;".$folderid."&#39;");
                             }
                          }
                       
                               if($res)
                              {
                                echo "<img src=\"images/ok.gif\" alt=\"O\"/>Folder Deleted Successfully
                      
                      ";
                              }else{
                                  echo "<img src=\"images/notok.gif\" alt=\"O\"/>Delete Error!
                      
                      ";
                              }
                        
                        echo "
                      
                      ";
                          $thid = mysql_fetch_array(mysql_query("SELECT themeid FROM ibwf_users WHERE id=&#39;".$uid."&#39;"));
                          $themeimageset = mysql_fetch_array(mysql_query("SELECT themedir FROM ibwf_iconset WHERE id=&#39;".$thid[0]."&#39;"));  
                          echo "<a href=\"inbox.php?action=main&amp;sid=$sid\">«Back to Inbox</a>
                      ";
                          echo "<a href=\"index.php?action=main&amp;sid=$sid\"><img src=\"images/themes/$themeimageset[0]/home.gif\" alt=\"*\"/>";
                      echo "Home</a>";
                        echo "</p>";
                        
                        echo xhtmlfoot();
                      
                      }

                      Comment


                        #41
                        where is the sql db?

                        Comment

                        Working...
                        X