UPDATES:
BrentWilson: ordering works fine for me when I set it to `order` in the settings... im not sure exactly whats causing the problem. If anyone else has this problem please tell me.
Juanito: worked fine for me, can you give me the exact url you tried to add?
phreak420: still waiting for your reply to the previous post
memobug: Add some subcats and files under one category, and then add the following edits.
Code:
FIND:
$result['subs'] = $DB_site->query("SELECT * FROM " . TABLE_PREFIX . "file_cats WHERE parent = '".$_GET['id']."' ORDER BY ".$INFO['order']."");
BELOW:
echo "CONSTRUCTING SUB BITS<br>";
FIND:
eval('$subbits .= "' . fetch_template('downloads_cat_subbit') . '";');
BELOW:
echo "-- ADDING TO SUB BITS<br>";
FIND:
eval('$subcats .= "' . fetch_template('downloads_cat_subs') . '";');
BELOW:
echo "FINISHED SUB BITS<br>";
FIND:
$result['files'] = $DB_site->query("SELECT * FROM " . TABLE_PREFIX . "file_files WHERE approved = '1' AND catid = '".$_GET['id']."' ORDER BY pin DESC, ".$sortbystr." DESC LIMIT ".$limit.",".$perpage);
BELOW:
echo "CONSTRUCTING FILE BITS<br>";
FIND:
eval('$filebits .= "' . fetch_template('downloads_cat_filebit') . '";');
BELOW:
echo "-- ADDING TO FILE BITS<br>";
FIND:
$DB_site->free_result($result['files']);
ABOVE:
ECHO "FINISHED FILE BITS<br>";
If you see a bunch of stuff (started, adding, finished) then do the following edits:
Code:
FIND:
eval('$dmain_jr = "' . fetch_template('downloads_cat') . '";');
eval('$dpanel = "' . fetch_template('downloads_panel_side') . '";');
eval('$dmain = "' . fetch_template('downloads_wrapper_side') . '";');
CHANGE TO:
eval('$dmain = "' . fetch_template('downloads_cat') . '";');
Do you see anything?