Conan,
You can see VirtueTech's forum. Mine is not in English so it might be hard to see whats going on.
VirtueTech,
As I said, sort by title does NOT sort treads alphabeticly (cause I thought it might be useless). It sorts them by the date of the first post in that thread (the main post). You can check'em out yourself and see the dates. If you want to make it sort alphabeticly, just replace.
Code:
$threads=$DB_site->query("SELECT threadid,title,open,lastpost,replycount,postusername,lastposter,notes,iconid,views FROM thread WHERE forumid=$forumid AND visible=1 $datecut ORDER BY threadid DESC LIMIT $limitlower,$perpage");
with
Code:
$threads=$DB_site->query("SELECT threadid,title,open,lastpost,replycount,postusername,lastposter,notes,iconid,views FROM thread WHERE forumid=$forumid AND visible=1 $datecut ORDER BY title DESC LIMIT $limitlower,$perpage");
Regular forumdisplay actually does sort threads by last post

I added it so that people can get back to normal sorting.
I cannot answer your last question cause I'm not that experinced. One of the guys might have an answer.
[Edited by Essam on 09-08-2000 at 01:37 AM]