• I was able to use the watermark feature with no trouble. Now my watermark is not appearing on images I choose to watermark in Manage Gallery.

    I recently upgraded to the newest version of NextGEN. I also added a new watermark logo. The logo has a totally different name so there should be no conflict. The file name and path is correct. The new watermark logo is in the correct folder. I’m applying it correctly in Manage Gallery. The watermark just will not appear.

    Any ideas? This function is crucial to my website and i need to get this working again ASAP.

    Thanks!

Viewing 2 replies - 1 through 2 (of 2 total)
  • It seems that no one is responding to this issue. Is it really that difficult to fix? It’s probably just one line of code.

    Hi :),

    there are two things you should bare in mind:

    1. make sure your watermark image is in .png format
    2. the path to the watermark image should be absolute, not relative

    To get the absolute path to your file, follow these steps:

    1. Copy the below code into Notepad or similar program and save it as a .php file (e.g. abspath.php)
      <?php
       $path = getcwd();
       echo "Your Absolute Path is: ";
       echo $path;
       ?>
    2. Upload your .php file to the same folder where your watermark image is and open it using your web browser ( e.g. https://www.mysite.com/myfolder/abspath.php)
    3. It should print out the absolute path to the folder where your watermark image is. It will probably look something like this: /home/servername/public_html/mysite/myfolder/
    4. Now just add your watermark image file name at the end (it should now look something like /home/servername/public_html/mysite/myfolder/mywatermark.png).
    5. Copy and paste your absolute path to Gallery Watermark Options, enable the watermark via Manage Gallery and you’re done :).
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘[Plugin: NextGEN Gallery] Watermark Feature No Longer Working’ is closed to new replies.