Page 1 of 1

bug in serendipity_functions_images.inc.php

Posted: Tue Apr 06, 2004 1:26 pm
by klokop
Warning: shell_exec(): Cannot execute using backquotes in Safe Mode in "-path to-"/serendipity_functions_images.inc.php on line 134

Found solution already....

replace:

Code: Select all

$res = `$cmd`;
with:

Code: Select all

$res = exec($cmd);