vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 4.x Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=245)
-   -   Social Group and Album Enhancements - Watermark Generator (https://vborg.vbsupport.ru/showthread.php?t=263804)

Alibass 09-29-2012 05:54 PM

Quote:

Originally Posted by Disasterpiece (Post 2369484)
I don't support compability between other mods at this time.

Thanks...

OutlawPSD 11-18-2012 11:48 AM

Working fine here on 4.2.0

Forensic 12-10-2012 06:54 PM

Is there a way to exclude image types that are watermarked?
We have a resident photochop/gif funny guy and its watermarking his GIFs. The images are flattened and it only shows a gray box.

I'd like to exclude the filetype GIF from the watermark process.

Other that that, 4.2 PL2 and its working great.

Disasterpiece 12-12-2012 04:40 PM

Quote:

Originally Posted by Forensic (Post 2389844)
Is there a way to exclude image types that are watermarked?
We have a resident photochop/gif funny guy and its watermarking his GIFs. The images are flattened and it only shows a gray box.

I'd like to exclude the filetype GIF from the watermark process.

Other that that, 4.2 PL2 and its working great.

How should the program know when a watermark already exists?

furnival 12-15-2012 08:31 PM

Installed on VB 4.20 seems to be working straight out of the box for me. Many thanks!

I especially appreciate the min. image size to apply to feature.

ringnews24 12-15-2012 10:49 PM

Does this work along side Picture and Album Gallery https://vborg.vbsupport.ru/showthread.php?t=237931

Forensic 12-17-2012 06:04 PM

Quote:

Originally Posted by Disasterpiece (Post 2390272)
How should the program know when a watermark already exists?

Sorry, I guess I wasn't very clear. It has nothing to do with existing watermarks.

I just want to exclude any file with a .GIF extension from being watermarked.

k6rikko 12-19-2012 05:38 PM

Hi @all :) its a nice mod and it was working well some moths but now i have a stupid problem.

All attachments (forums, albums and however) shows the pictures only at max 50% , someones lil less someones lil more.

That means i looks like pictures want load complette anymore. But if i disbale this plugin the pictures are all working and displayed 100% . havent change something or installed new plugins, it stoped working from 1 day to another <.<

Anyone can help me or have experiences with this problem ? have many thanks :)


My board is VB 4.2.0 PL3

Serverstuff:

Server Type Linux
Web Server Apache v2.2.16 (cgi-fcgi)
PHP 5.3.3-7+squeeze14
PHP Max Post Size 8.00 MB
PHP Maximum Upload Size 2.00 MB
PHP Memory Limit None
MySQL Version 5.1.66-0+squeeze1
MySQL Packet Size 16.00 MB

Disasterpiece 12-24-2012 12:19 AM

I've heard of this problem but have not encountered it myself so far. I suspect some kind of output compression to be the problem since it modifies the file size and then the header file size field doesn't match anymore. Do you have any kind of gz compression active on your server or your forum?

patrick91 12-28-2012 12:57 PM

Installed it and it it not working for me right now! I run your testattachments.php and it gives me this awnser:incorrect id!

Some thumbs are showing others don't and all the big images are not working also.

I had this mod installed before on an old installation and then it's working fine installed it on new installation and it's not working. Can it have to do i imported my things with impex?

Thanks,
Patrick

ywwz 12-29-2012 01:18 PM

Great Mod. Working well on the latest version of Vbb4.2.0

patrick91 12-29-2012 01:21 PM

Quote:

Originally Posted by ywwz (Post 2393370)
Great Mod. Working well on the latest version of Vbb4.2.0

Yes and how!? Don't understand it at all i have run those test files from 1 to 100 and now the images are showing most of them even in the cms!:D But a lot of old ones don't! (looks like they don't even exist!) So will remove them by time.

So for now i'm very happy because now on all new images it will show and it works! Using vB4.2.0 PL3

THANKS

Is there a possibily to let this mod work with this: Import external images ?

Disasterpiece 12-29-2012 02:26 PM

Did your server configuratio change? There are two major image tools available for linux, which are GD(2) and Imagemagick. One of them both works, the other doesn't with the mod. You can find it in the vbulletin settings somewhere in the category General or Graphics or Server Settings. Which one do you use?

patrick91 12-29-2012 02:54 PM

Quote:

Originally Posted by Disasterpiece (Post 2393385)
Did your server configuratio change? There are two major image tools available for linux, which are GD(2) and Imagemagick. One of them both works, the other doesn't with the mod. You can find it in the vbulletin settings somewhere in the category General or Graphics or Server Settings. Which one do you use?

Me? GD.

Matriosh 01-22-2013 02:58 PM

Quote:

Originally Posted by k6rikko (Post 2391704)
Hi @all :) its a nice mod and it was working well some moths but now i have a stupid problem.

