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

Page 12 of 16 FirstFirst ... 21011121314 ... LastLast
Results 111 to 120 of 152
  1.     
    #111
    Member
    Website's:
    RazorDOX.com
    Whenever I want to add/whitelist a site on the ACP from Mr Happy, I need to fill in the site url, site name and email.

    This is pretty annoying when a forum only gives the site url. There is nog way I can only add the site url without the email or site name.

    Every time someone wants to get whitelisted, I need to contact them back for their submission email and site name.

    I remember (without the ACP module) you just could only add the site url, and the rest goes filled in automatically when someone submits.

    I hope you understand, I tried my best to explain.

  2.     
    #112
    Respected Developer
    Website's:
    wrzc.org
    Quote Originally Posted by mgmaik View Post
    Whenever I want to add/whitelist a site on the ACP from Mr Happy, I need to fill in the site url, site name and email.

    This is pretty annoying when a forum only gives the site url. There is nog way I can only add the site url without the email or site name.

    Every time someone wants to get whitelisted, I need to contact them back for their submission email and site name.

    I remember (without the ACP module) you just could only add the site url, and the rest goes filled in automatically when someone submits.

    I hope you understand, I tried my best to explain.
    Going by memory as I haven't looked as WCDDL in a month now it's a security issue and the way WCDDL works by default is a major security problem.

    If you whitelist a site by adding the url... eg example.com then whoever is the next person to submit using example.com decides the default site name and email address for that site. If nobody has submitted before it records the email and site name.

    You have a support thread on KWWH. Say the owner of example.com asks to be whitelisted and a few hours later you reply with your now whitelisted and I see your reply and the owner of example.com is asleep. I can then go to your site, submit using the url example.com with my own email address and whatever site name I want. I now have full control of that site. I have the default email, If you add a webmaster area I will have full control over it etc. I can then chose to submit my own urls to earn more downloads or submit malware and fake uploads to get example.com banned or just to fuck up your site.

    By asking for an email address and site name when whitelisting this security issue is removed.

    ALSO.....
    I plan on releasing a WCP as mentioned above but this got delayed a bit. When it's released the webmaster will enter the email address, url and site name to register and get whitelisted. All you'll have to do is approve the site by clicking one button. Alternatively you can have them autoapproved. This will mean no inputting of information for you at all and is extremely secure.


    In summary it's a security issue. All my modules are built to be 100% secure and therefore I won't be undoing this feature.
    Tutorial How to SEO your Warez Site a guide to help you increase your organic traffic

    Huge list of Warez Sites and free Multiposter Templates

  3.     
    #113
    Member
    Website's:
    RazorDOX.com
    @Mr Happy

    Okay great! Thanks for letting know. So the WCP module is the solution for that issue.

  4.     
    #114
    Member
    Website's:
    4rc.org pivx.net mambaturk.com
    Is there any script or module for v3 pagination?

    i mean << Previous 2,3,4,5 Next >>

    v3
    Code: 
    <?php
            echo $downloads->pages(array(
                array('default', WCDDL_PAGES_DEFAULT),
                array('query', WCDDL_PAGES_QUERY),
                array('type', WCDDL_PAGES_TYPE),
                array(array('query', 'type'), WCDDL_PAGES_QUERY_TYPE),
                array('site', WCDDL_PAGES_SITE),
            ));
            ?>

    • DisRespected: Dlow (Still he owe me 30$)
    • My Websites are again up!!!!Moved own server


  5.     
    #115
    Member
    Website's:
    RazorDOX.com
    @masterofdeath

    jomasaco already made a beginning of it.

    This is what he did:

    "An litle complex.
    need to get the max pages, corrent page, to much work
    but..."

    PHP Code: 
    <?php
    /*BEGIN_INFO
    V1.0 Show First on pagination always who are page 1
    END_INFO*/

    if(!defined("WCDDL_GUTS"))
        exit;
        
    $modEnabled true//Change to false to turn it off    

    function firstlast($pagina){
        if (!
    strstr($pagina[0],'">1</'))
        
    $pagina[0] = preg_replace('/(\d+)/i','1',$pagina[0]);
    $pagina[0] = preg_replace('/>(\d+)</i','><b>First</b><',$pagina[0]);
    }

    if(
    $modEnabled);
    Core::load()->hook('PagesPost''firstlast');
    credits goes to jomasaco of course.

  6.     
    #116
    Member
    Website's:
    4rc.org pivx.net mambaturk.com
    @Mr Happy i have error with module wcddl_topDownloads

    Code: 
    [26-Mar-2012 18:49:00] PHP Notice:  Undefined index: age in modules/wcddl_topDownloads.php on line 35
    [26-Mar-2012 18:49:00] PHP Notice:  Undefined index: age in modules/wcddl_topDownloads.php on line 44
    Code: 
    Line 35
          if($data['age'] < (time() - $this->time_limit)) {
    Code: 
    Line 44
             if($d != $data['age'])
    Code: 
    <?php
    /*BEGIN_INFO
    V1.0 Mr Happy - Shows the total amount of downloads for each catagory and in the queue on your site
    END_INFO*/
    if(!defined("WCDDL_GUTS"))
       exit;
    
       /*
          To install this mod you need to have the Plugin Manager module installed which you can find here https://*********.net/topic/2058-wcddl/
          Then just click on Install.
       */
    
    $modEnabled = true; //Change to false to turn it off
    
    class totalDownloads {
       /*
          How often do you want to update the list of downloads.
          600 is every 10 minutes in seconds.
       */
       public $time_limit = 600;
       /*
          debug shows errors if any exist. Only set to true if your testing or having problems etc.
       */
       public $debug = false;
    
    /*---------------  Don't edit below here unless you know what your at.  ----------------*/
       public $output = '';
       public $total = 0;
       public $error = array();
       public $update = array();
       
       public function total() {
          $core = Core::load();
          $data = $core->parseConfig('totalDownloads');
          if($data['age'] < (time() - $this->time_limit)) {
             $total = Database::quickColumn('SELECT COUNT(*) FROM ' . WCDDL_DB_PREFIX . 'queue', array());
             if($total != $data['queue'][1])
                $data = $this->update();
          }
          if((count($this->error) > 0) && $this->debug)
             return 'Total Downloads Error:<br />' . implode('<br />', $this->error) . '<br />';
          $this->output .= '<ul class="totaldownloads">';
          foreach($data as $d) {
             if($d != $data['age'])
                $this->output .= '<li class="' . $d[0] . '">' . $d[0] . ' : ' . $d[1] . '</li>';
          }
          $this->output .= '</ul>';
          return $this->output;
       }
       private function update() {
          $rows = Database::quickRows('SELECT type,COUNT(*) cnt FROM ' . WCDDL_DB_PREFIX . 'downloads GROUP BY type');
          if(!empty($rows)) {
             $this->update['age'] = time();
             foreach ($rows as $row) {
                $this->update[$row['type']] = array($row['type'], $row['cnt']);
                $this->total = $this->total + $row['cnt'];
             }
          }
          else
             $this->error[] = 'No Downloads found in database.';
          $queue = Database::quickColumn('SELECT COUNT(*) FROM ' . WCDDL_DB_PREFIX . 'queue', array());
          $this->update['queue'] = array('Queue', $queue);
          $this->update['total'] = array('Total',$this->total);
          $core = Core::load();
          $core->config('totaldownloads',$this->update);
          return $this->update;
       }
       public function checkupdate() {
          return '100;https://*********.net/extra/mrhappy/check1.php?mod=totalDownloads;https://*********.net/topic/2058-wcddl-modules-advanced-seo-and-admin-protection/';
       }
       public function install() {
          $core = Core::load();
          $core->config('totaldownloads',array('age'=>123,'Movie'=>3,'Queue'=>5,'Totals'=>5));
          echo "To add the Total Downloads just Add this line to your site where you want the :<br /><br /><strong>" . htmlentities("<?php echo Core::load()->templateVar('totalDownloads'); ?>") . "</strong><br /><br />For support and more modules visit <a href=\"http://*********.net\" target=\"_blank\">*********.net</a>";
       }
       public function uninstall() {
          echo "To uninstall Total Downloads just remove the following from your your template:<br /><br /><strong>" . htmlentities("<?php echo Core::load()->templateVar('totalDownloads'); ?>") . "</strong><br /><br /><br />Remember to remove or disable the " . WCDDL_DB_PREFIX . "totalDownloads.php file from the modules folder.<br /><br />For support and more modules visit <a href=\"http://*********.net\" target=\"_blank\">*********.net</a>";
       }
    }
    
    if($modEnabled) {
       $totalDownloads = new totalDownloads();
       Core::load()->templateVar("totalDownloads",$totalDownloads->total());
    
       if(isset($_GET['go']) && $_GET['go']=='installtotalDownloads')
          Core::load()->hook('AdminHandleContent', array('totalDownloads', 'install'));
       if(isset($_GET['go']) && $_GET['go']=='checkupdatetotalDownloads')
          Core::load()->hook('AdminHandleContent', array('totalDownloads', 'checkupdate'));
       if(isset($_GET['go']) && $_GET['go']=='uninstalltotalDownloads')
          Core::load()->hook('AdminHandleContent', array('totalDownloads', 'uninstall'));
    }
    ?>

    • DisRespected: Dlow (Still he owe me 30$)
    • My Websites are again up!!!!Moved own server


  7.     
    #117
    Member
    Website's:
    mafiaWarez.com phaze.co katzbb.com massddl.com buspic.com
    where i can found WCP ,checkhost and ratingstart modules for wcddl 3


  8.     
    #118
    Respected Developer
    Website's:
    wrzc.org
    Quote Originally Posted by masterofdeath View Post
    @Mr Happy i have error with module wcddl_topDownloads

    [code]
    [26-Mar-2012 18:49:00] PHP Notice: Undefined index: age in modules/wcddl_topDownloads.php on line 35
    [26-Mar-2012 18:49:00] PHP Notice: Undefined index: age in modules/wcddl_topDownloads.php on line 44
    [/code
    That means you tried to use the module before you installed it. Try clicking install.

    If your still having trouble let me know.
    Quote Originally Posted by -sky- View Post
    where i can found WCP ,checkhost and ratingstart modules for wcddl 3
    Their's a checkhost/file host module and site rating module (ACP Module) in this thread but not a WCP yet.
    Tutorial How to SEO your Warez Site a guide to help you increase your organic traffic

    Huge list of Warez Sites and free Multiposter Templates

  9.     
    #119
    Member
    Website's:
    mafiaWarez.com phaze.co katzbb.com massddl.com buspic.com
    @MrHappy i am newbie about WCDDL
    but Please tell how to make like this at WCDDL V2 http://www.besthostingforums.com/1475960-post127.htm

    thanks


  10.     
    #120
    Too busy :|
    Website's:
    L337Fx.com BeastieBay.net
    @sky,
    That can be easily done with CSS.

    For example:

    <a href="" id="<?php echo $filehost; ?>" /><?php echo $filehost; ?></a>

    Replace it according to the WCDDL code

    Also you need to add CSS IDs in your .css file

    Example:

    #rapidshare.com{color:red;}
    #mediafire.com(color:blue;}

    and so on....

Page 12 of 16 FirstFirst ... 21011121314 ... LastLast

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. WCDDL - Development How-To (Modules, Hooks, etc)
    By JmZ in forum Web Development Area
    Replies: 19
    Last Post: 25th Jan 2014, 09:09 AM
  2. WCDDL Modules
    By Peach in forum Forum and DDL Discussion
    Replies: 3
    Last Post: 21st Jun 2011, 01:19 PM
  3. Ultimate WordPress Free Plugins Thread !-Sharing top plugins.
    By alex17 in forum Webmaster Resources
    Replies: 3
    Last Post: 2nd Jun 2011, 04:05 PM
  4. 2x Custom modules, black/whitelist WcDDL
    By Chris2k in forum Webmaster Resources
    Replies: 0
    Last Post: 21st May 2011, 01:01 AM
  5. Best WCDDL plugins
    By bunnny in forum Forum and DDL Discussion
    Replies: 25
    Last Post: 7th Apr 2011, 06:56 PM

Tags for this Thread

BE SOCIAL