bug in serendipity_functions_images.inc.php

Found a bug? Tell us!!
Post Reply
klokop
Regular
Posts: 5
Joined: Tue Apr 06, 2004 12:31 pm

bug in serendipity_functions_images.inc.php

Post 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);
Post Reply