All attachments (forums, albums and however) shows the pictures only at max 50% , someones lil less someones lil more.

That means i looks like pictures want load complette anymore. But if i disbale this plugin the pictures are all working and displayed 100% . havent change something or installed new plugins, it stoped working from 1 day to another <.<

Anyone can help me or have experiences with this problem ? have many thanks :)


My board is VB 4.2.0 PL3

Serverstuff:

Server Type Linux
Web Server Apache v2.2.16 (cgi-fcgi)
PHP 5.3.3-7+squeeze14
PHP Max Post Size 8.00 MB
PHP Maximum Upload Size 2.00 MB
PHP Memory Limit None
MySQL Version 5.1.66-0+squeeze1
MySQL Packet Size 16.00 MB

Hello. I've got the same problem here. It persists because server is sending "Content-length" header with the real attachment size (not the watermarked one). I've tried to modify the product's plugin to fix this, but nothing happens, becase this header is sended before the hook called.
So, I just commented the "Content-length" header string in attachment.php:

Code:

header('Content-Length: ' . (($lastbyte + 1) - $startbyte));
And now it's works, but I think author should fix this problem in his product. Thx. = )

Alibass 01-22-2013 03:25 PM

Quote:

Originally Posted by Matriosh (Post 2398691)
Hello. I've got the same problem here. It persists because server is sending "Content-length" header with the real attachment size (not the watermarked one). I've tried to modify the product's plugin to fix this, but nothing happens, becase this header is sended before the hook called.
So, I just commented the "Content-length" header string in attachment.php:

Code:

header('Content-Length: ' . (($lastbyte + 1) - $startbyte));
And now it's works, but I think author should fix this problem in his product. Thx. = )

This mod is not supported and last update was about 19 months ago. I wouldn't look for an update, but your post is valuable to others with the same problem.

TerryMason 01-22-2013 06:23 PM

Quote:

Originally Posted by patrick91 (Post 2393372)
Yes and how!? Don't understand it at all i have run those test files from 1 to 100 and now the images are showing most of them even in the cms!:D But a lot of old ones don't! (looks like they don't even exist!) So will remove them by time.

So for now i'm very happy because now on all new images it will show and it works! Using vB4.2.0 PL3

I have the same issue on my 4.1.11 forum. The mod has been working great for months, and the watermark shows on all newly uploaded photos, but doesn't show on photos uploaded before the mod was installed.

It doesn't matter the type of image (png / jpg, etc). I can take an image that isn't showing a watermark, save it locally then reattach it and the watermark will show.

I love this mod and will continue to use it - I just wish I could get all my photos watermarked.

dizzynation 01-22-2013 07:38 PM

This would be a great mod for my forum. What are the chances of it working on 4.2?

Also is there an option to set certain opacity % for the watermark?

TerryMason - Have you tried running the General Update tool?

fxdigi-cash 01-22-2013 10:52 PM

I haven't tried this mod myself yet, but willing to give it a shot....

on the other hand, I tried this mod on my vb.4.2 pl3 : https://vborg.vbsupport.ru/showthread.php?p=2398684

I know it is for vb3.x but surprisingly works on vb4.2 pl3

cheers:)

dog-tag 02-11-2013 03:04 PM

Quote:

Originally Posted by Matriosh (Post 2398691)
Hello. I've got the same problem here. It persists because server is sending "Content-length" header with the real attachment size (not the watermarked one). I've tried to modify the product's plugin to fix this, but nothing happens, becase this header is sended before the hook called.
So, I just commented the "Content-length" header string in attachment.php:

Code:

header('Content-Length: ' . (($lastbyte + 1) - $startbyte));
And now it's works, but I think author should fix this problem in his product. Thx. = )

I tried this but it just broke all my attachments.

Can somebody share the correct way to comment out this line?

Edit - Alibass showed me this (MUCH APPRECIATED!!)

Code:

/ header('Content-Length: ' . (($lastbyte + 1) - $startbyte));

if that doesn't work then try this

<!-- header('Content-Length: ' . (($lastbyte + 1) - $startbyte)); -->

I also tested this watermarker also -
https://vborg.vbsupport.ru/showthread.php?p=2398684

And it works great, just an XML file with one minor edit, I'm using VB 4 PL3 if anyone finds this one doesn't work.

autoescala 03-08-2013 11:50 AM

I tried this mod on my vb.4.2 pl3 and don't work, dont load the images :(
Uninstalled.....

grafixonline 03-12-2013 03:27 PM

I also installed it on my vb 4.2 and the images would not load. Is there a fix?

Disasterpiece 03-13-2013 05:47 AM

Try changing the image plugin. GD or imagemagick, one should work, the other won't.

MZF-Onkel 04-30-2013 05:43 AM

Works mostly fine under vBulletin 4.2.0 Patch Level 3.

