bug in serendipity_functions_images.inc.php
Posted: Tue Apr 06, 2004 1:26 pm
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:
with:
Found solution already....
replace:
Code: Select all
$res = `$cmd`;Code: Select all
$res = exec($cmd);