Status
Not open for further replies.

Chris2k

Banned
Banned
901
2009
17
0
hey

Any1 know how this sql orders:

c89bcef200.png


Because they have a diff site per row, i am currently query mine as rate but its showing last 40 rows from sites,
 
1 comment
You can try this..

mix the downloads
Credit to jomasco

Open funcs.php file and search for:
PHP:
foreach($_POST['ad'] as $addKey => $addVal) {

before add:
PHP:
shuffle($_POST['ad']);

Search for and comment:
PHP:
$get = "SELECT id,sid,title,type,url FROM wcddl_queue ORDER BY id ASC LIMIT 0, 250";

Add above:
PHP:
$get= "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.rating, s.id ASC LIMIT 0,".($this->limit * 4)."";
 
Status
Not open for further replies.
Back
Top