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

Page 1 of 3 123 LastLast
Results 1 to 10 of 23

Hybrid View

Previous Post Previous Post   Next Post Next Post
  1.     
    #1
    Banned
    Website's:
    FusionWarez.info SmokeHost.net Leechers.co

    Default WCDDL Site Rating

    I own ExplosiveWarez and I'm looking for a WCDDL Site rating Mod for WCDDL v2.

    Thanks,
    -CyberHacK
    CyberHacK Reviewed by CyberHacK on . WCDDL Site Rating I own ExplosiveWarez and I'm looking for a WCDDL Site rating Mod for WCDDL v2. Thanks, -CyberHacK Rating: 5

  2.   Sponsored Links

  3.     
    #2
    Member
    there isn't one made yet, besides a few private ones I know someone made

  4.     
    #3
    Member
    Website's:
    WarezWitch.com
    I have one rock, if i can find the old one i will release it but the new one will not be released.
    Respected
    Th3_Narcissist - Hawk - DeathKnell - Flash - JmZ - Exel - Elio - Want to be next?
    Disrespected
    Smartzkool - Gat Dat - Gill - AK47 - Want to be next?



  5.     
    #4
    Member
    Quote Originally Posted by frontlinegamerz View Post
    I have one rock, if i can find the old one i will release it but the new one will not be released.
    changed my post as I knew you had them, but none were released

  6.     
    #5
    Banned
    Website's:
    FusionWarez.info SmokeHost.net Leechers.co
    there is. Some people have it but havent shared the code.

  7.     
    #6
    Member
    Website's:
    ZVER.TV Studio9Resources.com
    Here it is, thanks for frontlinegamerz

    Code: 
    
    SQL STATEMENTS
    
    $sql = "ALTER TABLE `wcddl_sites` ADD `emailsubmit` TEXT NOT NULL";
    $sql = "ALTER TABLE `wcddl_sites` ADD `rate` TEXT NOT NULL";
    
    
    
    Line 152
    Find:
    $downloadSite = mysql_query("SELECT name as sname, url as surl, FROM wcddl_sites WHERE id = '".$row['sid']."'");
    
    
    Replace with:
    $downloadSite = mysql_query("SELECT name as sname, url as surl, rate as srate FROM wcddl_sites WHERE id = '".$row['sid']."'");
    
    Find the func admin queue():
    
    Delete all and replace with the following
    
    protected function admin_queue() {
            if(isset($_POST['url']))
                $url = $_POST['url'];
                if(isset($_POST['emailsubmit']))
                $emailsubmit = $_POST['emailsubmit'];
                if(isset($_POST['rate']))
                $rate = $_POST['rate'];
            if(isset($_POST['sitesub']))
                $sitesub = $_POST['sitesub'];
            if(isset($sitesub)) {
                @mysql_query("UPDATE wcddl_sites SET emailsubmit='$emailsubmit', rate='$rate' WHERE url='$url'");
                echo 'Notes added.';
                            
                    }
                echo '<form action="" method="post"><table width="100%">
            <tr><td align="center">Add Notes to Sites</td></tr>
            <tr><td align="center">URL<input type="text" name="url">Date/Notes<input type="text" name="emailsubmit">Rating:<input type="text" name="rate"></td></tr>
            <tr><td align="center"><input type="submit" value="Make Note" name="sitesub"></td></tr></table></form><br>';                    
            if(isset($_POST['asub']) && isset($_POST['ad']) && !empty($_POST['ad'])) {
                foreach($_POST['ad'] as $addKey => $addVal) {
                    $fetch = mysql_query("SELECT sid,title,type,url FROM wcddl_queue WHERE id = '".mysql_real_escape_string($addVal)."'");
                    $fetch = mysql_fetch_assoc($fetch);
                    mysql_query("DELETE FROM wcddl_queue WHERE id = '".mysql_real_escape_string($addVal)."'");
                    mysql_query("INSERT INTO wcddl_downloads (sid,title,type,url,dat) VALUES ('".$fetch['sid']."','".$fetch['title']."','".$fetch['type']."','".$fetch['url']."','".time()."')");
                }
            }
            if(isset($_POST['dsub']) && isset($_POST['ad']) && !empty($_POST['ad'])) {
                foreach($_POST['ad'] as $delKey => $delVal) {
                    mysql_query("DELETE FROM wcddl_queue WHERE id = '".mysql_real_escape_string($delVal)."'");
                }
            }
            if(isset($_POST['ucsub']) && isset($_POST['rmuc'])) {
                if(strpos($_POST['rmuc'],",") === false)
                mysql_query("DELETE FROM wcddl_queue WHERE id = '".mysql_real_escape_string($_POST['rmuc'])."'");
                else {
                $rmuc = explode(",",$_POST['rmuc']);
                    foreach($rmuc as $rmucID)
                    mysql_query("DELETE FROM wcddl_queue WHERE id = '".mysql_real_escape_string($rmucID)."'");
                }
            }
            $get = mysql_query("SELECT q.id,q.sid,q.title,q.type,q.url FROM wcddl_queue q LEFT JOIN wcddl_sites s ON (s.id = q.sid) ORDER BY s.rate ASC");
            $unclean = array();
            echo '<form action="" method="post" name="queue"><table width="100%">
            <tr><td>Type</td><td>Title</td><td>Site</td><td>Email</td><td>Emailsubmit</td><td>rating</td><td>Select</td><td>Cleanliness</td></tr>';
            while($got = mysql_fetch_assoc($get)) {
                $site = mysql_query("SELECT name as sname, url as surl,email,emailsubmit,rate FROM wcddl_sites WHERE id = '".mysql_real_escape_string($got['sid'])."' LIMIT 1");
                $site = mysql_fetch_assoc($site);
                $got = array_merge($site,$got);
                $got = $this->mapit($got,array("stripslashes"));
                unset($hack);
                    foreach($got as $check) {
                        if($check != strip_tags($check)) {
                        $unclean[] = $got['id'];
                        $hack = '<span style="color:#FF0000;">UNCLEAN</span>';
                        }
                    }
                    if(!isset($hack))
                    $hack = '<span style="color:green;">CLEAN</span>';
                $got = $this->mapit($got,array("strip_tags"));
                echo '<tr>
                <td>'.$got['type'].'</td>
                <td><a href="'.$got['url'].'" target="_blank">'.$got['title'].'</a></td>
                <td><a href="http://'.$got['surl'].'" target="_blank">'.$got['sname'].'</a></td>
                <td><a href="mailto:'.$got['email'].'?subject=Dark DDL Submissions&body=">'.$got['email'].'</a></td>
                <td>'.$got['emailsubmit'].'</td>
                <td>'.$got['rate'].'</td>
                <td><input type="checkbox" name="ad[]" value="'.$got['id'].'"></td>
                <td>'.$hack.'</td>
                </tr>';
            }
            echo '<tr>
            <td><input type="submit" value="Accept Selected" name="asub"></td>
            <td><input type="submit" value="Delete Selected" name="dsub"></td>
            <td><input type="button" value="Select All" id="sbutton" onclick="jamez();"></td>';
            if(isset($unclean[0]))
                echo '<td><input type="hidden" value="'.implode(",",$unclean).'" name="rmuc"><input type="submit" value="Remove Unclean" name="ucsub"></td>';
            echo '</tr>';
            echo '</table></form>';
        }
    
    
    Open index.php and find:
    
    <tr><td>Type</td><td><strong>Title</strong></td><td>Views</td><td>Rating</td></tr>
    
    Replace with:
    
    <tr><td>Type</td><td><strong>Title</strong></td><td>sites</td><td></td><td>Views</td><td>Rating</td></tr>
    
    Find:
     <tr><td><?=$dl['type']?></td><td><a href="download.php?id=<?=$dl['id']?>"><?=$dl['title']?></a></td><td><?=$dl['views']?></td><td><?=$dl['rating']?></td></tr>
    
    Replace with:
    
     <tr><td><?=$dl['type']?></td><td><a href="download.php?id=<?=$dl['id']?>"><?=$dl['title']?></a></td><td><center><a href="http://<?=urlencode($dl['surl'])?>"><?=$dl['sname']?></a></center></td><td><?=$dl['srate']?></td><td><?=$dl['views']?></td><td><?=$dl['rating']?></td></tr>
    
    
    on line 3 put make sure this is what is there
    $downloads = $core->fetchDownloads(true);

  8.     
    #7
    Google Corp.
    ^ front dont release it I paid for that one |:
    Life asked Death: "Why do people love me, but hate you?"
    Death responded: "Because you're a beautiful lie and I'm the painful truth."


  9.     
    #8
    Banned
    Website's:
    FusionWarez.info SmokeHost.net Leechers.co
    Thanks Alot KroNiiK .

    Edit: where it says line 152 what am I editing?

  10.     
    #9
    Member
    Website's:
    WarezWitch.com
    sj u have a more advanced version i believe but if not since u paid u will get the new one
    Respected
    Th3_Narcissist - Hawk - DeathKnell - Flash - JmZ - Exel - Elio - Want to be next?
    Disrespected
    Smartzkool - Gat Dat - Gill - AK47 - Want to be next?



  11.     
    #10
    Member
    Website's:
    ZVER.TV Studio9Resources.com
    np enjoy CyberHack.

Page 1 of 3 123 LastLast

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. [WCDDL] Auto Site Rating
    By DEViANCE in forum Web Application/Script Support
    Replies: 15
    Last Post: 2nd Oct 2011, 12:11 AM
  2. Error while adding site rating mod in WCDDL
    By Hack_0693 in forum Web Application/Script Support
    Replies: 6
    Last Post: 13th Mar 2011, 03:17 PM
  3. [Buying] Need 4 or 5* Rating Forum Site!!!
    By chandu4money in forum Completed Transactions
    Replies: 3
    Last Post: 24th Jan 2011, 07:19 PM
  4. WCDDL Site Rating Mod
    By DDLwarez in forum Web Application/Script Support
    Replies: 5
    Last Post: 3rd Feb 2010, 03:11 AM
  5. Site rating of x-sharezone??
    By djay in forum Site Reviews
    Replies: 2
    Last Post: 19th Sep 2008, 08:37 PM

Tags for this Thread

BE SOCIAL