Please upgrade here. These earlier versions are no longer being updated and have security issues.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
Topic Order
tyskkvinna
New
I have successfully imported everything and it works! works great! With one silly error. All of the topics show up in reverse alphabetical order. Newly made ones show up in the proper order (newest first) but anything imported shows up Z-A according to the title. The dates are correctly there, and you can see them.
Any idea where to hunt to fix this one?
Tagged:
0
Comments
sequence your discussions with
DateLastComment in the discussion table.
most recent time/date = top of list
...
...
least recent(oldest) time -date = bot list
I may not provide the completed solution you might desire, but I do try to provide honest suggestions to help you solve your issue.
this will change all your dates but will reverse the order
UPDATE GDN_Discussion
SET
DateLastComment` = NOW( ) ;I may not provide the completed solution you might desire, but I do try to provide honest suggestions to help you solve your issue.