- assigned_to: nobody --> bkilian
Using the "EXT" image functions in common.inc I get
the following errors output on top of the image
whenever the requested scaled image is not already in
the cache.
shell-init: could not get current directory: getwd:
cannot access parent directories job-working-
directory: could not get current directory: getwd:
cannot access parent directories job-working-
directory: could not get current directory: getwd:
cannot access parent directories job-working-
directory: could not get current directory: getwd:
cannot access parent directories
I traced it to the execution of
system("$convert $new_width $new_height
\"$cache_base\" \"$newalbum\" \"$source\" \"$dest\"
2>&1");
in common.inc
This function has side effects so I simply changed the
system to call to an exec call problem solved.
exec("$convert $new_width $new_height \"$cache_base\"
\"$newalbum\" \"$source\" \"$dest\" 2>&1");
ps. I submitted the PHP3.XX Compatibility bug also