WCDDL Modules, Plugins and Extensions

Status
Not open for further replies.
The problem using a full modified version of WCDDL where everything is installed already is far too often it's older versions of the modules that are installed and they can contain bugs that are fixed in the updated versions posted here.

Your best off installing the modules yourself and they only take a few seconds. I designed them so they are as easy as possible to install. Most you just upload and click the install button. If you've any trouble let me know.
 
check the error logs (specifically where php errors are logged).
its most probably due to some alteration you made or the 'theme' made.
 
No it's a bug in WCDDL :O

https://github.com/jmzrlz/WCDDL/blob/master/download.php

on the download.php file line 18 it has:
Code:
<frame src="<?php $download->url; ?>" name="mainFrame" id="mainFrame" />

when it should have:

Code:
<frame src="<?php echo $download->url; ?>" name="mainFrame" id="mainFrame" />

it's missing the echo


Also JmZ you said you'd add a check to the default modules list if it couldn't find the modules folder. Too many noobs don't put the default config modules folder link and no modules work as a result.
 
ah yeah typo from 3.1(ish)

I didn't add that check because it already checks if the directory exists. If it does, it loads modules from it, otherwise it forgets about it.
 
i have the problem with modules... there are not any mods in admin panel
20120208234925.jpg
 
i have the problem with modules... there are not any mods in admin panel

The problem is in your config folder. You don't have the correct location to your modules folder.

define('WCDDL_PATH_MODULES', '/This/is/wrong/');

it probably needs to be something like

define('WCDDL_PATH_MODULES', '/home/username/public_html/modules/');
 
it this right?

# Core
define('WCDDL_PATH', '/home/u652589928/public_html/');
define('WCDDL_PATH_MODULES', '/home/u652589928/public_html/modules/');


thx i resolved it
 
ACP Module

ACP Module
The Re-Rate, edit, modify, and website control Module.


Add and Search Websites
3kwDS.png


List of Search Result Websites
hOpBF.png


Edit Website
jAASl.png


Admin Settings
s2MiV.png


Easy to Install
HaH5R.png


ACP Module

Features and Settings

Re-Rates
This is one of the most important modules. It allows rating of websites between 1-5 stars which is common among most DDL Websites.

Re-Rate History
Along with re-rating sites it can save a log of the re-rate and email the re-rate message to the webmaster. This helps you at a later date in looking back at a websites history in determing it's new rating.

Search Websites
You can search for websites by name, email or url of a site which returns a list and you can select a site to edit or modify.

Add Site
Quickly and easily add websites which are instantly added to whitelists and rated accordingly.

Banning a Website
You can Temporary or Permanently ban a website. If a website permanently banned then it's site is blacklisted, it's removed from the whitelist and all downloads are removed from the database. You can temporary ban a website for a period of time (1, 3, 5, 7, 14 or 30 days) so it's rating will be reduced to zero and it can no longer submit downloads. After the length of time you specify expires the website will be automatically unbanned and it's previous rating restored. Like all re-ratings an automated unban will also be recorded.
To help speed up the rating of websites.

Options and Fast Re-Rates
To help you re-rate websites faster you can create your own custom re-rate messages in the options. These can then quickly be selected when re-rating websites meaning you don't have to type out messages every time.

Limit Submit
If you have the Limit Submit Manager installed you can specify a different amount of submits for a website. This will allow you to let a certain 3 star website to submit more than another 3 star or even a 4 or 5 star website. You can use this to punish or reward websites who submit to your website.

Emails and Unsubscribe
When you re-rate a website you have the option to check a box that will send an automated email to the webmaster informing him that his website has being re-rated. A default message template is saved in the options and the name, email and message are added to the template before it's sent meaning you don't have to write a custom email to every webmaster.
The email also has a link at the bottom of the email which allows the webmaster to unsubscribe from future automated re-rate emails.

Download

https://rapidshare.com/files/3463200834/wcddl_acp.php

Change Log
13 Feb - Initial Release
19 Feb - Some minor code improvements. Added link to File Host Module, added HTML5 Form Validation
 
Last edited:
Some great mods being released here :sun:


Maybe a little tweak can be done, the plugin manager page seems to have browser caching set so newly uploaded plugins dont apear until you F5, if you just click the link they dont show.
 
Last edited:
WcDDL V3 Color Categories Module by immu

20120214134647.png

20120215170025.png



About: Its already an Famous Module for WcDDLV2 i have retouched to make work on WcDDLv3

Install

Open your CSS File and add this code (default style.css)
PHP:
.app { color: #5c93be; }
.game { color: #0a98bc; }
.movie { color: #299573; }
.music { color: #b56f7e; }
.tv { color: #dac508; }
.ebook { color: #CC9933; }
.video { color: #FF6600; }
.template { color: #0085cf; }
.other { color: #fc7cb3; }
.xxx { color: #990545; }
Open your Index.php file

Find

PHP:
<td><?php echo $row->type; ?></td>
Replace

PHP:
<td><span class="<?php echo strtolower($row->type); ?>"><?php echo ucfirst($row->type); ?></span></td>
Chnage CSS to display the colors you like or Colors to match your Theme


Credits to Jomasaco
Cheers
 
Last edited:
You opened a span tag but didn't close it which may cause issues.
PHP:
<td><span class="<?=strtolower($row->type)?>"><?=ucfirst($row->type)?></td>
should be
PHP:
<td><span class="<?php echo strtolower($row->type); ?>"><?php echo ucfirst($row->type); ?></span></td>
Otherwise nice work
 
Status
Not open for further replies.
Back
Top