Amorino, if you want to change the position of watermark,
in watermark.php on line 32 change:
imagecopy($image, $watermark, $w-$ww, $h-$wh, 0, 0, $ww, $wh);
to one of the following lines, where you want the watermark appear
// (top left)
imagecopy($image, $watermark, 0, 0, 0, 0, $ww, $wh);
// (top center)
imagecopy($image, $watermark, (($w/2)-($ww/2)), 0, 0, 0, $ww, $wh);
// (top right)
imagecopy($image, $watermark, $w-$ww, 0, 0, 0, $ww, $wh);
// (left centre)
imagecopy($image, $watermark, 0, (($h/2)-($wh/2)), 0, 0, $ww, $wh);
// (centre)
imagecopy($image, $watermark, (($w/2)-($ww/2)), (($h/2)-($wh/2)), 0, 0, $ww, $wh);
// (right centre)
imagecopy($image, $watermark, $w-$ww, (($h/2)-($wh/2)), 0, 0, $ww, $wh);
// (bottom left)
imagecopy($image, $watermark, 0, $h-$wh, 0, 0, $ww, $wh);
// (bottom center)
imagecopy($image, $watermark, (($w/2)-($ww/2)), (($h)-($wh)), 0, 0, $ww, $wh);
// (bottom right)
imagecopy($image, $watermark, $w-$ww, $h-$wh, 0, 0, $ww, $wh);
The watermark script works well on my localhost, but I am not able to configure it to run properly on live site. Using "../../../../watermark/watermark.php" I get an error, that the file was not found.