View Full Version : Social Group and Album Enhancements - PB Watermark Album images
RLShare
06-17-2008, 10:00 PM
There is a new version of this modification available Here (https://vborg.vbsupport.ru/showthread.php?t=214798) that has been confirmed to work in version 3.7.x
------------------------------------------------------------------------------------
This mod is in beta, it was inspired by this thread yesterday.
https://vborg.vbsupport.ru/showthread.php?t=178296
I'm hoping that posting this beta version in here will help me gather useful feedback on what kind of features might be useful in such a hack.
What does it do:
-Adds a watermark to the bottom right of all images uploaded to users albums.
Planned changes:
1. Allow the url of the watermark image to be changed via admincp
2. Allow location of where the watermark image is placed to be changed via admincp
Installation Instructions:
1. Create or Use the watermark.png I attached, and upload it to your forum root before anything.
2. Edit the file forum_root/includes/functions_album.php and add these functions. I added them right below the Vbulletin Copyright notice.
/////////////////////////////////////////////////////////////////////////////////////////////////////////////
//////////// -ALBUM WATERMARK MOD - image createfrom/saveto file functions-////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////
function imagecreatefromfile($path)
{
$info = @getimagesize($path);
if(!$info)
{
return false;
}
$functions = array(
IMAGETYPE_GIF => 'imagecreatefromgif',
IMAGETYPE_JPEG => 'imagecreatefromjpeg',
IMAGETYPE_PNG => 'imagecreatefrompng',
IMAGETYPE_WBMP => 'imagecreatefromwbmp',
IMAGETYPE_XBM => 'imagecreatefromwxbm',
);
if(!$functions[$info[2]])
{
return false;
}
if(!function_exists($functions[$info[2]]))
{
return false;
}
return $functions[$info[2]]($path);
}
function imagesavetofile($image,$path)
{
$info = @getimagesize($path);
if(!$info)
{
return false;
}
$functions = array(
IMAGETYPE_GIF => 'imagegif',
IMAGETYPE_JPEG => 'imagejpeg',
IMAGETYPE_PNG => 'imagepng',
IMAGETYPE_WBMP => 'imagewbmp',
IMAGETYPE_XBM => 'imagewxbm',
);
if(!$functions[$info[2]])
{
return false;
}
if(!function_exists($functions[$info[2]]))
{
return false;
}
return $functions[$info[2]]($image,$path);
}
/////////////////////////////////////////////////////////////////////////////////////////////////////////////
//////////// -ALBUM WATERMARK MOD - image createfrom/saveto file functions-////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////
3. Import the plug-in attached
Fırtına
06-18-2008, 08:14 PM
Thanks :)
xxalexkimxx
06-18-2008, 08:28 PM
Yay thank u so much for this hack.
I will install it now
xxalexkimxx
06-18-2008, 08:36 PM
Where do i go to set:
1. Allow the url of the watermark image to be changed via admincp
2. Allow location of where the watermark image is placed to be changed via admincp
RLShare
06-18-2008, 08:41 PM
Where do i go to set:
1. Allow the url of the watermark image to be changed via admincp
2. Allow location of where the watermark image is placed to be changed via admincp
I haven't implemented that yet, Thats why its listed under planned changes. I will be implementing it soon. I put that up there so people know the changes that I already plan to make and so they do not suggest changes that are in the works.
Right now you will have to create a 'watermark.png' and upload it to the forum root directory. And it will always show up on the bottom right.
xxalexkimxx
06-18-2008, 08:43 PM
oh ok let me do that now
thanks
xxalexkimxx
06-18-2008, 08:50 PM
i got this message came up when upload image
This PNG image has the incorrect file extension.
Fırtına
06-18-2008, 08:59 PM
i got this message came up when upload image
+1 And me...
*********
Is location in forum_root/includes/functions_album.php ?
http://img337.imageshack.us/img337/305/watermarkfunctionssf6.png
7lanet
06-18-2008, 10:00 PM
2. Edit the file forum_root/includes/functions_album.php and add this function. I added it right below the Vbulletin Copyright notice.
where exactly add
7lanet
06-18-2008, 10:13 PM
I Upload img type gif , JPEG
It show msg
This PNG image has the incorrect file extension.
RLShare
06-18-2008, 10:44 PM
Ive updated the original post to reflect the changes that should fix your problems, thank you for letting me know. You will need to add one more function to the file and re-upload the new plug-in I just attached.
Is location in forum_root/includes/functions_album.php ?
http://img337.imageshack.us/img337/305/watermarkfunctionssf6.png
^^Thats exactly it, let me know if the update still does not fix it.
7lanet
06-18-2008, 10:59 PM
Fatal error: Call to undefined function imagesavetofile() in /home/joker/public_html/vb/album.php(794) : eval()'d code on line 9
RLShare
06-18-2008, 11:07 PM
Did you add the function 'imagesavetofile' I posted below the other function to the functions_album.php file?
I just noticed that its easy to look over, the section of my post that contains the code to be pasted to the other file now has 2 functions in it so you will need to delete what you pasted into the file before and copy whats up there now into its place.
bxbigt
06-19-2008, 02:02 AM
can we get this for all images uploaded to the site
Zeb Zoober
06-19-2008, 02:38 AM
can we get this for all images uploaded to the site
+1
Would love to see this work for attachment pictures too.
GaiLoan
06-19-2008, 02:41 AM
this nice, i belive everyone waiting for this :) thanks
holy cow... I've been waiting for this long time ago.
how to create my own watermark .png?
RLShare
06-19-2008, 03:22 AM
how to create my own watermark .png?
Gimp is a powerful free image editing program.
http://gimp.org/downloads/
TimberFloorAu
06-19-2008, 05:03 AM
Tried. Doesnt Work.
Perhaps, rather than use this as a beta area for developing a mod, you should get everything working ok, get it tested, do some instructions.
Looks promising. :)
lazytown
06-19-2008, 05:11 AM
Looking forward to this when it's completed. It would be nice if it could watermark existing album images.
-vissa
It's nice, but have a look at class_image.php and class_upload.php in the includes folder. You could probably integrate it better into the vbulletin system with modifying these classes.
RLShare
06-19-2008, 11:58 AM
Tried. Doesnt Work.
Perhaps, rather than use this as a beta area for developing a mod, you should get everything working ok, get it tested, do some instructions.
Looks promising. :)
'Tried doesn't work' DOESN'T help me. A more detailed explanation of what happened would. I doubt you even tried with a reply like that. And what exactly do you think it means to be a Beta? That means I want it tested. Maybe you should learn a thing about the terminology of this before you start telling me what to do.
RLShare
06-19-2008, 12:02 PM
It's nice, but have a look at class_image.php and class_upload.php in the includes folder. You could probably integrate it better into the vbulletin system with modifying these classes.
Will do, thanks for the direction.
ShiZoPhreN
06-19-2008, 02:06 PM
Thanks RLShare
*clicks installed*
Tboy_forum
06-19-2008, 07:54 PM
+1 for all images uploaded please
Clicks 'installed'
Mr.samy
06-19-2008, 09:01 PM
thanks dear ,
but can i add text on picture without photos ( .png ) such that doamin .
balance12
06-19-2008, 10:36 PM
If i want that the watermark.. be placed from side to side from the picture... like a large bar.... i have to midifed something++
ALSALAFE
06-19-2008, 10:49 PM
Thanks :up:
balance12
06-20-2008, 01:07 PM
Done everythinh....
Place watermark png on forumrrot
Edite funciton_album
Import Plugin
Parse error: syntax error, unexpected T_STRING in /home/reinodra/public_html/includes/functions_album.php on line 17
balance12
06-20-2008, 01:19 PM
Work Greattttttttt
balance12
06-20-2008, 11:31 PM
It only adss me the watermark, in the first picture of the uploaded pohoton in an album.. imean.. in the album you can upload 3 simultaneous pictures.. and only the first one gets tthe watermak...
Jdm Ej1 Coupe
06-21-2008, 12:25 AM
interesting will wait to see if it gets better before installing
RLShare
06-21-2008, 12:41 AM
It only adss me the watermark, in the first picture of the uploaded pohoton in an album.. imean.. in the album you can upload 3 simultaneous pictures.. and only the first one gets tthe watermak...
lol. See a simple thing like this and I overlooked it. Thats why I posted it, thanks for pointing it out. Will fix later tonite or tommorow.
Catmag
06-22-2008, 01:58 AM
Works well. Haven't tried to upload multiple images yet.
Any way to increase the size of the watermark?
RLShare
06-22-2008, 12:25 PM
Updated so that it now works when uploading multiple images....Delete the old plugin and import the new one.
Works well. Haven't tried to upload multiple images yet.
Any way to increase the size of the watermark?
You can use a larger watermark.png image. It places the watermark image in the bottom right corner based on the dimensions of the watermark.png so it will work with any size image.
Alfa1
06-22-2008, 06:05 PM
The problem with watermarks is that they normally are a fixed size. This means that a large pic will get a relatively tiny watermark and a small pic may get butchered by a watermark.
Please make the size of the watermark relative to the size of the picture.
RaMMz
06-22-2008, 09:12 PM
Thanks, it works perfect.
You should upload watermark.png to the forum root directory, edit that simple .php and it works fine & upload the plugin.
RaMMz @ BlackTouch NETWORK.-
TimberFloorAu
06-22-2008, 09:26 PM
Is this backwards compatible.
In essence, does it watermark all existing uploaded images, or only new ones?
RaMMz
06-22-2008, 09:34 PM
Is this backwards compatible.
In essence, does it watermark all existing uploaded images, or only new ones?
Only new ones.
Mr.samy
06-22-2008, 10:50 PM
After i install it .... and try to upload animated photo ... i see the plugins put the watermark on it but the photo become not animated and stop from work
balance12
06-23-2008, 09:29 PM
I upgrade it, and work grate with massive uploads, but it shows me different Size of watermark.. you upload an albun it shows you great, the other shows it shorter.. then good.....
One good one smaller....
What could it be?
xxalexkimxx
06-23-2008, 10:04 PM
I Upload img type gif , JPEG
It show msg
change the all image type to LOWER CASE
RLShare
06-23-2008, 10:41 PM
After i install it .... and try to upload animated photo ... i see the plugins put the watermark on it but the photo become not animated and stop from work
Im working with the GD imaging library for PHP and it does not support animated GIFS. I might look into adding support for animated GIFs myself in the future but that will not be until after I work on getting the other features I want done.
I upgrade it, and work grate with massive uploads, but it shows me different Size of watermark.. you upload an albun it shows you great, the other shows it shorter.. then good.....
One good one smaller....
What could it be?
The only reason I could think of is that Your uploading images that are larger then the max size, VB will automatically resize images that are larger then the Max size and my code applies watermarks to the images that get uploaded before VB processes them. So Im guessing that my code is adding the watermark, then VB is shrinking the image after making it look like the watermark is of a different size.
7lanet
06-25-2008, 06:03 AM
in 3.7.2
Fatal error: Out of memory (allocated 22806528) (tried to allocate 8192 bytes) in /home/joker/public_html/vb/includes/functions_album.php on line 40
ErnieTheMilk
06-25-2008, 07:24 AM
I keep getting some error messages on upload :(
Warning: imagecreatefrompng(watermark.png) [function.imagecreatefrompng]: failed to open stream: No such file or directory in [path]/album.php(795) : eval()'d code on line 1
Fatal error: Call to undefined function: imagecreatefromfile() in ....... on line 6
I've uploaded everything as suggested...... Its a great mod, hope it can get sorted as I'd love to use it!
RLShare
06-25-2008, 02:25 PM
I keep getting some error messages on upload :(
Warning: imagecreatefrompng(watermark.png) [function.imagecreatefrompng]: failed to open stream: No such file or directory in [path]/album.php(795) : eval()'d code on line 1
Fatal error: Call to undefined function: imagecreatefromfile() in ....... on line 6
I've uploaded everything as suggested...... Its a great mod, hope it can get sorted as I'd love to use it!
You either messed up putting the functions in the functions_album.php file or you did not put the functions in that file.
in 3.7.2
Fatal error: Out of memory (allocated 22806528) (tried to allocate 8192 bytes) in /home/joker/public_html/vb/includes/functions_album.php on line 40
I have not upgraded to 3.7.2 yet, when I do I will look into this.
ErnieTheMilk
06-25-2008, 02:34 PM
You either messed up putting the functions in the functions_album.php file or you did not put the functions in that file.
Thats a great help, thanks. I know I'm stupid, but I do know how to copy & paste into a file that you actually name!
The only problem I had was where to put it as you said right after the vBulletin copyright notice. Well, I found one, right at the top of the file - I assume that's where you meant it to go :confused: :rolleyes:
RLShare
06-25-2008, 11:03 PM
Thats a great help, thanks. I know I'm stupid, but I do know how to copy & paste into a file that you actually name!
The only problem I had was where to put it as you said right after the vBulletin copyright notice. Well, I found one, right at the top of the file - I assume that's where you meant it to go :confused: :rolleyes:
This is an image someone posted earlier in this thread.. It shows how the top of the file functions_album.php should look after you paste the functions in.
http://img337.imageshack.us/img337/305/watermarkfunctionssf6.png
The top part is the copyright notice I mentioned pasting the code in after.
ErnieTheMilk
06-26-2008, 05:49 AM
That's where I originally posted it... and it didn't work
However, I have to say after perserverance, and popping it in different places, I managed to get it to work! The code did go further down the page tho!
Now if you could just sort out the watermark scale issue on differing sized photos :D
Megatr0n
06-26-2008, 10:50 PM
Can you please tell me how we can enable this main profile pictures?
Megatr0n
06-30-2008, 01:42 PM
That's where I originally posted it... and it didn't work
However, I have to say after perserverance, and popping it in different places, I managed to get it to work! The code did go further down the page tho!
Now if you could just sort out the watermark scale issue on differing sized photos :D
Yeah, I've been having that problem too.
goranbaxy
07-02-2008, 12:38 PM
works on last ver. of VB (3.7.2)
Megatr0n
07-02-2008, 06:42 PM
Still looking for a response...
Leo Brazil
07-04-2008, 11:00 AM
Installed after making my self a custom watermark.png
Does exactly was supposed too.
Keep the rocks rolling dude. :up:
Mr. Hoddz
07-04-2008, 06:52 PM
Can't see that it works dude. But if you could share the watermark.php file and give instructions on how to install it that would be good =]
Leo Brazil
07-04-2008, 07:54 PM
Mr. Hoddz
watermark is in fact a image, a png file and you can see a sample on the first post on screen shoots section.
To install this mod you will need to edit your functions_album.php that is on includes folder as described, up load this edited file to your ftp and after that install the plug in https://vborg.vbsupport.ru/attachment.php?attachmentid=82789&d=1214140995 that's in the first post.
Just a tip, this must me installed as a plug in not as a product.
I made my self a png file using photoshop, that in fact it's just my site name in a clear background. I used the same resulotion of the watermark sample here to see how it goes and it was good enough. This watermake.png must be up-loaded to your forum root.
That's just what I did, 5 minutes and work great.
Last thing. This will just work on your albums not in regular images or files you place in your forums. If you already has users with tons of pictures the watermark will be added just in photos up-load after you install this mod, there won't be any effect on old images.
DieselMinded
07-05-2008, 02:09 AM
i wonder if vBulletin is planing on implementing this ? i hate php edits come upgrade time , I would like all the images on my site to be water marked but only after they are downloaded
blogcrash
07-05-2008, 02:47 AM
Works like a charm.
Thanks. This is a great mod
zigojacko
07-05-2008, 08:57 PM
When will the below be implemented?
Planned changes:
1. Allow the url of the watermark image to be changed via admincp
2. Allow location of where the watermark image is placed to be changed via admincp
zigojacko
07-05-2008, 08:58 PM
I have followed all the steps accurately and a watermark is not being placed on my uploaded album images :(
7lanet
07-06-2008, 06:14 PM
Is it possible to print the watermark in center of the pic
zigojacko
07-08-2008, 10:50 AM
I have got this working now. Great mod. Many thanks. :)
Megatr0n
07-11-2008, 07:10 PM
Is this mod going to be updated or not?
Jase2
07-11-2008, 07:19 PM
Suggestion: Have an option for users when uploading to watermark the image. If not selected, no watermark image is used. :D
rolloffhill
07-13-2008, 06:41 PM
Looking forward to this when it's completed. It would be nice if it could watermark existing album images.
-vissa
Yes this would be a useful addition...
RLShare
07-22-2008, 01:25 AM
The hack is going to get a complete overhaul. As it stands its just a simple hack I threw together in an hour. After reading through alot of the suggestions I realize that it needs to be completely rewritten to achieve alot of the features that should exist is such a hack. As I am tied up with alot of work lately it might take me a week or two to release a new version with new features and administration options..
psylenced
07-22-2008, 02:07 AM
Having it create it on the fly i think is the best option. It means it works on existing albums, plus whenever you change the watermark in the admin all pictures are automatically updated.
RLShare
07-22-2008, 02:38 AM
^thats exactly what I'll be doing, hence it will be re-written completely
karlm
07-22-2008, 03:00 AM
^thats exactly what I'll be doing, hence it will be re-written completelyExcellent. With the quotes in mind, I eagerly look forward to a rewritten release. Great job.
psylenced
07-22-2008, 03:05 AM
Fantastic :)
Megatr0n
07-23-2008, 11:19 AM
RLShare, would it be possible for the watermark to be REMOVED from a picture when the user is selecting it to be a backround picture? Many of my users don't like the watermarking showing on their profiles.
Plus, I also think a user should be given the option whether he/she wants to have their pictures watermarked because some do their own. However, still with a seperate option to watermark all pictures in one go?
rolloffhill
07-31-2008, 10:39 PM
I had to remove this plugin after upgrading to vb 3.7.2 pl1. It kept the images from loading to the server. Just an fyi..
flussmitteldj
08-01-2008, 09:19 AM
I need help!
Fatal error: Call to undefined function can_view_private_albums() in /www/htdocs/w009f45a/includes/class_profileblock.php on line 875
i need a Sample please !!
BatMs.com
08-02-2008, 07:17 PM
Hey RLShare nice mod... Installed exactly how you explained and works straight away... However I see you are re-making the mod... PLEASE oh please add the relative size watermark that has been suggested numerous times...
Suggestion For Re-Haul:
Allow of placing wm on images already created (done with the update counters...photopost have it....)
Is it possible to make the plugin somehow put the watermark on AFTER the image gets re-sized? As it is now it seems the WM gets placed befor the image gets re-sized...
Example of why (my watermark image is 150X30... on a 600X450 image that was originally taken off 5mp phone camera):
http://batms.com/forum-blog/picture.php?albumid=8&pictureid=44
RLShare
08-05-2008, 10:32 PM
As I said before I am rewriting this mod, It will watermark the images dynamically. So it will do it at the time the images are shown instead of when they are uploadedd. It should solve alot of problems, so if your having troubles with this version please be patient as I work out some bugs I have in the next version.
As far as the new version, just a word on its progress, I am having a little bit of trouble with one aspect of it. I have it working for images that are stored locally. But if the images are set to be stored in the database instead of locally on the server I am having some trouble. When I try to take the data from the blob it is only streaming in half of the data for the image and I cannot figure out why. As soon as I get this figured out I will release.
Also with this new version it will take alot of edits to one of VB's files because VB is sending the image data for album images directly to the users browser without anywhere to intercept the data before hand.
PGAmerica
08-08-2008, 05:19 PM
Works Perfectly. Thank you. However, it only works on pictures that are uploaded AFTER this is installed.
JohnnieOO
08-12-2008, 06:30 PM
Any update on this, very interested.
Johnnie
Leo Brazil
08-14-2008, 07:27 PM
I've been thinking in changing my album pictures storage from database (default on Vb) into the file system with direct access to thumbnails to save some queries at my board.
Question: Can I do that and still getting this working great ?
Nineaxis
08-18-2008, 09:57 PM
Looking forward to the new version. Great mod!
t.uzuner
08-22-2008, 06:58 AM
thanks friend installed
Good plugin, works perfectly.
Nineaxis
08-26-2008, 11:33 PM
Checking in for any updates. Thanks!
nightbloom
09-01-2008, 05:13 AM
I need help!
Fatal error: Call to undefined function can_view_private_albums() in /www/htdocs/w009f45a/includes/class_profileblock.php on line 875
i need a Sample please !!
Just download the functions_album.php again and put the code in. ^^ Your overwrote that file when you updated your forum to 3.7.3
laurens800
09-01-2008, 10:51 AM
Wow thanks works g000000000d,
only is it possible to make it for every images not only album?
i mean for every images that you upload to the site
Chris583
09-03-2008, 12:56 AM
I get the following error after install. VB Version 3.7.2
Fatal error: Call to undefined function imagecreatefromfile() in /home/......../public_html/album.php(808) : eval()'d code on line 6
xadoa
09-04-2008, 02:01 AM
hi,
how about profile picture? can it be done?
thanks
Barakat
09-05-2008, 12:12 AM
this version wont work on the 3.7.3 pl1 .....
laurens800
09-05-2008, 04:19 PM
it works only you got to reedit it because it deleted the file
nightbloom
09-05-2008, 04:24 PM
Unfortuantely, I had to uninstall this awsome hack. It's off the mark in such an important area. I love the hack but it puts the watermark on profile images. >=( No one wants the name of my site tiled on the BG of their profile and on my forum, a LOT of people use that feature. Please, PLEASE, PLEASE fix that so I can reup this hack!!!
Barakat
09-05-2008, 04:52 PM
its works again after i uninstall it and install it again ..........................
very happy for it thanks
Martell
09-06-2008, 02:32 PM
I get the following error after install. VB Version 3.7.3PL1
Fatal error: Call to undefined function: imagecreatefromfile() in /home/martell/xxxxxx/docs/album.php(811) : eval()'d code on line 6
Excuse me. The Forum has updated, but file has not edited.:)
Noticed that if a image is, lets say, 2000*2000pixels then the watermark get rather tiny, you cant see the watermark. Is there an easy way to fix this issue?
lovechandigarh
11-08-2008, 08:30 AM
Great. Working and Tested for 3.8.0 Beta as well...
See it working here: Love Chandigarh (http://www.lovechandigarh.com)
Megatr0n
11-08-2008, 11:20 AM
Is this hack ever going to be updated?
fun4all
11-10-2008, 11:13 AM
This hack not working when i have upload 2 or more images... waiting for updating...
just to let all know, it works just as describe on 3.8
I just uploaded 20 images all at once and they all got the watermark.
I have two questions that I hope someone can answer.
1: can this be made so it have one master watermark, but have it over ride per use album if they upload a logo at a set size?
2: Is there away to make the watermark X% of the image, this way if a small image is upload the watermark does not take it over?
Thank a lot
INSTALLED
Nice its working with 3.7.3 and 3.7.4
ymy
.
daydie
11-22-2008, 10:31 AM
is it possible to re-build all images so they get water marked also?
passwords
12-25-2008, 08:59 AM
not working ..
how to unistall it ?
Magnumutz
12-25-2008, 11:39 AM
@passwords: Delete the plugins and undo the file edit.
@RLShare: It would be great if a similar mod would be made to apply the watermark on attached images larger than x pixels by x pixels :)
sibcom
01-06-2009, 07:09 PM
damn . . didnt work. . what sgould i do to check it man ? please help (
all install correctly, no errors but when i'm aplodanig pics it show me nothing. . just clear picture.
AURFSCAN
01-19-2009, 07:41 AM
Seems to be working perfectly. I made my .png 250X40 75% trans
Leo Brazil
01-19-2009, 08:37 AM
It's working good for me on 3.8.0.
Installed on 3.7.2, works perfect, perhaps you should add a little spacing (eg. 5/10 pixels) from the right bottom corner :)
AURFSCAN
01-19-2009, 07:13 PM
Now , where to put this code to make forum images watermarked ??
Is it that simple? Hey I'm trying :confused::p
AURFSCAN
01-19-2009, 07:57 PM
Anyone using this ?
https://vborg.vbsupport.ru/showthread.php?t=141883&highlight=watermark&page=12
private_ale
01-19-2009, 08:53 PM
Installed
This works flawlessly.
Great work. :)
AURFSCAN
01-19-2009, 10:23 PM
For those that need to have forum attached images watermarked
this does the trick, just installed it
https://vborg.vbsupport.ru/showthread.php?t=141883&highlight=watermark&page=12
rob01
01-25-2009, 08:11 PM
do this work for 3.8?
Afrika
02-24-2009, 10:44 AM
Hi works on 3.8.1 fine
is it possible to add it to the attachment.php in root too?
gamerfu
03-10-2009, 12:34 PM
Could you make a AdminCP function to where you could exclude certain usergroups? :cool:
globalinsites
06-04-2009, 09:05 PM
Just tried this but get this error:
Fatal error: Call to undefined function: imagecreatefromfile() in /forums/album.php(811) : eval()'d code on line 6
uaepix
06-13-2009, 01:40 PM
Thank you very much, installed.
accludetuner
07-05-2009, 12:06 AM
installed and working on 3.8.3 :)
Leo Brazil
01-28-2010, 09:50 AM
Does anyone tried this one on 4.0 ?
beansbaxter
02-23-2010, 08:07 AM
This was on a forum running 3.7. I did an upgrade to the forum to 3.8, and have removed this particular plugin. User album images are no longer receiving the watermark. How do you remove the watermark from the user images that already had it applied?
farazfaraz
02-24-2010, 05:58 PM
not work!
songoibiza
05-26-2010, 05:26 PM
thanks! got otry
serra00
01-27-2011, 08:31 PM
I installed it and nothing happened
to do some modification?
where it appears the album?
do not see anything !!!!!!!!
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.