I have named the folders under Galleries Thursday, Friday, Saturday, and Sunday. But the ordering has a problem, the menu list orders Thursday, Sunday, Saturday, Friday. I have followed the instruction at settings.php below:
* 0 : default platform sorting (check it on your platform) * 1 : natural sorting (0833.jpg comes before 2018.jpg) * 2 : natural sorting, case-insensitive (recommended) * 3 : reverse default platform sorting * 4 : reverse natural sorting * 5 : reverse natural sorting, case-insensitive * 6 : EXIF date (not tested thoroughly) * 7 : EXIF date (reverse order, not tested thoroughly) * NOTE: if PHP was compiled without EXIF support it'll fall back to '0' */ $settings['gallery_sorting'] = 3;//orignial is 2 $settings['thumbnail_sorting'] = 0; Please help me to correct the problem when you can? Much appreciate it!!!!
Yes, you're ordering WORDS in a reverse order, so T comes before S which comes before F. There's no way the OS can know you're referring to days of the week.
Use numerical dates, or just add numbers to folders to order them in a different way.