On windows systems when ImageMagick or NetPBM used, a blank page displays when one trying create thumbnails or resize images through ACP (Admin Control Panel)
To fix that open includes/image_utils.php
Find:
if (!@is_executable($convert_options['convert_path'])) {
Replace with:
/*
FIX BLANK PAGE ON WINDOWS SYSTEMS
ORIGINAL CODE:
if (!@is_executable($convert_options['convert_path'])) {
*/
if (function_exists('is_executable') && !@is_executable($convert_options['convert_path'])) {
(when ImageMagick used)
Find: if (!@is_executable($convert_options['convert_path']."/".check_executable("pnmscale"))) {
Replace with:/*
FIX BLANK PAGE ON WINDOWS SYSTEMS
ORIGINAL CODE:
if (!@is_executable($convert_options['convert_path']."/".check_executable("pnmscale"))) {
*/
if (function_exists('is_executable') && !@is_executable($convert_options['convert_path']."/".check_executable("pnmscale"))) {
(when NetPBM used)