Hallo, ich habe die Version 6.x-1.2beta1 installiert.
Mir ist ein Bug aufgefallen, wenn im Bild Dateiname Umlaute sind, z.B märz, wird es im Album nicht dargestellt.
Sonst läuft alles super, danke. :-)

Ich werde das Modul die Tage noch weiter testen, wenn mir noch was auffällt poste ich es hier.

Comments

rapsli’s picture

Status: Active » Needs work

Problem is here:

if ($dirs = glob("$path*", GLOB_ONLYDIR) and !empty ($recursive)) {
      foreach ($dirs as $dir) {
        $files["$path"] = array_merge($files["$path"], $this->exploreDir("$dir/", TRUE));
      }
    }

The glob function dies when it encounters chars like öäü or also []

Need some help on this, cuz I don't know how to solve this

ncy’s picture

Status: Needs work » Fixed

this is also discussed here:

(6.x-3.1-beta1)
http://drupal.org/node/316967#comment-1077398

ncy’s picture

erh, so upon closer inspection, it appears that this is a URL/browser issue. files with umlauts can't seem to be opened on a browser, and it appears that the best solution is to avoid special characters altogether ...

rapsli’s picture

Status: Fixed » Active

how about renaming the files when they have umlaute?

I think it's a server issue.

ncy’s picture

yea, that's probably the best way. i just dont know how keen ppl will be to having their files renamed, especially if they plan on copying it back from the server at some point.

rapsli’s picture

true. ... maybe for the beginning this is just going to be a restriction. no special chars in filename.

ncy’s picture

New update. Made an option in the settings to delete special chars from filenames.

#329256: New Updated Version to 6.x-3.1-beta2 Completed and Posted Here

ncy’s picture

Version: 6.x-1.2beta1 » 6.x-3.2-beta1

ok, this isn't working like i planned (#330188: National characters display with error).

i'm working on a fix, but it will probably still involve renaming files.

rapsli’s picture

Status: Active » Closed (duplicate)