Results 111 to 120 of 152
-
21st Mar 2012, 03:04 PM #111MemberWebsite's:
RazorDOX.comWhenever 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.
-
21st Mar 2012, 03:38 PM #112OPRespected DeveloperWebsite's:
wrzc.orgGoing 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
-
21st Mar 2012, 04:34 PM #113MemberWebsite's:
RazorDOX.com
-
26th Mar 2012, 01:26 PM #114MemberWebsite's:
4rc.org pivx.net mambaturk.comIs 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
- DisRespected: Dlow (Still he owe me 30$)
-
26th Mar 2012, 03:03 PM #115MemberWebsite'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');
-
26th Mar 2012, 04:55 PM #116MemberWebsite'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
- DisRespected: Dlow (Still he owe me 30$)
-
4th Apr 2012, 05:55 AM #117MemberWebsite's:
mafiaWarez.com phaze.co katzbb.com massddl.com buspic.com
-
4th Apr 2012, 10:10 AM #118OPRespected DeveloperWebsite's:
wrzc.orgTutorial How to SEO your Warez Site a guide to help you increase your organic traffic
Huge list of Warez Sites and free Multiposter Templates
-
5th Apr 2012, 02:07 PM #119MemberWebsite'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
-
5th Apr 2012, 03:43 PM #120Too 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....
Thread Information
Users Browsing this Thread
There are currently 1 users browsing this thread. (0 members and 1 guests)
Similar Threads
-
WCDDL - Development How-To (Modules, Hooks, etc)
By JmZ in forum Web Development AreaReplies: 19Last Post: 25th Jan 2014, 09:09 AM -
WCDDL Modules
By Peach in forum Forum and DDL DiscussionReplies: 3Last Post: 21st Jun 2011, 01:19 PM -
Ultimate WordPress Free Plugins Thread !-Sharing top plugins.
By alex17 in forum Webmaster ResourcesReplies: 3Last Post: 2nd Jun 2011, 04:05 PM -
2x Custom modules, black/whitelist WcDDL
By Chris2k in forum Webmaster ResourcesReplies: 0Last Post: 21st May 2011, 01:01 AM -
Best WCDDL plugins
By bunnny in forum Forum and DDL DiscussionReplies: 25Last Post: 7th Apr 2011, 06:56 PM
themaManager - edit and manage...
Version 4.04 released. Open older version (or...