damit du mir auch glaubst:
wenn du noch den passenden header sendest, wirst du es auch sehen.
von wegen,
und im Browser erscheint bloß das typische Symbol,
if (file_exists($dest)) {
clearstatcache();
$sourceinfo = stat($source);
$destinfo = stat($dest);
$sourcedate = $sourceinfo[10];
$destdate = $destinfo[10];
}
if (!file_exists("$dest") or ($sourcedate > $destdate)) {
$cmd = "convert -quality 80 -antialias $source $dest";
system($cmd);
}
Kommentar