Hey, firstly thanks for the work it looks really good!
However I do have a rather persistant niggle. When importing 100+ photos, or even just a few, they seem to be listed in a random order and not ordered by filename or anything. This makes it very difficult to go along and write captions in a sequence since the photos are all over the place.
The same issue is in the 'manage' section of the admin panel.
I have had a quick look at the code but can't figure out how to order this?
Well, for importing, the order of the files is simply the order in which the filenames are pulled off the filesystem.
In plog-import.php, line 10, see this code? $files = get_files($config['basedir'] . 'uploads');
That is simply pulling all the filenames from the upload folder into an array. So I'm guessing you can just sort that array before processing with something like: sort($files);
Mike, I couldn't get sort($files) to do anything in the plog-import.php file. I put it right beneath $files = get_files($config['basedir'] . 'uploads'); but nothing happens. The import list is still randomly listed.