In some old images, the watermark will not be shown, but in all newly uploaded it works

We use GD, here are some more informations:

GD Support enabled
GD Version bundled (2.0.34 compatible)
FreeType Support enabled
FreeType Linkage with freetype
FreeType Version 2.2.1
GIF Read Support enabled
GIF Create Support enabled
JPEG Support enabled
libJPEG Version 6b
PNG Support enabled
libPNG Version 1.2.10
WBMP Support enabled
XPM Support enabled
libXpm Version 30411
XBM Support enabled

It's in my opinion the BEST MOD for using Watermark in Images.

Best regards
Onkel

autoescala 04-30-2013 07:00 AM

Dear Onkel,

When u install it, the watermark works for u in admin panel preview section ???

I my case I see the watermark, and I can test with the text option of watermark, but If I try use watermark image dont do nothing.

Best Regards

MZF-Onkel 05-14-2013 07:00 AM

we tested it with the TEST Image, this works fine.

In the beginning we have some problems with the Images, they don't loaded.

I've installed an actually GD Version on the Server an now it works fine.

The problem that some old pictures have no watermark persists, unfortunately.
I don't know why.

Have you check your cache directory?
Have you installed some other Mods?

Best regards from Berlin

Disasterpiece 05-14-2013 09:21 AM

I have no solution for the missing watermarks on older images, but can you use a different browser and checks if its still the same? Maybe your browser just cached old images.

Or try to move your attachments between database and filesystem once so they get reprocessed. Maybe it starts working then.

furnival 06-23-2013 04:23 AM

I am yet another user of this mod who would appreciate the option to stop it from watermarking images attached to posts in certain forums. Please consider this feature for the next release!

Also please consider moving the admin cp options to the standard position along with all the other VB plugin options, under the normal settings link. It seems unnecessary for this to have its own seperate menu.

Disasterpiece 06-24-2013 03:48 PM

Quote:

Originally Posted by furnival (Post 2429922)
I am yet another user of this mod who would appreciate the option to stop it from watermarking images attached to posts in certain forums. Please consider this feature for the next release!

This is already on the to-do list for the next update.

Quote:

Originally Posted by furnival (Post 2429922)
Also please consider moving the admin cp options to the standard position along with all the other VB plugin options, under the normal settings link. It seems unnecessary for this to have its own seperate menu.

The usual settings page is not as flexible as a custom admin menu, but I'll see what I can do to put it all in one place.

Stefan118 08-23-2013 08:10 PM

The only issue i have with this SUPER mod is that it doesn't clear the cache after X seconds?
or is it minutes or days?

I hope it is seconds, just as about everything in vB.
If not, please do not laugh :)

I have set it to 86400 seconds, that should be 24 hours...
The cache is now 5 days old since i manualy cleared it.

Wajow-community 10-13-2013 11:40 AM

Doesn't work for me

Wajow-community 11-09-2013 04:31 PM

update for vb 4.2.x?

MZF-Onkel 12-06-2013 03:55 PM

works fine with 4.2.2

Alibass 01-14-2014 06:11 PM

**Installed**

Running 4.2.2 here with attachments in file storage system. I had to input cache directory manually in my database. Other than that 'it works as advertised. :):up:

Thanks

mkkak 03-21-2014 08:57 PM

Quote:

Originally Posted by Stefan118 (Post 2440567)
The only issue i have with this SUPER mod is that it doesn't clear the cache after X seconds?
or is it minutes or days?

I hope it is seconds, just as about everything in vB.
If not, please do not laugh :)

I have set it to 86400 seconds, that should be 24 hours...
The cache is now 5 days old since i manualy cleared it.

The Same Problem

mkkak 03-21-2014 08:58 PM

Quote:

Originally Posted by Reed_HCT (Post 2314586)
The scheduled task for cache pruning does not work for me.

Cache liftime is set to 86400 (1 day) and lru table size is set to 100.
The task is scheduled at 9 am.
I'm running vbulletin 4.1.11

When I look into the cache dir I find all the files created since the last manual cache prune, while I suppose only to see files created from 9 am of yesterday, and no more than 100 files.

The Same Problem

Bernard4366 10-07-2015 02:06 AM

Is the developer still monitoring this thread?

friendlymela 10-07-2015 06:30 AM

very interesting

ArcadeSyndicate 10-07-2015 09:20 AM

use this since years, works perfect for attachments in 4.2.2 :up:

Disasterpiece 10-09-2015 12:13 PM

Quote:

Originally Posted by Bernard4366 (Post 2556477)
Is the developer still monitoring this thread?

monitoring yes, but support for my addons is limited.


All times are GMT. The time now is 08:06 AM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01438 seconds
  • Memory Usage 1,836KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (4)bbcode_code_printable
  • (14)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (3)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (40)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete