I have the following function in PHP, which is working great except for files with spaces in their names (Good picture.jpg for example). Here it is:
Good picture.jpg
As explained here, try using this code to escape space in filename when using glob:
$albumEscaped = str_replace(' ', '\ ', $currentalbum); $photos = glob($albumEscaped .'/*.[Jj][Pp][Gg]');