Selling WCDDL Custom Queue Mod

Status
Not open for further replies.

deAthbLisS

Active Member
1,393
2009
61
0
Hi,
As default WCDDL Queue gives the downloads in queue from all rating making it little difficult to process a queued download for a particular rating.

it was a real pain to select 1* or 2* sites downloads and publish them, but
The mod is developed now for getting custom rating's queued downloads.
Good for those ddl's who get massive queue submission.

Admin Navigation link added for quick access.
Accept and Delete Specific Rating downloads.


New Feature Added (17th may):
Randomize Results like they Display on Katz 1st page.

Randomize results with ratings.. or without ratings..
Admin Panel Option:
j5xaf5.jpg


Submission Mixture screenshot:



Screenshot (old):
2n0ldw8.jpg


To get this mod working.. You need to have this mod installed:
Site Rating Mod


Price: $10
Payment via Paypal

Edit:
more features to be added:
Get downloads from a specific site.



Thanks.

P.S: Thanks to t30d0r for pointing out one of my silly mistake... xD
 
19 comments
lol always go the long way round

why not just ORDER the downlaods by rating ASC

so you get 1 star sites first then 2 then 3 etc etc...

no need for mad mods.. just add

ORDER BY rating ASC

to the sql. done :/
 
@WarezDemon [#10342] We could not determine which forum this topic is in. :(

[slide]http://screensnapr.com/u/1ii850.png[/slide]
 
Litewarez is totally right. You just need to change one tiny tiny line in WCDDL to get the sites to display in order of rating by adding "ORDER BY rating ASC"

I don't have WCDDL anywhere but if someone want's to give me access to their site who already has the site rating mod installed I'll modify the line for them and then make a tutorial to show everyone else the line to edit.

I haven't seen this mod for sale but if all it does is order sites by rating it's way over priced. Sorry deAthbLisS.

EDIT: nm. if your using the link posted by warezdemon then just replace
PHP:
$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");
with
PHP:
$site = mysql_query("SELECT name as sname, url as surl,email,emailsubmit,rate FROM wcddl_sites WHERE id = '".mysql_real_escape_string($got['sid'])."'ORDER BY rate ASC LIMIT 1");

It's untested but should work. By adding ORDER BY rating ASC it will put the sites in order of rate for you. If you want them in reverse just have it ORDER BY rate DESC
 
thanks for the tutorials..
but if you got 500 submissions from 1* sites and you want to publish all 1* sites first then its a time taking process to select all submissions from 1* sites.

this mod helps to select all 1* sites submissions in just few clicks. ;)
 
This would be an extremely useful mod for a new WCDDL user.

I would buy it if I didn't already have a similar one for ddl0, nice work deathbliss.


@lite: if you read it properly, there's more to this mod than just a 1 line edit.
 
drop down box "choserate"
if($choserate)
select bla bla bla where rating = $chosedrate
else
select bla bla bla order by rating ASC
 
Status
Not open for further replies.
Back
Top