I have installed the latest G2 (2.3rc2)
I am running a vps server with CentOS Enterprise 4.7
I compiled dcraw latest version http://www.cybercom.net/~dcoffin/dcraw/archive/dcraw-8.88.tar.gz
with this command gcc -o dcraw -O4 dcraw.c -lm -DNO_JPEG -DNO_LCMS
could not get the files to process correctly..
However after tweaking DcrawToolkit.class in the dcraw classes directory of modules
around line 126
if (version_compare($version, '7.73', '>=')) {
//$cmd = array($dcraw, '-c', '-a', '-q', '0', $sourceFilename, '>', $tmpFilename);
$cmd = array($dcraw, '-c', $sourceFilename, '>', $tmpFilename);
} else {
//$cmd = array($dcraw, '-c', '-a', '-q', $sourceFilename, '>', $tmpFilename);
$cmd = array($dcraw, '-c', $sourceFilename, '>', $tmpFilename);
}
original is commented out and changing to $gallery->guaranteeTimeLimit(180);
it now produces the image and thumbnail
attached is the modified file, dcraw source, and compiled dcraw
if this is in the wrong directory feel free to move it i couldnt find a bug fix submit form
Jeff
Posts: 11717
This bug could be related:
http://sourceforge.net/tracker/index.php?func=detail&aid=1922365&group_id=7130&atid=107130
and you can also add patches to:
http://sourceforge.net/tracker/?group_id=7130&atid=307130
and this might be related as well:
http://sourceforge.net/tracker/index.php?func=detail&aid=1927548&group_id=7130&atid=307130
Thanks
Dave
_____________________________________________
Blog & G2 || floridave - Gallery Team
Posts: 2
well doesnt that just make one feel dumb ;) thanks Dave