if you are having issues with ordering and your server. You can add this simple piece of code to make it sort alphabetically or numerically.
Go to modules/mod_hot_joomla/carousel/tmpl and open the file default.php
Around Line 159 you will see the beginning of the for loop
for ($loop = 0; $loop <= $infinite_pics_number; $loop += 1) {
add this line after it
//sort images
sort($infinite_pic);
//end sort
save the file and re-upload it to the server.
Now your images will sort like this:
a-image
b-image
or
1-image
2-image
Happy Coding!!!