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

Results 1 to 8 of 8
  1.     
    #1
    Member

    Default auto ddl submitter

    i have phpbb3 board, what can i use for auto submiting my post?
    pls write little how to.
    Anthonis Reviewed by Anthonis on . auto ddl submitter i have phpbb3 board, what can i use for auto submiting my post? pls write little how to. Rating: 5

  2.   Sponsored Links

  3.     
    #2
    Member
    Do you want to submit directly from your PHPBB?

    I think you can check this: http://www.undergrounddl.com/webmasters/phpbb3auto

    I think that is what u would want.


  4.     
    #3
    Member
    well yes i think its easier or i am wrong ?
    well ill give a try with this one
    maybe others know or use other submitters?

  5.     
    #4
    Member
    wat are your site, i have an autosubmitter to include in phpbb3


  6.     
    #5
    Member
    so maybe you could write the code of submiter ?
    or link to it?

  7.     
    #6
    Member
    Website's:
    crackerrevolution.com
    its not good use rardownload

  8.     
    #7
    Member
    could you tell me how it works ?

  9.     
    #8
    Member
    you will need an autosubmitter script on your site, are some already posted on this forum.

    was this i have used in inc/mcp/main, are there some strange code, an row whit the submitted msg (SET submited = '<b>[Submited to DDL at ". $checked ."]</b>' ) in topic, and other who get the type and auto fill from an description row ($topic_type).

    isn't the full code, but to you get an idea is this, basicly.

    This was worked one year ago, in moderator select the topics to submit and chose submit, submit 40+ in one time.
    Code: 
    // START phpBB3 Share-Rapid AutoSubmitter
                case 'autosubmit':
                    $topic_ids = request_var('topic_id_list', array(0));
                    submit($topic_ids);
                break;
                
                // END phpBB3 Share-Rapid AutoSubmitter
    Code: 
    // Start phpBB3 Share-Rapid AutoSubmitter
    //
    function submit($topic_ids)
    {
    global $db;
    $sql = 'SELECT topic_id, topic_title, topic_description
        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);
    
                $checked=date('F jS, Y, g:i a', time());
                $sql = "UPDATE " . POSTS_TABLE . " 
                SET submited = '<b>[Submited to DDL at ". $checked ."]</b>' 
                WHERE " . $db->sql_in_set('topic_id', $topic_ids);
                $db->sql_query($sql);
                
    //Here's some basic settings.
    $yoursite = "http://share-rapid.org/forum/viewtopic.php?t="; //include link to the viewtopic, so everything is there except for the unique ID.
    $yoursiteurl = "http://share-rapid.org";
    $youremail = "admin@share-rapid.org";
    $yoursitename = "Share-Rapid";
    $urls = array_map('trim', file('urls.txt'));
    
    //Spit out the page.
    print "<div align=\"center\"><table style=\"width: 900px; border-style:solid; font-family:tahoma; font-size:11px; padding:5px;\"><tr><td>";
    print "<br /><form name=\"add\" action=\"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'];
    $topic_type = $topic_info['topic_description'];
    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=\"$topic_type\">$topic_type</option><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=\"Script\">Script</option><option value=\"Other\">Other</option></select> <a href=\"$yoursite$topic_url\" target=\"_blank\" class=\"mainmenu\">Check Download</a><br />";
    }
    echo'<table><tr>';
        $x=0;
        foreach ($urls as $id => $url) {
            if(!$url)
                continue;
            echo "<td><input type=\"checkbox\" name=\"submit_to[". ($id++) ."]\" value=\"$id\" checked=\"yes\" />$url</td>";
            $x++;
            if($x &#37; 3 == 0) echo '</tr><tr>';
        }
        unset($x);
    echo'    </tr></table>';
    
       echo '<br /><table border="0" cellspacing="2" cellpadding="2" border="0">';
       print "<tr><td class=\"form2\"><br>Site Name*: </td><td><br><input type=\"text\" name=\"sname\" value=\"$yoursitename\" style=\"border:1px solid #4B4F62; background-color: #FFFFFF; color:#7088B3\" size=\"30\">
       </td><td class=\"form2\"><br>&nbsp;&nbsp;&nbsp;&nbsp; Site Url*: </td>
    
       <td><br><input type=\"text\" name=\"surl\" value=\"$yoursiteurl\" style=\"border:1px solid #4B4F62; background-color: #FFFFFF; color:#66CC66\" size=\"30\"></td></tr><tr><td class=\"form2\">E-mail: </td>
       <td colspan=\"4\"><input type=\"text\" name=\"email\" value=\"$youremail\" style=\"border:1px solid #4B4F62; background-color: #FFFFFF; color:#7088B3\" size=\"30\"></td></tr>
       <tr><td></td><td colspan=\"4\" class=\"form2\"><br><input type=\"Submit\" value=\"Submit Download\" style=\"border:1px solid #4B4F62; background-color: #FFFFFF; color:#7088B3\">
    
       &nbsp;&nbsp; - Press Only Once!! Submission May Take Up to 5 Min ! Please be patient.</td></tr></form></table>";       
    exit;
    }
    
    //
    // END phpBB3 Share-Rapid AutoSubmitter


Thread Information

Users Browsing this Thread

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

Similar Threads

  1. [Buying] auto DDL submitter
    By mp3show in forum Completed Transactions
    Replies: 1
    Last Post: 29th Oct 2011, 02:20 PM
  2. Auto submitter
    By wase99 in forum Forum and DDL Discussion
    Replies: 2
    Last Post: 30th Apr 2011, 10:39 PM
  3. Auto DDL Submitter
    By Chief-Editor in forum vBulletin
    Replies: 7
    Last Post: 10th Jul 2010, 05:56 PM
  4. Which auto submitter?
    By mujaheed in forum Technical Help Desk Support
    Replies: 8
    Last Post: 14th May 2010, 05:51 PM
  5. Best Auto Submitter?
    By tdsii in forum Forum and DDL Discussion
    Replies: 13
    Last Post: 15th Feb 2009, 03:08 PM

Tags for this Thread

BE SOCIAL