I takes me about 11 hours to get this script working on WINXP
But I must delete http_auth and rewrite about 10% of script...
I hate PHP scripting... commands like
Code:
$d = dir("$dirname");
while ($entry=$d->read()) {
if ((@is_file($entry)) && ((eregi("\.jpg$",$entry)) || (eregi("\.gif$",$entry)) || (eregi("\.png$",$entry)))) {
$identify = `$magick_path/identify $entry`;
if ($identify) {
$images[] = $entry;
}
}
}
$d->close();
makes me mad

rr