Windows install problems with 0.8
Posted: Tue Dec 21, 2004 8:59 pm
Ok, so the new installer looks great, but it uses is_executable, which is not available on Windows when php < 5
By changeing:
To:
You can get it working.... A version check wouldn't be too hard here, I think...
I just went for the quick fix...
By changeing:
Code: Select all
foreach ($path as $dir) {
if (@is_executable($dir . '/convert') || @is_file($dir . '/convert')) {
return $dir . '/convert';
}
}
Code: Select all
foreach ($path as $dir) {
if (@is_file($dir . '/convert')) {
return $dir . '/convert';
}
}
I just went for the quick fix...