(process:4382): libgnomevfs-WARNING**: Unable to create ~/.gnome2 directory: Permission denied
Code:
<?php
// Start header flush
ob_start();
// Set variables
$imPath = "/opt/local/bin";
$new_svg = $_GET['new_svg'];
$new_png = $_GET['new_png'];
//echo "images/" . $new_svg;
//echo "</br>";
// Execute shell command
system("exec 2>&1; $imPath/convert 'images/$new_svg' images/$new_png");
// Redirect to show_image.php
$redirect = "show_image.php?new_svg=$new_svg&new_png=$new_png";
header("Location: ". $redirect );
exit();
// Flush header
ob_end-flush();
?>
I new to the whole shell script world, sorry. Where do I find the '~/.gnome2 directory' and what should it's permissions be set to?
Thanks,
Ken...
it is not the past, but the future that awaits you, that determines who you are right now.