Quote:
Originally Posted by k6rikko
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. = )