Activity Stream
48,167 MEMBERS
6788 ONLINE
besthostingforums On YouTube Subscribe to our Newsletter besthostingforums On Twitter besthostingforums On Facebook besthostingforums On facebook groups

Page 1 of 2 12 LastLast
Results 1 to 10 of 11
  1.     
    #1
    Member
    Website's:
    wuploadlinks.net fileserve-movies.net fsdown.org

    Default phpBB3 Integrated Submitter - Works for any DDL

    So, I decided to modify Erratic's Submitter in order for it to work in any DDL...

    I hope you guys like it...

    There are several things you need to change :

    1st Step : Replace -DDLNAME- with the DDL you want to submit name. REMEMBER THIS VALUE! ** NO CAPITAL LETTERS

    2nd Step : Use the value you used in step 1 and replace it again. IT MUST BE EXACTLY THE SAME!!

    3rd Step : Replace -DDLNAME- (1st line) with the same value you used in 1st and 2nd steps.

    4th Step : Find "//Here's some basic settings." and replace with your details.

    5th Step : Find "action=\"http://-DDLDOMAIN-/submit.php\" " and replace with your DDL's submission page.

    Here is what you have to do :

    Open : /styles/**/template/mcp_forum.html

    Find :
    Code: 
                <!-- IF S_CAN_MAKE_ANNOUNCE -->
                    <option value="make_announce">{L_MAKE_ANNOUNCE}</option>
                    <option value="make_global">{L_MAKE_GLOBAL}</option>
                <!-- ENDIF -->
    After Add :
    Code: 
    <option value="submit-DDLNAME-">Submit to -DDLNAME-</option>
    Open : /includes/mcp/mcp_main.php

    Find :
    Code: 
            $quickmod = ($mode == 'quickmod') ? true : false;
    
            switch ($action)
            {
    After Add :
    Code: 
                //Gempis/Erratic DDL Submitter
                case 'submit-DDLNAME-': //Must be the EXACT SAME as the one stated in 1st step.
                    $topic_ids = request_var('topic_id_list', array(0));
                    submit-DDLNAME-($topic_ids); //Remember what you write here!!
                break;
                //Gempis/Erratic DDL Submitter
    Find :
    Code: 
    /**
    * Lock/Unlock Topic/Post
    */
    function lock_unlock($action, $ids)
    Before Add :
    Code: 
    //
    //Gempis/Erratic DDL Submitter
    //
    function submit-DDLNAME-($topic_ids) // It must be the EXACT value I said you must remember!
    {
    global $db;
    $sql = 'SELECT topic_id, topic_title
        FROM ' . TOPICS_TABLE . '
        WHERE ' . $db->sql_in_set('topic_id', $topic_ids);
        $result = $db->sql_query($sql);
        $topic_info = $db->sql_fetchrowset($result);
        $db->sql_freeresult($result);
    
    //Here's some basic settings.
     $yoursite = "http://-YOURDOMAIN-/viewtopic.php?t="; //include link to the viewtopic, so everything is there except for the unique ID.
     $yoursiteurl = "http://-YOURDOMAIN-/";
    $youremail = "-YOURMAIL-";
    $yoursitename = "-YOURFORUMNAME-";
    
    //Spit out the page.
    print "<div align=\"center\"><table style=\"width: 900px; border-style:dashed; font-family:tahoma; font-size:11px; padding:5px;\"><tr><td>You are using: <b>Erratic's phpBB3 Auto Sumitter - Moded by Gempis</b>. <br /><br />";
     print "<br /><form name=\"add\" action=\"http://-DDLDOMAIN-/submit.php\" method=\"POST\">";
    print "<span style=\"font-size:18px;\">Downloads to Submit:</span><br /><br />";
    foreach($topic_info as $topic_info)
    {
    $topic_title = $topic_info['topic_title'];
    $topic_url = $topic_info['topic_id'];
    print "Download Title: <input type=\"text\" name=\"title[]\" class=\"form\" maxlength=\"70\" size=\"40\" value=\"$topic_title\"> ";
    print "Download Url: <input type=\"text\" name=\"url[]\" class=\"form\" maxlength=\"70\" size=\"40\" value=\"$yoursite$topic_url\"> <select name=\"type[]\" class=form><option value=\"App\">App</option><option value=\"Game\">Game</option><option value=\"Movie\">Movie</option><option value=\"TV\">TV</option><option value=\"Music\">Music</option><option value=\"XXX\">XXX</option><option value=\"eBook\">eBook</option><option value=\"Template\">Template</option><option value=\"Other\">Other</option></select> <a href=\"$yoursite$topic_url\" target=\"_blank\" class=\"mainmenu\">Check Download</a><br />";
    }
    print "<br /><span style=\"font-size:18px;\">Settings:</span><br /><br />Site Name: <input type=\"text\" name=\"sname\" class=\"form\" size=\"30\" value=\"$yoursitename\"> Site URL: <input type=\"text\" name=\"surl\" class=\"form\" size=\"30\" value=\"$yoursiteurl\"> Email: <input type=\"text\" name=\"email\" class=\"form\" size=\"30\" value=\"$youremail\"><br />";
    print "<br /><input type=\"Submit\" value=\"Submit Download(s)\"></form>";
    print "</tr></td></table>";
    
    //That's all folks.
    exit;
    }
    //Gempis/Erratic DDL Submmitter
    Gempis Reviewed by Gempis on . phpBB3 Integrated Submitter - Works for any DDL So, I decided to modify Erratic's Submitter in order for it to work in any DDL... I hope you guys like it... There are several things you need to change : 1st Step : Replace -DDLNAME- with the DDL you want to submit name. REMEMBER THIS VALUE! ** NO CAPITAL LETTERS 2nd Step : Use the value you used in step 1 and replace it again. IT MUST BE EXACTLY THE SAME!! Rating: 5

    Please click the image above!

  2.   Sponsored Links

  3.     
    #2
    Member
    Website's:
    themastibay.com rlsvault.com geekscentre.com
    any reviews is this working properly


  4.     
    #3
    Member
    Website's:
    McGrhill-Warez.com RapidMovie.org
    I'll try and see how it works.
    "Life is hard; it's harder if you're stupid."

  5.     
    #4
    Member
    Website's:
    themastibay.com rlsvault.com geekscentre.com
    thanks mc


  6.     
    #5
    Member
    Website's:
    themastibay.com rlsvault.com geekscentre.com
    Code: 
     Parse error:  syntax error, unexpected '-', expecting '(' in/includes/mcp/mcp_main.php  on line 205
    me getting this error.....


  7.     
    #6
    mmm mmm!
    thanks
    HATERS GONNA probably bring up some valid points considering I am an ignorant little twat so far up my own ass that i blame my problems on everyone and if you criticize me you're automatically wrong.

  8.     
    #7
    Member
    Website's:
    videobbmovie.blogspot.com clickmegavideo.blogspot.com
    thanks a lot

  9.     
    #8
    Banned
    can anyone make this submitter work for datalife engine?i can pay with paypal, om me

  10.     
    #9
    Member
    Website's:
    hq-porn.xxx
    thx for share


  11.     
    #10
    Banned
    would also love one for IPB 3

Page 1 of 2 12 LastLast

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. [Hiring] VB 4 expert to fix integrated VB function
    By TheTorrentSeller in forum Completed Transactions
    Replies: 2
    Last Post: 12th Feb 2011, 03:51 PM
  2. PHPBB3 multi submitter
    By Hack_0693 in forum phpBB
    Replies: 4
    Last Post: 23rd Jan 2011, 01:06 AM
  3. [Buying] An adsense integrated site
    By xfiletomy in forum Completed Transactions
    Replies: 9
    Last Post: 13th May 2010, 01:21 AM
  4. Replies: 4
    Last Post: 17th Feb 2010, 11:34 AM
  5. bulletin board integrated ddl's
    By frontlinegamerz in forum Polling Plaza
    Replies: 18
    Last Post: 2nd Oct 2009, 07:11 AM

Tags for this Thread

BE SOCIAL