Log in

View Full Version : Wide image automatic resize for html and vB tags in posts - fixes template problems


Steve St.Lauren
07-28-2004, 10:00 PM
Having trouble with large images in [img] or <img src> tags in your posts causing your templates to go too wide causing a horizontal scroll bar for all posts? I have many users that attach large images to their posts either through vB img or html img src tags. In vB2 it wasn't that much of an issue because it only caused their post to go wide causing a horizontal scroll bar. In vB3 it causes all the posts on that thread to go to that width.

This hack uses the img src width="xx" tag to resize the picture to whatever max size you wish. It also adds a link to the full size image in it's original location and retains any extra formatting the user puts in the tag. In addition it checks to see if the picture actually exists and if not show "Image link is broken" where the picture would have been. Please click install if you install it and please give feedback so I can go full release with it if it's bug free.

Updated on 07/30/2004 - R0.9
Updated on 08/06/2004 - R1.0 - Identical to R.9, no need to upgrade just changing to full release from beta
Updated on 08/10/2004 - R1.1 - Added max_imgsize to the 2nd section of code (and removed global max_imgsize line from both), some users had problems with the code grabbing the max_imgsize from the first section - this fixes that.
Updated on 09/09/2004 - R1.2 - fixed problem with duplicating the resize notice when using wysiwyg editor

Bryan Ex
07-29-2004, 06:43 AM
Sounds perfect! I'll get it added to my board later today to try it out.

Aurous
07-29-2004, 07:36 AM
Well written code, but pages load really slow! Not good for a big site.

Heres what Ive done, which works on client-side:



//replace (around line 1015) in includes/functions_bbcodeparse.php


return '<img src="' . $link . '" border="0" alt="" />';


//with


return '<img src="' . $link . '" alt="" OnLoad="if(this.width > 500) {this.width=500; this.style.cursor=\'hand\'; this.title=\'Click Here to open the image in a new window\';}" onClick="javascript:window.open(\'' . $link . '\',\'\',\'scrollbars=1,toolbar=0,resizable=1,menu bar=0,directories=0,status=0\')" border="0" />';




Thats it. It works fine, but if the images load from your cache, this fails! If theres something that can be done to cached images, this code will work perfectly!

Steve St.Lauren
07-29-2004, 08:01 AM
I guess I'll find out because our site hits peaks of 800 users online, over 1,000,000 hits per day, and 900,000 posts. It's the best option I've come up with. I just loaded a page with 30 posts on it and 17 large linked images and the page generated in 4.8 seconds with 10 queries. We have very few threads with that many pictures in them. Most of the time it's one or two pictures. A thread with 1 picture generated in .635 seconds with 9 queries.

Aurous
07-29-2004, 08:23 AM
Our site is on a xeon server with over 3.5 million hits per day, therefore anything that adds more server load will be a disaster for us at the moment. I'd like these image size checks to be done on client side and not server side. Wasting server resources on images is just not useful for our site. But anyways, I am sure a lot of other sites will find this hack useful. Good work and I hope to see more improvements in the future.

Aurous

nexialys
07-29-2004, 09:41 AM
what would be the most efficient is to have a third image generated, between the thumbnail size and the original... like in photopost or other galleries... so no need to resize the images each time they are displayed...

Intex
07-29-2004, 09:49 AM
Steve - looks good. Have it been tested with 3.0.1?

Steve St.Lauren
07-29-2004, 05:25 PM
No it hasn't been test on 3.0.1 because I'm running 3.03 but I don't see any reason why it wouldn't work. If you try it please report back. It would be easy to roll it back because there is only one line of original code that's deleted and I have that line of code in a comment in the new code.

nexialys - I agree that would be the most efficient but there are problems with doing that. If the user changed the image after the fact your "large thumbnail" wouldn't update. A user could use this to post a link to a picture that you wouldn't want to have on your site. The only way around that would be to store the entire image and the large thumbnail on your server but then your taking the entire bandwidth bill onto your hands for potentially very large images but it could be done.

Steve St.Lauren
07-30-2004, 07:20 AM
Well, I found a problem tonight. If the remote server that the image is on is down then fopen stalls when looking for the file. I'm looking for a workaround for that now. If anyone has any ideas help would be appreciated.

Natch
07-30-2004, 09:26 AM
There might be a solution in the code in the Links Database hack ...

NietzscheKid
07-30-2004, 12:40 PM
There might be a solution in the code in the Links Database hack ...
Damn. This is awesome. I am going to test it out. Thanks so much for this hack. :D

???`S?LV?R???`
07-30-2004, 02:00 PM
sounds great, im definitly gonna use this

Steve St.Lauren
07-30-2004, 06:02 PM
I just uploaded a new version that fixes the server down problem. It now checks to see if the server is up first. If it cannot connect to the server after 5 seconds it returns "Image server is down" so the users know why it took longer to generate the page. This was the best solution I could come up with for this. I also added a release # in the title and end of the hack lines of code to keep track of where it's at. Right now this is R0.9 - the original had no release number. Please update to the latest version.

Let me know how it's working for you too, please.

cinq
07-31-2004, 12:33 AM
Using R0.9 on a vb3.0.1 board with no problems ( did a couple of comestic changes, the font size, opening the oversized image in a new window, and the table for displaying image link broken or server down )

Good job Steve ! :D

alkatraz
07-31-2004, 02:15 AM
awesome hack!

???`S?LV?R???`
07-31-2004, 08:36 AM
anyone have a live demo setup? :)

TheComputerGuy
07-31-2004, 11:51 AM
<a href="http://www.runaked.com/forums/showpost.php?p=83416&postcount=76" target="_blank">Link for Live Demo</a>

You can use the demo I just posted!

I appreciate this a lot!

cinq
08-01-2004, 02:19 PM
Odd, but it seems to work on some images but not on others.
For eg, i set the width max at 480

An image that is 500x300 is resized but not a 800x600 linked image.

Any clues as to why this might occur ?

Steve St.Lauren
08-01-2004, 03:18 PM
Do you have a link for that 800x600 image so I can look at it? It would have to be a problem with the getimagesize command in php and that specific file. Perhaps it was done in a program that has something non-standard in the way the files are written? If you can get me the link to the file I'll take a look at it and see what I can figure out. So far it's working on all the images users have posted on our site.

SmartGnome
08-02-2004, 12:34 PM
Install was a piece of cake........ thanks for the hack and install is clicked.

Steve St.Lauren
08-02-2004, 06:32 PM
It looks like cinq's image problem is a bug in the version of php he's running. I linked to the same images on our site and they worked fine. We are running php v4.2.1 . Not sure yet what he's running.

Jolten
08-03-2004, 11:37 PM
I'm running PHP 4.2.3 and it only works on some images, not all of them.

Like here this thread (http://www.pixeladdiction.com/bb/showthread.php?t=852?do=markread)

But it did work on an image in this thread (http://www.pixeladdiction.com/bb/showthread.php?t=845?do=markread)

Steve St.Lauren
08-04-2004, 01:58 AM
Jolten - That picture is an attachment, it's not using vB IMG or html IMG SRC tags. You can limit the size of attachments through the vbulletin setting in your admin control panel. This hack deals with images that are linked from other servers via tags.

Jolten
08-04-2004, 02:01 AM
ahh. okay.. Sorry My bad. So the reduce image only works for directly linked images. Great! Thanks Steve.

vau7
08-04-2004, 04:59 AM
Okay, its really finde , i installed it.
I would like to do a change: How can i change it to target=_blank?

Thank you.

Steve St.Lauren
08-04-2004, 12:17 PM
You would add it into these lines:

in the first part:

$bbtag = '<table><tr><td align="center"><a href="' . $link . '"><img src="' . $link . '" width="'.$max_imgsize.'" border="0"'.substr($bbtag,$linkclose+1,strlen($bbtag)-$linkclose+1).'<br>Picture has been resized, click for full size pic</a></td></tr></table>';

would become:

$bbtag = '<table><tr><td align="center"><a href="' . $link . '" target="_blank"><img src="' . $link . '" width="'.$max_imgsize.'" border="0"'.substr($bbtag,$linkclose+1,strlen($bbtag)-$linkclose+1).'<br>Picture has been resized, click for full size pic</a></td></tr></table>';

and in the second section:

$biglink = '<table><tr><td align="center"><a href="' . $link . '" ><img src="' . $link . '" width="'.$max_imgsize.'" border="0" alt=""><br>Picture has been resized, click for full size pic</a></td></tr></table>';

would become:

$biglink = '<table><tr><td align="center"><a href="' . $link . '" target="_blank"><img src="' . $link . '" width="'.$max_imgsize.'" border="0" alt=""><br>Picture has been resized, click for full size pic</a></td></tr></table>';

vau7
08-04-2004, 04:33 PM
Thank you very much. Done.

EricR
08-10-2004, 12:53 AM
Excellent, I only had one snag. I had to add $max_imgsize=560; to the second part as well, otherwise it was setting my width to zero. Adding that to the second section fixed it for me. Thanks Steve!

Snatch
08-10-2004, 04:58 AM
I hve somme Error

Fatal error: Call to undefined function: handle_bbcode_img_match() in /var/www/web1/html/vb3/includes/functions_bbcodeparse.php(1085) : regexp code on line 1


do i have the comlete Line function handle_bbcode_img_match($link)
{
$link = strip_smilies(str_replace('\\"', '"', $link));

// remove double spaces -- fixes issues with wordwrap
$link = str_replace(' ', '', $link);
and replace ist with

// Image Size hack r1.0
// Modified by SS to resize large pics and place link to full size pic
// return '<img src="' . $link . '" border="0" alt="" />';

global $max_imgsize;

$image= ($link);

// Get host url name for fsockopen to see if server is reachable
$img_host=str_replace('http://','',$link);
$img_host=substr($img_host,0,strpos($img_host,'/'));

// Check is server is reachable and timeout in 5 seconds if not
if (@fclose(@fsockopen($img_host, 80, $fsockerr1, $fsockerr2, 5))) {
// Check if image is on server
if (@fclose(@fopen("$image", "r"))) {
// Check image size and if oversize, change link
$img_width = getimagesize($link);
if ($img_width[0] > $max_imgsize) {
$biglink = '<table><tr><td align="center"><a href="' . $link . '" ><img src="'
. $link . '" width="'.$max_imgsize.'" border="0" alt=""><br>Picture has been resized, click for full size pic</a></td></tr></table>';
return $biglink;
}
else {
return '<img src="' . $link . '" border="0" alt="" />';
}
}
else {
// Image not found
return '<table border="1" cellpadding="2"><tr><td><FONT color="#FF0000">Image link is broken</font></td></tr></table>';
}
}
else {
// Server is down
return '<table border="1" cellpadding="2"><tr><td><FONT color="#FF0000">Image server is down</font></td></tr></table>';
}

// End Image Size hack r1.0
If I do this i become this error

Steve St.Lauren
08-10-2004, 05:42 AM
Only replace the return line with that code - not all the lines you've shown. It is the very next line after those that you are replacing. I have that line commented out in the beginning of the hack so that you can roll back to it if you want to down the road. This is the line:

return '<img src="' . $link . '" border="0" alt="" />';

I've just updated this, btw - please use the new code. I only changed 3 lines due to problem a couple people had.

Snatch
08-10-2004, 06:22 AM
now it work fine. Big ThX !

But one more question.

If i chane the settings Max_Size to 800 all Pic over 800 are resize zu 800.
But i want that all Pic with a size over 800 resize to 560. Is there a way to do this ?

Steve St.Lauren
08-10-2004, 06:32 AM
Sure, in the hack text file on line 74 you would replace this:

. $link . '" width="'.$max_imgsize.'" border="0"'.substr($bbtag,$linkclose+1,strlen($bbtag)-$linkclose+1).'<br>Picture has been resized, click for full size pic</a></td></tr></table>';

with:

. $link . '" width="560" border="0"'.substr($bbtag,$linkclose+1,strlen($bbtag)-$linkclose+1).'<br>Picture has been resized, click for full size pic</a></td></tr></table>';

and on line 149 replace this:

. $link . '" width="'.$max_imgsize.'" border="0" alt=""><br>Picture has been resized, click for full size pic</a></td></tr></table>';

with:

. $link . '" width="560" border="0" alt=""><br>Picture has been resized, click for full size pic</a></td></tr></table>';

Snatch
08-10-2004, 06:46 AM
O.K. Big Thx for help !!!

This hack is great but it works sometimes slowly.
Is there a way to make it faster ?

On some Pics i wait over 12 sec. an than open the thread.

Snatch
08-10-2004, 07:08 AM
One mor problem.

If a user post a thread with this Code

[.URL=http://members.lycos.co.uk/ccgts01/Jessica%20Alba/001.html][.img]http://members.lycos.co.uk/ccgts01/Jessica%20Alba/001.jpeg[./img][./URL] an the image that link to the Page from this Member is bigger as the size i have determined thats a problem. The Hack resize the Image an shows ist smaler.
http://pics.celebritymarkt.de/images/privat/misc/1.jpg
But if I click on the Image i dont brows to the URL :( separate it appears nur das Bild in his real size.http://pics.celebritymarkt.de/images/privat/misc/2.jpg
But normally I should brows to his Page and not to the realsize image.
http://pics.celebritymarkt.de/images/privat/misc/3.jpg

I hope you understand, my english is not the best.

here some Pics.

Steve St.Lauren
08-10-2004, 03:54 PM
I see what you mean but I'm not sure I'll be able to come up with a fix. If you point at it the status bar shows the url given in the url link like it should but once you click on it goes to the large image size. There are two a href statements - one is the url link and sits outside a table and the 2nd is inside the table and is generated by the hack. If anyone has a solution please let me know.

As to the speed of it there really isn't anything that can be done for that. I've never had a single picture take anywhere near that amount of time. The more pictures on a page the longer it's going to take. Up towards the top of this thread there's a javascript that does this on the client side which wouldn't have the delay. But it doesn't work if the page is loaded out of the users cache. If the server is down that an image is linked to there will be a 5 second delay with this too - do you have an image like that on your page?

Merjawy
08-11-2004, 08:49 AM
Great hack.. installed on vb3.0.3 ... thanks

venomx
09-06-2004, 02:54 AM
Once the URL/IMG thing is fixed I am installing this! :)

SVTBlackLight01
09-06-2004, 03:51 PM
Thanks for this hack!! I needed this! :up:

One small problem I had was that the text link under the image was being duplicated when editing a post with the WYSIWYG editor. So if you edited the post once there would be two text links, edit it again and there are three links, etc. To solve this for now, I just removed the links from the code so only the reduced size image will link. Any idea what would cause this?

cinq
09-07-2004, 12:44 AM
I still cannot get this working right ( even with the latest version of this hack ).

TruckMuddr
09-08-2004, 06:37 AM
ok, found somewhat of an error. if a user goes in and edits their post. it adds another "Picture has been resized, click for full size pic" Link and if you preview it and changes something in the post, it does it again.

Is there anyway of fixing this??????

Steve St.Lauren
09-08-2004, 04:33 PM
I'll work on this as soon as I get a chance. I haven't been using the WYSIWYG editor which is why I didn't see this.

TruckMuddr
09-08-2004, 05:10 PM
allright, I'll await your word.

QATAR SPEED
09-09-2004, 03:19 PM
*bump*

Steve St.Lauren
09-09-2004, 05:15 PM
Updated the first post with R1.2 which fixes the wysiwyg problem. In the wysiwyg editor the image will be shown full size without the resized image line below it. That was the best solution I could come up with at this time.

Please click install if you use this hack and let me know how this version works for you.

SVTBlackLight01
09-09-2004, 10:03 PM
That's the same solution I came up with. I think I may try to use a small image to replace the text so users will know they can click on it for a larger image.

SVTBlackLight01
09-09-2004, 10:48 PM
Here is how it turned out.

http://www.modernengineuity.com/forums/showthread.php?t=31

Edit: I just discovered it does the same thing with an image.

TruckMuddr
09-10-2004, 06:06 AM
ok, I tried installing the upgrade and got this error.

Parse error: parse error, unexpected $ in /home/hpisavag/public_html/forum/includes/functions_bbcodeparse.php on line 1734

So I tried it on the file that I got from the VB zip that didn't have v1.1 on it and still gettin the same error.

TruckMuddr
09-10-2004, 06:14 AM
which 1734 is my last line.

Steve St.Lauren
09-10-2004, 06:14 AM
What do you have on line 1734 in that file? My functions_bbcodeparse.php ends at line 1729.

TruckMuddr
09-10-2004, 06:19 AM
mine end at 1734 with ?> and no spaces after it.

Steve St.Lauren
09-10-2004, 06:34 AM
I had an error in one of the edits that duplicated a few lines. I've fixed it in the file.

QATAR SPEED
09-12-2004, 10:32 AM
YOU MADE MY DAY :up: Thanks

This Hack should be a Stander hack on any coming VB vir

and it would be nice if there an option on the Admin CP to control the size of the img.

one more thing ..

how can i make the img open in a new window?

*INSTALL*

Steve St.Lauren
09-13-2004, 01:42 AM
how can i make the img open in a new window?

Look back earlier in this thread where a guy asked how to make it target="_blank" - the instructions I left after that will do just what you are looking for.

QATAR SPEED
09-14-2004, 08:23 AM
done, thanks

ntwrkguy
09-14-2004, 10:17 PM
I just installed this as per the attachment and now I'm getting

Warning: Missing argument 2 for handle_bbcode_img_match() in /usr/home/ntwrkguy/public_html/motormanforum/includes/functions_bbcodeparse.php on line 1116


Line 1116 reads function handle_bbcode_img_match($link, $iswysiwyg) as part of the larger mod which requires us to put in
// Image size hack R1.2
// Modified by SS
// function handle_bbcode_img_match($link)
function handle_bbcode_img_match($link, $iswysiwyg)
//

Help?

Steve St.Lauren
09-15-2004, 02:34 AM
You missed doing the part of the hack on lines 153-163 in the hack:

In the same file look for this line (around line 1101 after the above change is made):

$bbcode = preg_replace('#\\s*(https?://([^<>*"' . iif(!$vboptions['allowdynimg'], '?&') . ']+|[a-z0-9/\\._\- !]+))\[/img\]#iUe', "handle_bbcode_img_match('\\1')", $bbcode);

replace with:

// Image size hack R1.2
// Modified by SS
// $bbcode = preg_replace('#\[img\]\s*(https?://([^<>*"' . iif(!$vboptions['allowdynimg'], '?&') . ']+|[a-z0-9/\\._\- !]+))\[/img\]#iUe', "handle_bbcode_img_match('\\1')", $bbcode);
$bbcode = preg_replace('#\[img\]\s*(https?://([^<>*"' . iif(!$vboptions['allowdynimg'], '?&') . ']+|[a-z0-9/\\._\- !]+))\[/img\]#iUe', "handle_bbcode_img_match('\\1'[i],$iswysiwyg)", $bbcode);
//


That's the only place that handle_bbcode_img_match is called from. I italicized and bolded the part of that line that is added.

HaloImpulse
09-17-2004, 06:42 AM
Parse error: parse error, unexpected $ in /home/haloimp/public_html/includes/functions_bbcodeparse.php on line 1738

linke 1738 is ?>

wtf?

Steve St.Lauren
09-17-2004, 04:39 PM
Check over the hack - you missed something. Specifically look at the lines that start with "function handle_bbcode_img" and "function handle_bbcode_img_match". If you look in the hack directions you are supposed to replace those lines with the lines in the hack. You probably have those lines duplicated - a couple of other people have done that as well. I had an error in the hack instructions that were there for about 6 hours when I first put up this version so if you downloaded it when I first put this version up download it again. If you can't figure it out let me know and I'll PM you my email address so you can send me your functions_bbcodeparse.php file and I'll figure out what's wrong.

HaloImpulse
09-18-2004, 01:19 AM
yes i did. I fixed it. But ive come accross a new problem. If a image is thats on the same server is posted on the forums, it says its a broken link. For example, my site: haloimpulse.com

my sig is http://haloimpulse.com/aerotest/aerosig.jpg

however, it says its broken on the forums. But when i host it on my other server, it works fine (http://asylum-designs.com/aero/aerosig.jpg)

Steve St.Lauren
09-18-2004, 05:12 AM
yes i did. I fixed it. But ive come accross a new problem. If a image is thats on the same server is posted on the forums, it says its a broken link. For example, my site: haloimpulse.com

my sig is http://haloimpulse.com/aerotest/aerosig.jpg

however, it says its broken on the forums. But when i host it on my other server, it works fine (http://asylum-designs.com/aero/aerosig.jpg)
My guess would be that it has something to do with a firewall setting on that server. On the site I run users link to pictures on that server all the time and they work no problem. Try this - replace these lines:

// Image not found
$bbtag='<table border="1" cellpadding="2" id="image_found"><tr><td><FONT color="#FF0000">Image link is broken</font></td></tr></table>';
$image_found=false;

with

// Image not found
$bbtag='<table border="1" cellpadding="2" id="image_found"><tr><td><FONT color="#FF0000">'. $link .'</font></td></tr></table>';
$image_found=false;

and these lines:

// Image not found
return '<table border="1" cellpadding="2"><tr><td><FONT color="#FF0000">Image link is broken</font></td></tr></table>';

with:

// Image not found
return '<table border="1" cellpadding="2"><tr><td><FONT color="#FF0000">'. $link .'</font></td></tr></table>';

That will display the link it's trying to go instead of the "broken link" message. Report back with what that says (in case it's different than http://haloimpulse.com/aerotest/aerosig.jpg ).

HaloImpulse
09-18-2004, 04:18 PM
Parse error: parse error, unexpected '/' in /home/haloimp/public_html/includes/functions_bbcodeparse.php on line 1148 :-/

Steve St.Lauren
09-20-2004, 12:08 AM
Parse error: parse error, unexpected '/' in /home/haloimp/public_html/includes/functions_bbcodeparse.php on line 1148 :-/

Sent you a private message.

HaloImpulse
09-20-2004, 11:42 PM
Sent you a private message.
!!! WURD!

* HaloImpulse has a PM!

HaloImpulse
09-20-2004, 11:43 PM
!!! WURD!

* HaloImpulse has a PM!
wtf?? /me works?? Where can i get the me hack?

ForYou
09-23-2004, 07:41 AM
Hello ,

There is Error :( please help

Parse error: parse error in /home/virtual/site4/www/html/montada/includes/functions_bbcodeparse.php on line 1685

Fatal error: Call to undefined function: handle_bbcode_img() in /home/virtual/site4/www/html/montada/includes/functions_bbcodeparse.php on line 640

please help what can i do ?

Regards

Steve St.Lauren
09-23-2004, 08:03 AM
Hello ,

There is Error :( please help

Parse error: parse error in /home/virtual/site4/www/html/montada/includes/functions_bbcodeparse.php on line 1685

Fatal error: Call to undefined function: handle_bbcode_img() in /home/virtual/site4/www/html/montada/includes/functions_bbcodeparse.php on line 640

please help what can i do ?

Regards
You made a mistake in the hack file from lines 141-151:

In the same file look for this line (around line 1088 after the above change is made):

function handle_bbcode_img($bbcode, $dobbimagecode)

replace with:

// Image size hack R1.2
// Modified by SS
// function handle_bbcode_img($bbcode, $dobbimagecode)
function handle_bbcode_img($bbcode, $dobbimagecode, $iswysiwyg)
//


Check those lines out - you have something wrong there.

ForYou
09-23-2004, 08:23 AM
Sir,

Please Let me what is the wrong in the the file ,

Regards

ForYou
09-23-2004, 08:28 AM
Sir,

Please Let me what is the wrong in the the file ,

Regards
Sir ,

there is a new error like this ,


Warning: getimagesize(): stream does not support seeking in /home/virtual/site4/fst/var/www/html/montada/includes/functions_bbcodeparse.php on line 1140

Warning: getimagesize(): stream does not support seeking in /home/virtual/site4/fst/var/www/html/montada/includes/functions_bbcodeparse.php on line 1140

what is the problems

Regards

Steve St.Lauren
09-23-2004, 08:44 AM
On line 1122 in your file you deleted several lines from the original code. Starting on line 1122 you should have:

$link = strip_smilies(str_replace('\\"', '"', $link));

// remove double spaces -- fixes issues with wordwrap
$link = str_replace(' ', '', $link);

and then on with the hack (which you have in your file):

// Image Size hack r1.2
// Modified by SS to resize large pics and place link to full size pic
// return '<img src="' . $link . '" border="0" alt="" />';


I'm not sure if that's what is causing your error or not but it's the only thing I can see wrong in your file. BTW, I believe that they do not want people posting any of the vB files in their entirety on here so you should probably delete that attachment. I have it saved on my machine to give you further help.

ForYou
09-23-2004, 08:54 AM
On line 1122 in your file you deleted several lines from the original code. Starting on line 1122 you should have:



and then on with the hack (which you have in your file):



I'm not sure if that's what is causing your error or not but it's the only thing I can see wrong in your file. BTW, I believe that they do not want people posting any of the vB files in their entirety on here so you should probably delete that attachment. I have it saved on my machine to give you further help.
Sir ,

I was modify the file and uploade it but , there is a new error like this


Warning: getimagesize(): stream does not support seeking in /home/virtual/site4/fst/var/www/html/montada/includes/functions_bbcodeparse.php on line 1144

Warning: getimagesize(): stream does not support seeking in /home/virtual/site4/fst/var/www/html/montada/includes/functions_bbcodeparse.php on line 1144


regards

mr.gamesbay
09-23-2004, 09:13 AM
I dont know if u know this problem.
if in a thread are some dead images in it, to open this thread i need more then 2 minutes!?
I remove your code, then all work fine.
Is there a fix for this problem?

Steve St.Lauren
09-24-2004, 07:34 AM
ForYou - It looks like your problem is a bug in the version of PHP that your server is running. Try upgrading to a newer version of php if you have that option. If you do a search on yahoo on "Warning: getimagesize(): stream does not support seeking" you'll find a bunch of information on it.

mr.gamesbay - that is a problem with using getimagesize but I haven't found a better solution. If it's taking more than 2 minutes then you must have a LOT of pictures in that thread that are bad links. Timeouts should only happen if the server is unreachable - if the server is reachable and the files just aren't there that should go through fast. The timeout is set to 5 seconds to get a response from the remote server - if after 5 seconds there is no response then it moves on. So to have it taking 2 minutes you'd have to have ~20 pictures on that thread that are linked to a non-active server. There is some discussion at the beginning of this thread on how to do a resize using Javascript that solves this problem but that doesn't work if the pictures are loaded from the cache so IMO it isn't a good solution.

mr.gamesbay
09-24-2004, 07:54 AM
mr.gamesbay - that is a problem with using getimagesize but I haven't found a better solution. If it's taking more than 2 minutes then you must have a LOT of pictures in that thread that are bad links. Timeouts should only happen if the server is unreachable - if the server is reachable and the files just aren't there that should go through fast. The timeout is set to 5 seconds to get a response from the remote server - if after 5 seconds there is no response then it moves on. So to have it taking 2 minutes you'd have to have ~20 pictures on that thread that are linked to a non-active server. There is some discussion at the beginning of this thread on how to do a resize using Javascript that solves this problem but that doesn't work if the pictures are loaded from the cache so IMO it isn't a good solution.

There was only 3 or 4 dead Links in it, not more.
First i think, it was an error with my webspace or my vB, but after i removed the code, the threads opend normal.

The code from Auros i used too, is imo faster, but it have a small bug if i use the WYSIWYG-Editor and i dont know how to remove the bug.


PS: Sorry about my bad English

dis.pater
09-28-2004, 10:42 PM
Well written code, but pages load really slow! Not good for a big site.

Heres what Ive done, which works on client-side:



//replace (around line 1015) in includes/functions_bbcodeparse.php


return '<img src="' . $link . '" border="0" alt="" />';


//with


return '<img src="' . $link . '" border="0" alt="" OnLoad="if(this.width > 500) {this.width=500; this.style.cursor=\'hand\'; this.title=\'Click Here to open the image in a new window\';}" onClick="javascript:window.open(\'' . $link . '\',\'\',\'scrollbars=1,toolbar=0,resizable=1,menu bar=0,directories=0,status=0\')" />';




Thats it. It works fine, but if the images load from your cache, this fails! If theres something that can be done to cached images, this code will work perfectly!
I use this:

/*
LEAVE THIS NOTICE IN PLACE
FI Image Resizing script - Daz - ForumImages.com
For use and distribution terms please check;
http://www.forumimages.com/terms.php

Modifications by Politics.be
-- Onclick handler is automatically handled bij JavaScript now, compatible with IE and Mozilla
*/
var imgResizeMsg = 'Click to view the image';
var imgWidthMax = 600;
var imgWidthSizeTo = 400;
var imgClassName = 'imglimit';
//window.onload = fiImageResize;

function fiImageResize() {
if (document.images.length) {
var docImg = document.images;
for ( var i = 0 ; i < docImg.length ; i++)
if (docImg[i].width > imgWidthMax && docImg[i].id != 'forumlogo') {
docImg[i].width = imgWidthSizeTo;
docImg[i].title = imgResizeMsg;
docImg[i].className = imgClassName;
docImg[i].onclick = fiImageWinOpen;
}
}
}

function fiImageWinOpen(e) {
if( window.event )
window.open(window.event.srcElement.src,'PoliticsV iewer','menubar=no, toolbar=no, location=no, directories=no, fullscreen=no, titlebar=yes, hotkeys=no, status=no, scrollbars=yes, resizable=yes');
else
window.open(e.target.src,'PoliticsViewer','menubar =no, toolbar=no, location=no, directories=no, fullscreen=no, titlebar=yes, hotkeys=no, status=no, scrollbars=yes, resizable=yes');
}

This works with cached images too, plus it saves bandwidth if you have a lot of images since it will only be downloaded once if you put it in a separate file and "include" it with src="" in your script tag.
All you have to do is add fiImageResize() to the onLoad handler of your body tag and it will resize all your images.

If you have images that shouldn't be resized, you have to give them an id and them on the following line:

if (docImg[i].width > imgWidthMax && docImg[i].id != 'forumlogo')


As style for the resized images I use:

.imglimit {
cursor: pointer;
border: dotted 1px black;
}


It might be usefull to others who don't want to waste load by resizing userposted images.

mr.gamesbay
09-28-2004, 11:21 PM
This sounds good, but i dont realy know how to use ist.

This part i must put in the CSS of the Style?! Right?
.imglimit {
cursor: pointer;
border: dotted 1px black;
}

But where i have to put this part?
/*
LEAVE THIS NOTICE IN PLACE
FI Image Resizing script - Daz - ForumImages.com
For use and distribution terms please check;
http://www.forumimages.com/terms.php

Modifications by Politics.be
-- Onclick handler is automatically handled bij JavaScript now, compatible with IE and Mozilla
*/
var imgResizeMsg = 'Click to view the image';
var imgWidthMax = 600;
var imgWidthSizeTo = 400;
var imgClassName = 'imglimit';
//window.onload = fiImageResize;

function fiImageResize() {
if (document.images.length) {
var docImg = document.images;
for ( var i = 0 ; i < docImg.length ; i++)
if (docImg[i].width > imgWidthMax && docImg[i].id != 'forumlogo') {
docImg[i].width = imgWidthSizeTo;
docImg[i].title = imgResizeMsg;
docImg[i].className = imgClassName;
docImg[i].onclick = fiImageWinOpen;
}
}
}

function fiImageWinOpen(e) {
if( window.event )
window.open(window.event.srcElement.src,'PoliticsV iewer','menubar=no, toolbar=no, location=no, directories=no, fullscreen=no, titlebar=yes, hotkeys=no, status=no, scrollbars=yes, resizable=yes');
else
window.open(e.target.src,'PoliticsViewer','menubar =no, toolbar=no, location=no, directories=no, fullscreen=no, titlebar=yes, hotkeys=no, status=no, scrollbars=yes, resizable=yes');
}

dis.pater
09-29-2004, 09:11 AM
This sounds good, but i dont realy know how to use ist.

This part i must put in the CSS of the Style?! Right?
.imglimit {
cursor: pointer;
border: dotted 1px black;
}

Correct :)


But where i have to put this part?

I placed it in a separate javascript file which I called resizeall.js and uploaded it to the clientscript directory of vB.
All you should do then is add this line at the bottom of headinclude (you find it under common templates in the template manager).

<script type="text/javascript" src="clientscript/resizeall.js"></script>


At last you should change the onload in the body tag of the showthread template.
On my board, with vB3.3 the body tag now looks like this

<body onload="$onload; fiImageResize()">

mr.gamesbay
09-29-2004, 11:02 AM
Thanks dis.pater! :)
Works PERFECT! :)

mr.gamesbay
09-30-2004, 07:39 AM
If you have images that shouldn't be resized, you have to give them an id and them on the following line:

if (docImg[i].width > imgWidthMax && docImg[i].id != 'forumlogo')




Can u me better explain this part ?
I have a pic. names (back_hi.gif) that shouldn't be resized.

dis.pater
09-30-2004, 03:52 PM
Can u me better explain this part ?
I have a pic. names (back_hi.gif) that shouldn't be resized.
First you should add an id to your img tag.
Suppose you have this in your template:

<img src="back_hi.gif" />

This you should change into (the nr1 could be anything offcourse)

<img src="back_hi.gif" id="nr1" />


Then you should change this line below (which is in the javascript file)

if (docImg[i].width > imgWidthMax && docImg[i].id != 'forumlogo')

into (nr1 or whatever id you have choosen

if (docImg[i].width > imgWidthMax && docImg[i].id != 'nr1')


If you have more than one image you don't want to resize all you got to do is change the line above by adding && docImg[i].id != 'the_image_id' after docImg[i].id != 'nr1'

edit:
Seems like vB is parsing vB tags inside the code tag :ermm:

johnnyb
10-03-2004, 08:44 PM
Warning: getimagesize(http://files.photojerk.com/matthieu/b1.jpg): could not make seekable - http://files.photojerk.com/matthieu/b1.jpg in /home/XXX/public_html/forums/includes/functions_bbcodeparse.php on line 1134

The whole page shows error such as this?

vBulletin Message is this:

Unable to add cookies, header already sent.
File: /home/blazini/public_html/forums/includes/functions_bbcodeparse.php
Line: 1134

johnnyb
10-03-2004, 11:35 PM
Bump!

Agent XY
10-10-2004, 10:20 AM
?hm, the attach in 1st posting are stable running? Or must I modify the code with answer of this thread??

.. on vB 3.0.3


(sorry for the bad english :))

johnnyb
10-10-2004, 06:16 PM
This script takes forever to load on my forum, is becoming a pain! Anyway of fixing this?

MrD
10-25-2004, 02:55 AM
Hi,



vBulletin Message is this:

Unable to add cookies, header already sent.
File: /home/blazini/public_html/forums/includes/functions_bbcodeparse.php
Line: 1134

i become the same error :(

EricR
10-25-2004, 04:27 PM
This script takes forever to load on my forum, is becoming a pain! Anyway of fixing this?
Ditto, I had to remove it :( For threads with many images it fell to a crawl, and often my browser would time out on it. I removed this hack and the speed is back, but I sure do miss the resizing. Large images just screw everything up.

Steve, any thoughts on how to make this more friendly with multiple images?

Yevgeny
11-01-2004, 01:18 PM
Works great for me. Tahnks

SVTBlackLight01
11-06-2004, 11:39 AM
Ditto, I had to remove it :( For threads with many images it fell to a crawl, and often my browser would time out on it. I removed this hack and the speed is back, but I sure do miss the resizing. Large images just screw everything up.

Steve, any thoughts on how to make this more friendly with multiple images?

Same here. Any follow up in this?

seraphex
12-02-2004, 04:03 AM
I've removed the hack because it slowed down the forums.. I then installed dis.pater's instead and it works great. Just a note for people with the inline moderation tools. I used this for the <body onload:

<body onload="$onload; inline_init($thread[threadid], 'post'); fiImageResize()">

Seems to have worked out ok :)

Nice work Dis.pater!

j_86
12-02-2004, 05:36 PM
I'm using the javascript version above. Any reason why this would cause my Post Reply (bottom) button to have the same dotted border when there is a post that has been resized?

Tradjick
12-03-2004, 12:04 PM
The server downloads the image, then resizes it, gives all of the images to the client and only then the html must been sent to the browser. That?s probably why it takes so long.
This will also probably timeout the spiders. :(

Tradjick
12-03-2004, 01:50 PM
Here?s the one I just found. It?s client side and very quick!

https://vborg.vbsupport.ru/showthread.php?t=68677

I thought i should inform some of the people that didn?t notice that hack.

Have a nice day.

dwh
12-13-2004, 08:10 PM
I went through a few pages but haven't seen this question. Apologies if someone asked this. I just want to turn all outside images into links rather than an inline display while leaving attached images to thumbnails (as it works now)

dwh
12-17-2004, 08:45 PM
I went through a few pages but haven't seen this question. Apologies if someone asked this. I just want to turn all outside images into links rather than an inline display while leaving attached images to thumbnails (as it works now)
Anyone have ideas?

Mechanical Mind
12-18-2004, 11:11 AM
Anyone have ideas?

This should be an option already available in vBulletin 3.0.3. You just disallow IMG in the affected forum and any images attempted to be posted will be a link.

dwh
12-18-2004, 03:20 PM
This should be an option already available in vBulletin 3.0.3. You just disallow IMG in the affected forum and any images attempted to be posted will be a link.
It doesn't seem to be an option. But I got a workaround http://www.vbulletin.com/forum/showthread.php?p=779810#post779810

SVTBlackLight01
12-18-2004, 10:50 PM
This should be an option already available in vBulletin 3.0.3. You just disallow IMG in the affected forum and any images attempted to be posted will be a link.

What would be nice would be to turn any image over a certain size into a link instead of resizing it.

Steve St.Lauren
12-19-2004, 04:32 PM
What would be nice would be to turn any image over a certain size into a link instead of resizing it.
That wouldn't be hard at all - this hack could be easily modified to do that. Just change lines 90 and 91 in the hack file from this:

$bbtag = '<table><tr><td align="center"><a href="' . $link . '"><img src="' . $link . '" width="'.$max_imgsize.'" border="0"'.substr($bbtag,$linkclose+1,strlen($bbtag)-$linkclose+1).'<br>Picture has been resized, click for full size pic</a></td></tr></table>';

to this:

$bbtag = '<table><tr><td align="center"><a href="' . $link . '">' . $link . '</a></td></tr></table>';

and lines 214 & 215 of the hack file from:

$biglink = '<table><tr><td align="center"><a href="' . $link . '" ><img src="' . $link . '" width="'.$max_imgsize.'" border="0" alt=""><br>Picture has been resized, click for full size pic</a></td></tr></table>';

to:

$biglink = '<table><tr><td align="center"><a href="' . $link . '" >' . $link . '</a></td></tr></table>';

That should do what you are looking for. If you want to add some text in there as well as the link address put it right after the > just before ' . $link

If you want to replace the link address with text remove the ' . $link . ' between the > and < and place whatever text you want there.

Gnappy
12-22-2004, 04:54 PM
this hack really rox, thx Steve!

* Gnappy install ^^



but i have a little question.. on my forums many ppl uses to upload images on forum, and for these images i added this tag, used to see this kind of pictures(with url dont finish with .jpg, .gif, .jpeg, etc..) i called this tag [card] (i think many other ppl here uses this tag) and it works like this:
<img src="{param}">
now, when i use [img] tag ur hack works nicely, but when i use the tag card for a forum uploaded images, the hack dont work. Its obviously that this hack is made just to be applicated to [img] tag, BUT can u tell me how can i use this nice hack to my [card] tags?

thx a lot for replies :o

HaloImpulse
12-22-2004, 07:25 PM
alright, I used this on my forums when we were hosted by a hosting company called EPGservers, but we recently rented a dedicated machine from http://servermatrix.com/, the 2.4 machine, and now this hack doesnt work. Any suggestions?

Steve St.Lauren
12-23-2004, 01:21 AM
alright, I used this on my forums when we were hosted by a hosting company called EPGservers, but we recently rented a dedicated machine from http://servermatrix.com/, the 2.4 machine, and now this hack doesnt work. Any suggestions?
What version of php are you running on that server? Some versions of php have trouble with the imagesize function.

HaloImpulse
12-24-2004, 05:42 PM
Apache version 1.3.33 (Unix)

PHP version 4.3.9

MySQL version 4.0.22-standard

Steve St.Lauren
12-27-2004, 03:11 PM
Apache version 1.3.33 (Unix)

PHP version 4.3.9

MySQL version 4.0.22-standard
I'm running Apache 1.3.29 and PHP version 4.3.6 and it's working fine here. Not sure what your problem is. Is it not resizing the pictures at all? Error message?

HaloImpulse
12-27-2004, 07:20 PM
Error message, something about T-Strings. I replaced the files with the originals so i forget what teh exact message was...

Steve St.Lauren
12-28-2004, 01:27 AM
Error message, something about T-Strings. I replaced the files with the originals so i forget what teh exact message was...
I'd need to know what that error message was but my guess would be that a mistake was made in installing the hack. Were you using the exact same files you were on the other server or did you start fresh? The php issue won't give an error message it just won't function correctly.

Steve St.Lauren
12-28-2004, 01:28 AM
this hack really rox, thx Steve!

* Gnappy install ^^



but i have a little question.. on my forums many ppl uses to upload images on forum, and for these images i added this tag, used to see this kind of pictures(with url dont finish with .jpg, .gif, .jpeg, etc..) i called this tag [card] (i think many other ppl here uses this tag) and it works like this:
<img src="{param}">
now, when i use [img] tag ur hack works nicely, but when i use the tag card for a forum uploaded images, the hack dont work. Its obviously that this hack is made just to be applicated to [img] tag, BUT can u tell me how can i use this nice hack to my [card] tags?

thx a lot for replies :o
I'll take a look at this when I get a chance. I'm recovering from working 90+ hrs a week for a few weeks and don't really feel like digging into code right now.

HaloImpulse
12-31-2004, 01:21 AM
I'd need to know what that error message was but my guess would be that a mistake was made in installing the hack. Were you using the exact same files you were on the other server or did you start fresh? The php issue won't give an error message it just won't function correctly.

yes, i used the same files. When that didnt work, i reinstalled the hack, and it still didnt work. Then to insure that another hack wasnt screwing wiht it, i installed vb all over again and tried it on a brand new installation. No workage. Im running 3.0.3, if thats any consolation

HaloImpulse
01-04-2005, 01:40 PM
were switching to a new more powerful server soon, so hopefully it will work after that

FWF
01-11-2005, 11:55 PM
ive got this installed, and i have a section where people post more then 1 image and its taking FOREVER for a page to load with all the images....any ideas ?

EricR
01-17-2005, 09:56 PM
ive got this installed, and i have a section where people post more then 1 image and its taking FOREVER for a page to load with all the images....any ideas ?
Go back to post #83 and start reading from there. Steve has a possible solution in post #97 but I haven't tried it yet. I removed the hack because of the slowdown with multiple images, but I may give his suggestion a try and see if it helps.

Gnappy
01-18-2005, 03:17 PM
I'll take a look at this when I get a chance. I'm recovering from working 90+ hrs a week for a few weeks and don't really feel like digging into code right now.

thx a lot for assistance, ill wait for ur reply.. ^^

rodriguez
01-19-2005, 09:47 PM
Fit perfectly. There is some display probleme if you are using The "Attachments Styles with Attachments in Events" but hey .. that only in Template ;)

Thanks u

BlasterT3
01-25-2005, 10:08 PM
flawless install on vb 3.0.6

thanks

alfata
02-02-2005, 05:04 AM
it works fine with me on 3.0.6

but i wonder is there a way to make the pic open in new window ,also adding alt var for the pic to give "Picture has been resized, click for full size pic" msg, it is better than shown below the pic....


many thax to the coder :D
*install

Steve St.Lauren
02-05-2005, 01:48 AM
it works fine with me on 3.0.6

but i wonder is there a way to make the pic open in new window ,also adding alt var for the pic to give "Picture has been resized, click for full size pic" msg, it is better than shown below the pic....


many thax to the coder :D
*install
The mod to change it to open in another window was near the beginning of this thread. Here it is again with your request of adding the "Picture has been resi"....... msg to the alt tag as well:

You would add it into these lines:

in the first part:

$bbtag = '<table><tr><td align="center"><a href="' . $link . '"><img src="' . $link . '" width="'.$max_imgsize.'" border="0"'.substr($bbtag,$linkclose+1,strlen($bbtag)-$linkclose+1).'<br>Picture has been resized, click for full size pic</a></td></tr></table>';

would become:

$bbtag = '<table><tr><td align="center"><a href="' . $link . '" target="_blank"><img src="' . $link . '" width="'.$max_imgsize.'" border="0"' alt="Picture has been resized, click for full size pic".substr($bbtag,$linkclose+1,strlen($bbtag)-$linkclose+1).'<br>Picture has been resized, click for full size pic</a></td></tr></table>';

and in the second section:

$biglink = '<table><tr><td align="center"><a href="' . $link . '" ><img src="' . $link . '" width="'.$max_imgsize.'" border="0" alt=""><br>Picture has been resized, click for full size pic</a></td></tr></table>';

would become:

$biglink = '<table><tr><td align="center"><a href="' . $link . '" target="_blank"><img src="' . $link . '" width="'.$max_imgsize.'" border="0" alt="Picture has been resized, click for full size pic"><br>Picture has been resized, click for full size pic</a></td></tr></table>';

If you want to remove the "Picture has been resiz".... text from below the pic just remove the

<br>Picture has been resize, click for full size pic

text out of both of those sections.

Reece D
03-01-2005, 10:29 AM
*installed* great hack cheers mate

AllJin.com
03-10-2005, 10:34 PM
Does this work for Sigs as well?

Scarab
03-22-2005, 08:52 AM
My thanks to you for this.
Now I don't have to worry about the idiots that can't read the forum rules for image restrictions. :banana:

AllenMead
03-23-2005, 09:11 PM
This is absolutely superb!!!! Clicks install

ThePimp
03-29-2005, 09:43 PM
Correct :)


I placed it in a separate javascript file which I called resizeall.js and uploaded it to the clientscript directory of vB.
All you should do then is add this line at the bottom of headinclude (you find it under common templates in the template manager).

<script type="text/javascript" src="clientscript/resizeall.js"></script>


At last you should change the onload in the body tag of the showthread template.
On my board, with vB3.3 the body tag now looks like this

<body onload="$onload; fiImageResize()">


Is there a way to get your image resize method to work on "threadreviewbits", in the "New Reply" page?

knetgummi
04-14-2005, 09:21 PM
thank u very much and *installed*

greetZ
knetgummi

twizted@dragonm
04-16-2005, 01:34 AM
Works like I expected.. but... a little to well... I dont want it to resize my signature images..... Is there anyway around this or set it to a diff max width for signature images?

AndyA
04-18-2005, 06:14 PM
Has anyone tested this on 3.0.7 ? I could do with a mod like this if it autosizes images and opens up full size image once clicked.

twizted@dragonm
04-18-2005, 06:23 PM
I am running it on 3.0.7 myself.... but ... I need it to not resize my signature images :(... No one out there know how to keep it from it?? please....

Razasharp
04-18-2005, 09:48 PM
Is there anyway to modify this hack so that if the image is too big the system simply does not allow the IMG tag but instead uses the URL tags?

That way the poster will in time, learn that large images are not acceptable. This works better than simply altering the image 'size' because the size of the image interms of bytes actually remains the same - and this is what we don't want, people on non-broadband connections having to wait ages for threads to load.

I was using a hack on phpbb that display an 'OOPS' image whenever an IMG was posted that was too big - the OOPS image was clickable to the actual image. The processing was done on the upload not on each 'view' so kept server load to a minuium.

Sorry if I've gone off topic a bit!

Deska
04-21-2005, 08:45 AM
is this work with attachment image also?

seg
05-02-2005, 02:24 AM
Great hack - does exactly what I need it to do!!! Running it on 3.0.7 - Thanks :D

twizted@dragonm
05-02-2005, 02:31 AM
Too bad support for this hack seems nill.....

I am still waiting on a reply about it not altering Signature images...

Jack Jones
05-04-2005, 01:31 PM
Takes an EXTREMELY long time to load any pages where this hack comes into effect. vB 3.0.7

BRC2
05-20-2005, 11:25 PM
Thanks for a great hack Steve!

I, like everyone else, experience the delay when remote images are resized. I would like to make a suggestion I found incorporated into similar hack for phpBB. The author assigned "ids" to remote images that were resized and stored the resize information in the database. By doing so, images only loaded slow the first time. Afterwards, the images would load at typical speeds because the orginal and new sizes were already stored in the database. If the table became bloated, it could simply be purged without effecting the linked images and the process would continue. I used this on a phpBB site and it made a dramatic impact on load times. I don't know if this can be incorporated into this hack, but if your interested here is a link to the MOD.....Limit Image Width (http://www.phpbb.com/phpBB/viewtopic.php?t=224522&postdays=0&postorder=asc&start=0)

Brian

theinz
05-21-2005, 12:25 PM
Steve,

This hack saved us a lot of trouble thanks so much!! It's working perfectly. I do have a question however. At the end of your install notes you say:

"That's it. Set the max_imagesize at the beginning of the each of the large edits and that will be your max image size."

Where can I set the max_imagesize?

JohnBee
06-22-2005, 11:43 AM
I installed this hack it worked nicely but for all our signatures that involved images
they were replaced with a message that said "Image link is broken"

any ideas what might cause this, is there a way to turn this off for signatures?

dansgts
06-22-2005, 10:42 PM
can this work with 3.0.7???
i followed the instructions exactly and it dosent do anything.

LambHyjoo
06-24-2005, 07:40 AM
Thanks for a great hack Steve!

I, like everyone else, experience the delay when remote images are resized. I would like to make a suggestion I found incorporated into similar hack for phpBB. The author assigned "ids" to remote images that were resized and stored the resize information in the database. By doing so, images only loaded slow the first time. Afterwards, the images would load at typical speeds because the orginal and new sizes were already stored in the database. If the table became bloated, it could simply be purged without effecting the linked images and the process would continue. I used this on a phpBB site and it made a dramatic impact on load times. I don't know if this can be incorporated into this hack, but if your interested here is a link to the MOD.....Limit Image Width (http://www.phpbb.com/phpBB/viewtopic.php?t=224522&postdays=0&postorder=asc&start=0)

Brian

Such an optimization would be great !

mustang_lex
07-03-2005, 11:48 PM
This Hack works for 3.0.7 flawlessly. I love it. I don't like the delay, but its better then the other issues I had with 2 other "auto resize" hacks. Yes this is my third.

The problem I had with the other ones. is people started asking why there photos were resized or why is the quality bad (happend when you resize) .

The javascript versions (in earlier hacks) would work but your layout was all screwed up as soon as you entered then got fixed once the photos got resized.

Also some didn't work when you did a REPLY to a thread with over sized picture thus screwing up my layout.

And when I tried to edit the replythread template to add the <body onload> bits it would screw up the smilies!

So needless to say i rather deal with the 2 second delay and wait for a fix then to deal with the other problems.

mustang_lex
07-04-2005, 02:35 PM
I heard that "client side" would be faster. Can we mod this hack to load the html page as its resizing the images.

I seen some sites that says "loading images" then the photo appears. Can we implement something like that. just so the page loads first then the photos.

I really love this hack over the others but I do understand people removing because of the lag.

m0nde
07-04-2005, 09:25 PM
I run a small forum so this solution is perfect.

Thanks for the great hack! :up:

Steve St.Lauren
07-05-2005, 03:36 AM
Works like I expected.. but... a little to well... I dont want it to resize my signature images..... Is there anyway around this or set it to a diff max width for signature images?

Sorry, I've been swamped (new baby on the way, work, life, etc) and haven't had time to jump in here. I'm sure you could modify the signature section but I don't really have the time to look into it. But what I would do is just make your max_imgsize the maximum width that you want to be able to be displayed on a screen and it will resize them all to that. If you have signature images wider than your setting (560 is the default) and you modify it so that the sig images are handled differently all your screen formatting is going to be screwed up anyway. Just change the 560 on the two lines that say "$max_imgsize=560" to whatever you want your maximum image of any kind to be.

Steve St.Lauren
07-05-2005, 03:45 AM
Is there anyway to modify this hack so that if the image is too big the system simply does not allow the IMG tag but instead uses the URL tags?

Yes, easily on line 90 & 91 of the hack text file you'll find:
$bbtag = '<table><tr><td align="center"><a href="' . $link . '"><img src="'
. $link . '" width="'.$max_imgsize.'" border="0"'.substr($bbtag,$linkclose+1,strlen($bbtag)-$linkclose+1).'<br>Picture has been resized, click for full size pic</a></td></tr></table>';

change that to:
$bbtag = '<table><tr><td align="center"><a href="' . $link . '">'
. $link . '</a></td></tr></table>';


and on line 214 & 215 you'll find:

$biglink = '<table><tr><td align="center"><a href="' . $link . '" ><img src="'
. $link . '" width="'.$max_imgsize.'" border="0" alt=""><br>Picture has been resized, click for full size pic</a></td></tr></table>';

change that to:
$biglink = '<table><tr><td align="center"><a href="' . $link . '" >'
. $link . '</a></td></tr></table>';


That will just show a link with the html address to the pic.

Steve St.Lauren
07-05-2005, 03:46 AM
is this work with attachment image also?

Image attachments you can put a limit on right in vB - no need for a hack. It's in your control panel under attachments->extensions & sizes

Steve St.Lauren
07-05-2005, 03:49 AM
Thanks for a great hack Steve!

I, like everyone else, experience the delay when remote images are resized. I would like to make a suggestion I found incorporated into similar hack for phpBB. The author assigned "ids" to remote images that were resized and stored the resize information in the database. By doing so, images only loaded slow the first time. Afterwards, the images would load at typical speeds because the orginal and new sizes were already stored in the database. If the table became bloated, it could simply be purged without effecting the linked images and the process would continue. I used this on a phpBB site and it made a dramatic impact on load times. I don't know if this can be incorporated into this hack, but if your interested here is a link to the MOD.....Limit Image Width (http://www.phpbb.com/phpBB/viewtopic.php?t=224522&postdays=0&postorder=asc&start=0)

Brian

That's a good idea Brian. Some time when I have a free day or so I'll look into adding it (don't see that happening any time soon though with my wife & I expecting a newborn in 2 months). If anyone wants to tackle this feel free to use the code I generated to this point - just give me credit for it please.

Steve St.Lauren
07-05-2005, 03:50 AM
Steve,

This hack saved us a lot of trouble thanks so much!! It's working perfectly. I do have a question however. At the end of your install notes you say:

"That's it. Set the max_imagesize at the beginning of the each of the large edits and that will be your max image size."

Where can I set the max_imagesize?

Look in the hack text file and you'll see two instances of "$mag_imgsize=560;" - just change the 560 in those two instances to whatever size you want. Before the first one it says " // set max_imgsize to the max size you want pictures to be"

Steve St.Lauren
07-05-2005, 03:51 AM
I installed this hack it worked nicely but for all our signatures that involved images
they were replaced with a message that said "Image link is broken"

any ideas what might cause this, is there a way to turn this off for signatures?

Where are those signature images coming from? The server they are on may be restricting your server from opening a file from their server which will cause that error. Give me a link to a page showing a signature doing that and I will take a look.

Steve St.Lauren
07-05-2005, 03:52 AM
can this work with 3.0.7???
i followed the instructions exactly and it dosent do anything.

You must have missed something - look back over the entire hack file and make sure that you did everything in it. It works fine on 3.0.7

Steve St.Lauren
07-05-2005, 03:56 AM
I heard that "client side" would be faster. Can we mod this hack to load the html page as its resizing the images.

I seen some sites that says "loading images" then the photo appears. Can we implement something like that. just so the page loads first then the photos.

I really love this hack over the others but I do understand people removing because of the lag.

No, there's no way to do that because the server has to have loaded the images so that it knows the size of the image so that it can decide if it needs to be resized or not. If it needs to be resized then it generates the html code to make that resize happen on the client side - if the html was already loaded there wouldn't be any way to modify that. The only other option would be to resize all pictures to the size you specify but that will make images smaller than that size look horrible. If you did that there would be no need to check the image size.

mustang_lex
07-05-2005, 04:11 PM
This hack was so promising , and was my favorite. I don't know what happened, but 2 days after this hack was installed, it took longer and longer to load pages with images, so like many others i had to remove it and made another one work 100% (minus the text at the bottom as i liked about this one)

Thanks though. I hope someday this can be revised to be more friendly to larger image forums.

Steve St.Lauren
07-05-2005, 04:23 PM
This hack was so promising , and was my favorite. I don't know what happened, but 2 days after this hack was installed, it took longer and longer to load pages with images, so like many others i had to remove it and made another one work 100% (minus the text at the bottom as i liked about this one)

Thanks though. I hope someday this can be revised to be more friendly to larger image forums.
The more images you have on a post the longer it will take because every image has to be loaded. If there are images on a server that is down or that the server blocks access to it will take even longer because it will have to hit the timeout before continuing. If you have a forum where people put LOTS of images in each thread then it isn't going to work out well for you until I (or someone else) have time to add the optimization recommended by BRC2 above. It'd take me most of a day probably and I just don't have the time right now :( .

mustang_lex
07-06-2005, 12:00 PM
The more images you have on a post the longer it will take because every image has to be loaded. If there are images on a server that is down or that the server blocks access to it will take even longer because it will have to hit the timeout before continuing. If you have a forum where people put LOTS of images in each thread then it isn't going to work out well for you until I (or someone else) have time to add the optimization recommended by BRC2 above. It'd take me most of a day probably and I just don't have the time right now :( .

Don't sweat man, you got a top family priority, I hope to have your experience someday with my wife to be

tommyxv
07-07-2005, 05:55 AM
It seems to work great, but on some large images, i get, Image link broken. If i got to edit the post, the images are there, but wont show on the forum. Any ideas?? Maybe it cant handle large images?

Images are 1280 x 960 and were already posted before the hack. I tried to edit the post and redo the links but still no good.

????

Actually, its just images that this one user is posting. Some of smaller images coming from cardomain, they show Image Link Broken too.

Not sure why... hrmmm.

mustang_lex
07-07-2005, 12:28 PM
Your server maybe timing out before the images get resized by the server

tommyxv
07-08-2005, 02:46 PM
Well, I rehosted the images myself as a test and they came up fine. It was just with this one user. Large or small images, but its fixed now and working great.

Awesome Hack!

Steve St.Lauren
07-08-2005, 09:14 PM
Well, I rehosted the images myself as a test and they came up fine. It was just with this one user. Large or small images, but its fixed now and working great.

Awesome Hack!
Some servers have firewalls installed that will not allow other servers to open files for reading from them. If they do that then this hack won't work on that image. It doesn't come up often but it does happen.

Eagle Creek
07-21-2005, 04:26 PM
awesome hack!

Is it available for 3.5?

Steve St.Lauren
07-21-2005, 05:33 PM
Is it available for 3.5?

Not yet. I won't be working with 3.5 until it's a full release and has been out for a month or two.

Eagle Creek
07-21-2005, 05:41 PM
Not yet. I won't be working with 3.5 until it's a full release and has been out for a month or two.

Why not? Can't you test it on the beta version?

Or is that too risky because code changes. But I thought it was easy with the plug-ins.

chris g
08-12-2005, 06:18 AM
Why not? Can't you test it on the beta version?

Or is that too risky because code changes. But I thought it was easy with the plug-ins.

Hey, I installed this hack and it doesn't seem to do anything. No error messages are generated, the image just shows up full size. I double checked the hack install and everything looks fine. Is there anything that you know of that would cause this code to fail gracefully (as it seems to be doing)? Having this hack isn't a huge issue for me, but it would be nice. Let me know if you need more information to help me out here.

PHP: 4.3.10
vB: 3.0.7

Thanks for writing the code and the GREAT support! Big props!

Steve St.Lauren
08-12-2005, 06:51 AM
Why not? Can't you test it on the beta version?

Or is that too risky because code changes. But I thought it was easy with the plug-ins.

I could but all my work is production based. I won't be deploying 3.5 anywhere until it's a working stable version and has been out for a few months. Unforetunately, I just don't have enough hours in the day to play around with beta releases. The main site I run gets 2.5 million hits a day and has up to 1400 simultaneous users on the forums and is a subscription site. With that kind of traffic volume I'll let others be the guinea pigs to mark sure it's all working stable before I deploy it. Sorry.

Steve St.Lauren
08-12-2005, 06:52 AM
Hey, I installed this hack and it doesn't seem to do anything. No error messages are generated, the image just shows up full size. I double checked the hack install and everything looks fine. Is there anything that you know of that would cause this code to fail gracefully (as it seems to be doing)? Having this hack isn't a huge issue for me, but it would be nice. Let me know if you need more information to help me out here.

PHP: 4.3.10
vB: 3.0.7

Thanks for writing the code and the GREAT support! Big props!

Hmmm, are you sure the images in question are larger than 560 pixels wide (or whatever you set it to in the hack)? Also that they are linked images and not attached ones? This only works with images linked in with html or vb codes.

chris g
08-12-2005, 02:26 PM
I changed the value to 600, will be changing to 800 today when I check the code again. I think I'll have a friend look as well to see if I'm missing anything obvious. Images are inserted via the [ img] [ /img] tags.

In case it helps this: http://shoandgo.com/gallery/albums/album23/100_0491.jpg is one of the test images th at I used. (Warning: Quite large)

I've only tried with vb tags, should I try HTML as another test?

dansgts
08-17-2005, 07:03 PM
You must have missed something - look back over the entire hack file and make sure that you did everything in it. It works fine on 3.0.7

it works for linked immages, but not attached ones, any way to fix that?

dai-kun
08-18-2005, 03:14 PM
I installed this a couple of times, but everytime ALL my pictures within posts have the "Image link is broken" error, no matter what size it is. Even signature pics comes up like that. I've read all the replies but nothing really helps. Thanks.

Steve St.Lauren
08-21-2005, 04:38 PM
it works for linked immages, but not attached ones, any way to fix that?

Attached images you can limit built right into vB - it's in your administrator control panel.

Steve St.Lauren
08-21-2005, 04:39 PM
I installed this a couple of times, but everytime ALL my pictures within posts have the "Image link is broken" error, no matter what size it is. Even signature pics comes up like that. I've read all the replies but nothing really helps. Thanks.

Your firewall on the server is probably blocking that port.

J82980BA3E43
08-22-2005, 10:02 AM
This hack is great but it works sometimes slowly.
Is there a way to make it faster ?

On some Pics i wait over 12/20 sec. an than open the thread.

Steve St.Lauren
08-22-2005, 03:05 PM
This hack is great but it works sometimes slowly.
Is there a way to make it faster ?

On some Pics i wait over 12/20 sec. an than open the thread.

The short answer is no. Look back through this thread and you'll see the discussions of how and why that is. The main thing that will slow it down is if a server is unavailable that is being called - there is a 5 second timeout if a server can't be reached (and that is for each picture so if you have 5 pictures in a thread linked to a server that doesn't exist any more that will take 25 seconds).

Dorign
08-23-2005, 02:55 AM
Not trying to plug my own modification, but I had to use this because my forum is a bit larger. To my knowledge, this is the fastest and most accurate image resizer to date, but it uses Javascript instead of editing the img tagging. https://vborg.vbsupport.ru/showthread.php?p=758611#post758611

Allan
09-13-2005, 07:55 PM
Thanks for this hack, good job Steve :)

Work on vB 3.0.7


Click Install

eljeffe
09-16-2005, 04:36 PM
Images show fine without this hack. All I get are "Image link is broken". I've seen the responses about firewall ports and timeouts, but I don't see how if the images show up without the hack and they don't with the hack, how this could be the problem.

Any ideas?

Blindchild02
09-16-2005, 05:05 PM
i couldnt get this to open in a new window :X

Blindchild02
09-16-2005, 06:20 PM
nm, got it to work:
http://www.hulkforum.com/showthread.php?t=18

Steve St.Lauren
09-17-2005, 12:25 AM
Images show fine without this hack. All I get are "Image link is broken". I've seen the responses about firewall ports and timeouts, but I don't see how if the images show up without the hack and they don't with the hack, how this could be the problem.

Any ideas?

The reason a firewall can cause a problem is because the hack does a file open from your file server to the server with the pictures to get the picture size. That's done on a seperate port. When you are normally looking at a page with a linked picture your PC that you are viewing it at is loading the picture from that server - the web server doesn't have anything to do with the picture at all.

MrGoodbyte
09-19-2005, 03:59 AM
I get mad on it .. I'm quite sure I've made all changes (in VB 3.08) I have to do:
functions_showthread (strongly shortend):
// showthread / showpost style Postbit
default:
if (!empty($post['pagetext_html']))
{
$parsed_postcache['skip'] = true;
if ($post['hasimages'])
{
// Image Size hack r1.2
// Modified by SS
// $post['message'] = handle_bbcode_img($post['pagetext_html'], $forum['allowimages']);
$post['message'] = handle_bbcode_img($post['pagetext_html'], $forum['allowimages'], 0);
//

}
else
{
$post['message'] = &$post['pagetext_html'];
}
}
else
{
$parsed_postcache['skip'] = false;
$post['message'] = parse_bbcode($post['pagetext'], $forum['forumid'], $post['allowsmilie']);
}


functions_bbcodeparse (strongly shortend):
// ###################### Start bbcodeparse #######################
function parse_bbcode($bbcode, $forumid = 0, $allowsmilie = 1, $isimgcheck = 0, $parsedtext = '', $parsedhasimages = 0, $iswysiwyg = 0)
{
// $parsedtext contains text that has already been turned into HTML and just needs images checking
// $parsedhasimages specifies if the text has images in that need parsing

global $vboptions, $parsed_postcache;

$donl2br = 1;

if (empty($forumid))
{
$forumid = 'nonforum';
}

switch($forumid)
{
// parse private message
case 'privatemessage':
$dohtml = $vboptions['privallowhtml'];
$dobbcode = $vboptions['privallowbbcode'];
$dobbimagecode = $vboptions['privallowbbimagecode'];
$dosmilies = $vboptions['privallowsmilies'];
break;

// parse user note
case 'usernote':
$dohtml = $vboptions['unallowhtml'];
$dobbcode = $vboptions['unallowvbcode'];
$dobbimagecode = $vboptions['unallowimg'];
$dosmilies = $vboptions['unallowsmilies'];
break;

// parse non-forum item
case 'nonforum':
$dohtml = $vboptions['allowhtml'];
$dobbcode = $vboptions['allowbbcode'];
$dobbimagecode = $vboptions['allowbbimagecode'];
$dosmilies = $vboptions['allowsmilies'];
if ($allowsmilie != 1)
{
$dosmilies = $allowsmilie;
}
break;

case 'announcement':
global $post;
$dohtml = $post['allowhtml'];
if ($dohtml)
{
$donl2br = 0;
}
$dobbcode = $post['allowbbcode'];
$dobbimagecode = $post['allowbbcode'];
$dosmilies = $allowsmilie;
break;

// parse forum item
default:
$forum = fetch_foruminfo($forumid);
$dohtml = $forum['allowhtml'];
$dobbimagecode = $forum['allowimages'];
$dosmilies = $forum['allowsmilies'];
if ($allowsmilie != 1)
{
$dosmilies = $allowsmilie;
}
$dobbcode = $forum['allowbbcode'];
break;
}

if (!empty($parsedtext))
{
if ($parsedhasimages)
{

// Image size hack R1.2
// Modified by SS
// return handle_bbcode_img($parsedtext, $dobbimagecode);
return handle_bbcode_img($parsedtext, $dobbimagecode, $iswysiwyg);
//

}
else
{
return $parsedtext;
}
}
else
{
if ($isimgcheck)
{ // do this since we're only checking for smilies and IMG code
$dobbcode = 0;
}
return parse_bbcode2($bbcode, $dohtml, $dobbimagecode, $dosmilies, $dobbcode, $iswysiwyg, $donl2br);
}
}

// ###################### Start checkparam #######################
// called by the preg_replace for custom bbcodes - ensures that
// users can't get around censor text by adding empty bbcodes
// such as 'censoredword' into their messages
function handle_bbcode_parameter($param, $return)
{
if (trim($param) != '')
{
return str_replace('\\"', '"', $return);
}
}

// ###################### Start handle_custom_bbcode #######################
function handle_custom_bbcode($param, $option, $return)
{
if (trim($param) == '')
{
return '';
}

$param = str_replace('\\"', '"', $param);
$return = str_replace('\\"', '"', $return);
$option = str_replace(array('\\"', '['), array('"', '['), $option);

$return = preg_replace('#%(?!\d+\$s)#', '%%', $return);
return sprintf($return, $param, $option);
}

// ###################### Start bbcodeparse2 #######################
function parse_bbcode2($bbcode, $dohtml, $dobbimagecode, $dosmilies, $dobbcode, $iswysiwyg = 0, $donl2br = 1)
{
// parses text for vB code, smilies and censoring

global $DB_site, $vboptions, $bbuserinfo, $templatecache, $smiliecache;
global $html_allowed;
global $threadid;

if ($vboptions['wordwrap'] != 0 AND !$iswysiwyg)
{
$bbcode = fetch_word_wrapped_string($bbcode);
}

$html_allowed = true;
// ********************* REMOVE HTML CODES ***************************
if (!$dohtml)
{
/*static $html_find = array('&lt;', '&gt;', '<', '>');
static $html_replace = array('&amp;lt;', '&amp;gt;', '&lt;','&gt;');

$bbcode = str_replace($html_find, $html_replace, $bbcode);*/
$bbcode = htmlspecialchars_uni($bbcode);
$html_allowed = false;
} // end html
// Image Size hack r1.2
// Added by SS to resize large pics and place link to full size pic

// set max_imgsize to the max size you want pictures to be
$max_imgsize=560;

// check for img tag and see if html is enabled and if not using wysiwyg editor
if (strstr(strtolower($bbcode),'<img') AND $dohtml AND !$iswysiwyg) {
$tagstartcounter=0;
do {
$bbcodelength=strlen($bbcode);
// pull tag from bbcode
$tagopen=(strpos(strtolower($bbcode),'<img',$tagstartcounter));
$tagclose=(strpos($bbcode,'>',$tagopen));
$bbtag=substr($bbcode,$tagopen,($tagclose-$tagopen+1));
$bbtag = str_replace('\'','"',$bbtag);

// get link from bbtag
$linkopen=(strpos(strtolower($bbtag),'<img'));
$linkopen2=(strpos(strtolower($bbtag),'"',$linkopen));
$linkclose=(strpos($bbtag,'"',$linkopen2+1));
$link=substr($bbtag,$linkopen2+1,($linkclose-$linkopen2-1));

// remove double spaces -- fixes issues with wordwrap
$link = str_replace(' ', '', $link);

// Check to see if image exists
$image= ($link);

// Get host url name for fsockopen to see if server is reachable
$img_host=str_replace('http://','',$link);
$img_host=substr($img_host,0,strpos($img_host,'/'));

// set image found by default
$image_found=true;

// Check is server is reachable and timeout in 5 seconds if not
if (@fclose(@fsockopen($img_host, 80, $fsockerr1, $fsockerr2, 5))) {
// Check if image is on server
if (@fclose(@fopen("$image", "r"))) {
// Check image size and if oversize, change bbtag
$img_width = getimagesize($link);
if ($img_width[0] > $max_imgsize) {
$bbtag = '<table><tr><td align="center"><a href="' . $link . '"><img src="'
. $link . '" width="'.$max_imgsize.'" border="0"'.substr($bbtag,$linkclose+1,strlen($bbtag)-$linkclose+1).'<br>Picture has been resized, click for full size pic</a></td></tr></table>';
}
}
else {
// Image not found
$bbtag='<table border="1" cellpadding="2" id="image_found"><tr><td><FONT color="#FF0000">Image link is broken</font></td></tr></table>';
$image_found=false;
}
}
else {
// Server is down
$bbtag='<table border="1" cellpadding="2" id="image_found"><tr><td><FONT color="#FF0000">Image server is down</font></td></tr></table>';
$image_found=false;
}


// replace bbtag into bbcode
$bbcode=substr($bbcode,0,$tagopen).$bbtag.substr($ bbcode,$tagclose+1,$bbcodelength-$tagclose);

// check if image was found to see what where to start the next search
if ($image_found) {
// move pointer back to img tag in case it moved
$tagopen=$tagopen+(strpos(strtolower($bbtag),'<img'));
}
else {
// move pointer back to img tag in case it moved
$tagopen=$tagopen+(strpos(strtolower($bbtag),'id="image_found"'));
}


// start search from end of previous tag
$tagstartcounter=(strpos($bbcode,'>',$tagopen));
} while (strpos(strtolower($bbcode),'<img',$tagstartcounter));
}

// End Image Size hack r1.2
// ********************* PARSE SMILIES ***************************
if ($dosmilies)
{
static $smilie_find, $smilie_replace;

if (empty($smilie_find) OR empty($smilie_replace))
{
if (isset($smiliecache))
{
// we can get the smilies from the smiliecache php template
DEVDEBUG('returning smilies from the template cache');
if (is_array($smiliecache))
{
foreach ($smiliecache AS $smilie)
{
if (trim($smilie['smilietext']) != '')
{
if (!$dohtml)
{
$smilie_find[] = htmlspecialchars_uni(trim($smilie['smilietext']));
}
else
{
$smilie_find[] = trim($smilie['smilietext']);
}
// if you change this HTML tag, make sure you change the smilie remover in code/php/html tag handlers!
if ($iswysiwyg)
{
$smilie_replace[] = "<img src=\"$smilie[smiliepath]\" border=\"0\" alt=\"\" title=\"$smilie[title]\" smilieid=\"$smilie[smilieid]\" class=\"inlineimg\" />";
}
else
{
$smilie_replace[] = "<img src=\"$smilie[smiliepath]\" border=\"0\" alt=\"\" title=\"$smilie[title]\" class=\"inlineimg\" />";
}
}
}
}
}
else
{
// we have to get the smilies from the database
DEVDEBUG('querying smilies for parse_bbcode2();');
$smilies = $DB_site->query("
SELECT smilietext, smiliepath, smilieid FROM " . TABLE_PREFIX . "smilie
");
while ($smilie = $DB_site->fetch_array($smilies))
{
if(trim($smilie['smilietext']) != '')
{
if (!$dohtml)
{
$smilie_find[] = htmlspecialchars_uni(trim($smilie['smilietext']));
}
else
{
$smilie_find[] = trim($smilie['smilietext']);
}
// if you change this HTML tag, make sure you change the smilie remover in code/php/html tag handlers!
if ($iswysiwyg)
{
$smilie_replace[] = "<img src=\"$smilie[smiliepath]\" border=\"0\" alt=\"\" title=\"$smilie[title]\" smilieid=\"$smilie[smilieid]\" class=\"inlineimg\" />";
}
else
{
$smilie_replace[] = "<img src=\"$smilie[smiliepath]\" border=\"0\" alt=\"\" title=\"$smilie[title]\" class=\"inlineimg\" />";
}
}
}
}
}

// str_replace the text using the smilie_find and smilie_replace arrays
#$bbcode = str_replace($smilie_find, $smilie_replace, $bbcode);

// alternative method to avoid parsing HTML entities as smilies:
foreach($smilie_find AS $smiliekey => $smiliefind)
{
$bbcode = preg_replace('/(?<!&amp|&quot|&lt|&gt|&copy|&#[0-9]{1}|&#[0-9]{2}|&#[0-9]{3}|&#[0-9]{4}|&#[0-9]{5})' . preg_quote($smiliefind, '/') . '/s', $smilie_replace["$smiliekey"], $bbcode);
}
} // end smilies
$bbcode=wsmhack($bbcode);

// do new lines
$wysiwygtype = null;
if ($iswysiwyg == 1)
{
$whitespacefind = array(
'#(\r\n|\n|\r)?( )*(\[\*\]|\[/list|\|/indent\])( )*(\r\n|\n|\r)?#si'
);
$whitespacereplace = array(
'\3',
'\1'
);
$bbcode = preg_replace($whitespacefind, $whitespacereplace, $bbcode);

if (is_browser('ie'))
{
$wysiwygtype = 'ie';

// this fixes an issue caused by odd nesting of tags. This causes IE's
// WYSIWYG editor to display the output as vB will display it
$rematch_find = array(
'#\[b\](.*)\[/b\]#siUe',
'#\[i\](.*)\[/i\]#siUe',
'#\[u\](.*)\[/u\]#siUe',
);
$rematch_replace = array(
"bbcode_rematch_tags_wysiwyg('\\1', 'b')",
"bbcode_rematch_tags_wysiwyg('\\1', 'i')",
"bbcode_rematch_tags_wysiwyg('\\1', 'u')",
);
$bbcode = preg_replace($rematch_find, $rematch_replace, $bbcode);

$bbcode = '<p style="margin:0px">' . preg_replace('#(\r\n|\n|\r)#', "</p>\n<p style=\"margin:0px\">", trim($bbcode)) . '</p>';
}
else
{
$bbcode = nl2br($bbcode);
$wysiwygtype = 'moz_css';
}
$bbcode = preg_replace('#(\)(((?>[^\[]*?|(?R))|(?>.))*)(\[/list(=\\3\\4\\3)?\])#siUe', "remove_wysiwyg_breaks('\\0', \$wysiwygtype)", $bbcode);

//$bbcode = preg_replace('#\[list#i', '</p>[list', $bbcode);
//$bbcode = preg_replace('#\[/list(=(&quot;|"|\'|)[a-z0-9+]\\2)?](?!\[\*\])#i', '[/list\\1]<p style="margin:0px">', $bbcode);

$bbcode = preg_replace('#<p style="margin:0px">\s*</p>(?!\s*\[list|$)#i', '<p style="margin:0px">&nbsp;</p>', $bbcode);
$bbcode = str_replace('<p style="margin:0px"></p>', '', $bbcode);

// convert tabs to four &nbsp;
$bbcode = str_replace("\t", '&nbsp;&nbsp;&nbsp;&nbsp;', $bbcode);
}
// new lines to <br />
else
{
$whitespacefind = array(
'#(\r\n|\n|\r)?( )*(\[\*\]|\[/list|\[list|\[indent)#si',
'#(/list\]|/indent\])( )*(\r\n|\n|\r)?#si'
);
$whitespacereplace = array(
'\3',
'\1'
);
$bbcode = preg_replace($whitespacefind, $whitespacereplace, $bbcode);

if ($donl2br)
{
$bbcode = nl2br($bbcode);
}
}

// ********************* PARSE BBCODE TAGS ***************************
if ($dobbcode AND strpos($bbcode, '[') !== false AND strpos($bbcode, ']') !== false)
{
switch($vboptions['usebbcodeparserecurse'])
{
case 1:
$parsefunc = 'parse_bbcode_recurse';
break;

case 0:
$parsefunc = 'parse_bbcode_regex';
break;

default:
$parsefunc = 'parse_bbcode_regexrecurse';
}
$bbcode = $parsefunc($bbcode, $iswysiwyg);

if ($wysiwygtype == 'ie')
{
$bbcode = preg_replace('#<p style="margin:0px"><(p|div) align="([a-z]+)">(.*)</\\1></p>#siU', '<p style="margin:0px" align="\\2">\\3</p>', $bbcode);
}
if ($iswysiwyg)
{
// need to display smilies in code/php/html tags as literals
$bbcode = preg_replace('#\[(code|php|html)\](.*)\[/\\1\]#siUe', "strip_smilies(str_replace('\\\"', '\"', '\\0'), true)", $bbcode);
}
}

// parse out nasty active scripting codes
static $global_find = array('/javascript:/si', '/about:/si', '/vbscript:/si', '/&(?![a-z0-9#]+;)/si');
static $global_replace = array('javascript<b></b>:', 'about<b></b>:', 'vbscript<b></b>:', '&amp;');
$bbcode = preg_replace($global_find, $global_replace, $bbcode);

// run the censor
$bbcode = fetch_censored_text($bbcode);
$has_img_tag = contains_bbcode_img_tags($bbcode);

// save the cached post
global $stopsaveparsed, $parsed_postcache;
if (!$stopsaveparsed AND $parsed_postcache['skip'] != true)
{
$parsed_postcache['text'] = $bbcode;
$parsed_postcache['images'] = $has_img_tag;
}

// do [img] tags if the item contains images
if(($dobbcode OR $dobbimagecode) AND $has_img_tag)
{
// Image resize hack R1.2
// Modified by SS
// $bbcode = handle_bbcode_img($bbcode, $dobbimagecode);
$bbcode = handle_bbcode_img($bbcode, $dobbimagecode, $iswysiwyg);
//

}
$myreplies = $DB_site->query_first("SELECT COUNT(postid) AS count FROM ". TABLE_PREFIX . "post WHERE userid='$bbuserinfo[userid]' and threadid='$threadid'");
if ($myreplies[count] > 0 || $bbuserinfo['usergroupid'] == 5 || $bbuserinfo['usergroupid'] == 6 || $bbuserinfo['usergroupid'] == 7) {
$bbcode = preg_replace('/\\[hide\\](.*)\\[\/hide\\]/si', 'Hidden Text: <br>\\1', $bbcode);
} else {
$bbcode = preg_replace('/\\[hide\\](.*)\\[\/hide\\]/si', '<b><center><img src="./hide.gif" alt=Du musst eine Antwort erstellen um den Inhalt zu sehen!></center></b><br>', $bbcode);
}

return $bbcode;
}

// ###################### Start remove_wysiwyg_breaks #######################
function bbcode_rematch_tags_wysiwyg($innertext, $tagname)
{
// This function replaces line breaks with [/tag]\n[tag].
// It is intended to be used on text inside [tag] to fix an IE WYSIWYG issue.

$innertext = str_replace('\"', '"', $innertext);
return "[$tagname]" . preg_replace('#(\r\n|\n|\r)#', "[/$tagname]\n[$tagname]", $innertext) . "[/$tagname]";
}

// ###################### Start remove_wysiwyg_breaks #######################
function remove_wysiwyg_breaks($fulltext, $wysiwygtype = 'ie')
{
$fulltext = str_replace('\"', '"', $fulltext);
preg_match('#^(\[list(=(&quot;|"|\'|)(.*)\\3)?\])(.*?)(\[/list(=\\3\\4\\3)?\])$#siU', $fulltext, $matches);
$prepend = $matches[1];
$innertext = $matches[5];

$find = array("</p>\n<p style=\"margin:0px\">", '<br />', '<br>');
$replace = array("\n", "\n", "\n");
$innertext = str_replace($find, $replace, $innertext);

if ($wysiwygtype == 'ie')
{
return '</p>' . $prepend . $innertext . '<p style="margin:0px">';
}
else
{
return $prepend . $innertext . '';
}
}

// ###################### Start bbcodeparse2_regexrecurse #######################
function parse_bbcode_regexrecurse($bbcode, $iswysiwyg)
{
global $DB_site, $vboptions, $bbuserinfo, $templatecache, $datastore, $wysiwygparse, $session;
static $BBCODES;

$wysiwygparse = $iswysiwyg;

if (empty($BBCODES['standard']))
{
$BBCODES = fetch_bbcode_definitions();

$doubleRegex = '/(\[)(%s)(=)(&quot;|"|\'|)([^"]*)(\\4)\](.*)(\[\/%s\])/esiU';
$singleRegex = '/(\[)(%s)(\])(.*)(\[\/%s\])/esiU';

if (isset($datastore['bbcodecache'])) // get bbcodes from the datastore
{
$bbcodecache = unserialize($datastore['bbcodecache']);

foreach ($bbcodecache AS $bbregex)
{
if ($bbregex['twoparams'])
{
$regex = sprintf($doubleRegex, $bbregex['bbcodetag'], $bbregex['bbcodetag']);
$bbregex['bbcodereplacement'] = str_replace(array('\\7', '\\5'), array('%1$s', '%2$s'), $bbregex['bbcodereplacement']);
$tagname = "[$bbregex[bbcodetag]=";
$checkparam = '\\7';
$checkoption = '\\5';
}
else
{
$regex = sprintf($singleRegex, $bbregex['bbcodetag'], $bbregex['bbcodetag']);
$bbregex['bbcodereplacement'] = str_replace('\\4', '%1$s', $bbregex['bbcodereplacement']);
$tagname = "[$bbregex[bbcodetag]]";
$checkparam = '\\4';
$checkoption = '';
}
$BBCODES['custom']['find']["$tagname"] = $regex;
$BBCODES['custom']['replace']["$tagname"] = "handle_custom_bbcode('$checkparam', '$checkoption', '" . str_replace("'", "\'", $bbregex['bbcodereplacement']) . "')";
}
}
else // query bbcodes out of the database
{
$bbcodes = $DB_site->query("
SELECT bbcodetag, bbcodereplacement, twoparams
FROM " . TABLE_PREFIX . "bbcode
");
while ($bbregex = $DB_site->fetch_array($bbcodes))
{
if ($bbregex['twoparams'])
{
$regex = sprintf($doubleRegex, $bbregex['bbcodetag'], $bbregex['bbcodetag']);
$bbregex['bbcodereplacement'] = str_replace(array('\\7', '\\5'), array('%1$s', '%2$s'), $bbregex['bbcodereplacement']);
$tagname = "[$bbregex[bbcodetag]=";
$checkparam = '\\7';
$checkoption = '\\5';
}
else
{
$regex = sprintf($singleRegex, $bbregex['bbcodetag'], $bbregex['bbcodetag']);
$bbregex['bbcodereplacement'] = str_replace('\\4', '%1$s', $bbregex['bbcodereplacement']);
$tagname = "[$bbregex[bbcodetag]]";
$checkparam = '\\4';
$checkoption = '';
}
$BBCODES['custom']['find']["$tagname"] = $regex;
$BBCODES['custom']['replace']["$tagname"] = "handle_custom_bbcode('$checkparam', '$checkoption', '" . str_replace("'", "\'", $bbregex['bbcodereplacement']) . "')";
}
}
}

if ($iswysiwyg) // text to show in the WYSIWYG editor box
{
$bbcode_find = $BBCODES['standard']['find'];
$bbcode_replace = $BBCODES['standard']['replace'];
}
else // text to show everywhere else
{
//$bbcode_find = array_merge($BBCODES['standard']['find'], $BBCODES['custom']['find']);
//$bbcode_replace = array_merge($BBCODES['standard']['replace'], $BBCODES['custom']['replace']);

$bbcode_find = array_merge($BBCODES['custom']['find'], $BBCODES['standard']['find']);
$bbcode_replace = array_merge($BBCODES['custom']['replace'], $BBCODES['standard']['replace']);
}

foreach($bbcode_find AS $tag => $findregex)
{
// if using option, $tag will be '[xxx='
// if not using option, $tag will be '[xxx]'

while (stristr($bbcode, $tag) !== false)
{
// make a copy of the text pre-replacement for later comparison
$origtext = $bbcode;

$bbcode = preg_replace($findregex, $bbcode_replace["$tag"], $bbcode);

// check to see if the preg_replace actually did anything... if it didn't, break the loop
if ($origtext == $bbcode)
{
break;
}
}
}

return $bbcode;
}

// ###################### Start bbcodeparse2_regex #######################
function parse_bbcode_regex($bbcode, $iswysiwyg)
{
global $DB_site, $vboptions, $bbuserinfo, $templatecache, $datastore, $wysiwygparse, $session;
static $BBCODES;

$wysiwygparse = $iswysiwyg;

if (empty($BBCODES['standard']))
{
$BBCODES = fetch_bbcode_definitions();

$doubleRegex = '/(\[)(%s)(=)(&quot;|"|\'|)(.*)(\\4)\](.*)(\[\/%s\])/esiU';
$singleRegex = '/(\[)(%s)(\])(.*)(\[\/%s\])/esiU';

if (isset($datastore['bbcodecache']))
{ // we can get the bbcode from the bbcodecache php template
DEVDEBUG("returning bbcodes from the template cache");
$bbcodecache = unserialize($datastore['bbcodecache']);
foreach($bbcodecache AS $bbregex)
{
if ($bbregex['twoparams'])
{
$regex = sprintf($doubleRegex, $bbregex['bbcodetag'], $bbregex['bbcodetag']);
$checkparam = 7;
}
else
{
$regex = sprintf($singleRegex, $bbregex['bbcodetag'], $bbregex['bbcodetag']);
$checkparam = 4;
}
for ($i = 0; $i < 3; $i++)
{
$BBCODES['custom']['find'][] = $regex;
$BBCODES['custom']['replace'][] = "handle_bbcode_parameter('\\$checkparam','" . str_replace("'", "\'", $bbregex['bbcodereplacement']) . "')";
}
}
}
else
{ // we have to get the bbcodes from the database
DEVDEBUG("querying bbcodes for parse_bbcode2();");
$bbcodes = $DB_site->query("
SELECT bbcodetag, bbcodereplacement, twoparams
FROM " . TABLE_PREFIX . "bbcode
");
while($bbregex = $DB_site->fetch_array($bbcodes))
{
if ($bbregex['twoparams'])
{
$regex = sprintf($doubleRegex, $bbregex['bbcodetag'], $bbregex['bbcodetag']);
$checkparam = 7;
}
else
{
$regex = sprintf($singleRegex, $bbregex['bbcodetag'], $bbregex['bbcodetag']);
$checkparam = 4;
}
for ($i = 0; $i < 3; $i++)
{
$BBCODES['custom']['find'][] = $regex;
$BBCODES['custom']['replace'][] = "handle_bbcode_parameter('\\$checkparam','" . str_replace("'","\'",$bbregex['bbcodereplacement']) . "')";
}
}
}
}

if ($iswysiwyg) // text to show in the WYSIWYG editor box
{
$bbcode_find = $BBCODES['standard']['find'];
$bbcode_replace = $BBCODES['standard']['replace'];
}
else // text to show everywhere else
{
$bbcode_find = array_merge($BBCODES['standard']['find'], $BBCODES['custom']['find']);
$bbcode_replace = array_merge($BBCODES['standard']['replace'], $BBCODES['custom']['replace']);
}

// do the actual replacement
$bbcode = preg_replace($bbcode_find, $bbcode_replace, $bbcode);

return $bbcode;
}

// ###################### Start bbcodeparse2_recurse #######################
function parse_bbcode_recurse($bbcode, $iswysiwyg)
{
global $DB_site, $vboptions, $bbuserinfo, $templatecache, $datastore, $wysiwygparse;
static $BBCODES;

$wysiwygparse = $iswysiwyg;

// just get rid of old closing list tags
if (stristr($bbcode, '/list=') != false)
{
$bbcode = preg_replace('#/list=[a-z0-9]\]#siU', '/list]', $bbcode);
}

if (empty($BBCODES['standard']))
{
$BBCODES = fetch_bbcode_definitions();

if (isset($datastore['bbcodecache']))
{ // we can get the bbcode from the bbcodecache php template
DEVDEBUG("returning bbcodes from the template cache");
if (!isset($bbcodecache))
{
$bbcodecache = unserialize($datastore['bbcodecache']);
}
foreach($bbcodecache AS $thisbbcode)
{
$BBCODES['custom']['recurse']["$thisbbcode[bbcodetag]"]["$thisbbcode[twoparams]"] = array('replace_html' => $thisbbcode['bbcodereplacement']);
}
}
else
{ // we have to get the bbcodes from the database
DEVDEBUG("querying bbcodes for parse_bbcode2();");
$bbcodes = $DB_site->query("
SELECT bbcodetag, bbcodereplacement, twoparams
FROM " . TABLE_PREFIX . "bbcode
");
while($thisbbcode = $DB_site->fetch_array($bbcodes))
{
$BBCODES['custom']['recurse']["$thisbbcode[bbcodetag]"]["$thisbbcode[twoparams]"] = array('replace_html' => $thisbbcode['bbcodereplacement']);
}
}
}

if ($iswysiwyg) // text to show in wysiwyg editor
{
$bbcode_search = &$BBCODES['standard']['recurse'];
}
else // text to show everywhere else
{
$bbcode_search = &array_merge($BBCODES['standard']['recurse'], $BBCODES['custom']['recurse']);
}

$startpos = 0;

// process all the bbcode positions

do
{
$tag = array('begin_open_pos' => strpos($bbcode, '[', $startpos));
if ($tag['begin_open_pos'] === false)
{
break;
}
if ($bbcode[ $tag['begin_open_pos'] + 1 ] == '/')
{ // this is a close tag -- ignore it
$startpos = $tag['begin_open_pos'] + 1;
continue;
}

$strlen = strlen($bbcode);

$inquote = false;
$hasoption = 0;
$jumpto = 0;
for ($i = $tag['begin_open_pos']; $i <= $strlen; $i++)
{
$char = $bbcode{$i};

switch ($char)
{
case '[':
if (!$inquote AND $i != $tag['begin_open_pos'])
{
$jumpto = $i;
}
break;
#case ' ':
# $jumpto = $i;
# break;
case ']':
if (!$inquote)
{
$tag['begin_end_pos'] = $i + 1; // "+ 1" includes the ]
}
else
{
$jumpto = $i;
}
break;
case '=':
if (!$inquote AND !$hasoption)
{
// only do this stuff on the *first* =
$hasoption = 1;
$tag['name_end_pos'] = $i;
$tag['option_open_pos'] = $i + 1;
}
break;
case '\'': // break missing intentionally
case '"':
if (!$hasoption)
{
$jumpto = $i;
}
else if (!$inquote)
{
$inquote = $char;
$tag['option_open_pos'] = $i + 1;
}
else if ($char == $inquote)
{
$inquote = false;
$tag['option_end_pos'] = $i;
}
break;
}

if ($jumpto OR $tag['begin_end_pos'])
{
break;
}
}

if (empty($startpos) AND $i == $strlen + 1) // added by JP. Was getting infinite loops on parsing l: [ : : integ
{
break;
}

if ($jumpto)
{
$startpos = $jumpto;
continue;
}

if (!$tag['name_end_pos'])
{
$tag['name_end_pos'] = $tag['begin_end_pos'] - 1;
}
if ($hasoption AND !$tag['option_end_pos'])
{
$tag['option_end_pos'] = $tag['begin_end_pos'] - 1;
}

$bbcode_lower = strtolower($bbcode);

$tag['name'] = substr($bbcode_lower, $tag['begin_open_pos'] + 1, $tag['name_end_pos'] - ($tag['begin_open_pos'] + 1));
if (!isset($bbcode_search["$tag[name]"]["$hasoption"]))
{
// the tag is one that isn't going to be translated anyway, so don't waste time on it
$startpos = $tag['begin_end_pos'];
continue;
}

if ($hasoption)
{
$tag['option'] = substr($bbcode, $tag['option_open_pos'], $tag['option_end_pos'] - $tag['option_open_pos']);
}
else
{
$tag['option'] = '';
}

$tag['close_open_pos'] = strpos($bbcode_lower, "[/$tag[name]]", $tag['begin_end_pos']);
if ($tag['close_open_pos'] === false)
{
$startpos = $tag['begin_end_pos'];
continue;
}

$recursivetags = substr_count(substr($bbcode_lower, $tag['begin_end_pos'], $tag['close_open_pos'] - $tag['begin_end_pos']), "[/$tag[name]]");
$bumped = 0;
for ($i = 0; $i < $recursivetags; $i++)
{
$tag['close_open_pos'] = strpos($bbcode_lower, "[/$tag[name]]", $tag['close_open_pos'] + 1);
if ($tag['close_open_pos'] === false)
{ // no closing tag found, so stop parsing
$bumped = -1;
break;
}
$bumped++;
}
if ($bumped != $recursivetags)
{
$startpos = $tag['begin_end_pos'];
continue;
}
$tag['close_end_pos'] = strpos($bbcode_lower, ']', $tag['close_open_pos'] + 1) + 1;

$data = substr($bbcode, $tag['begin_end_pos'], $tag['close_open_pos'] - $tag['begin_end_pos']);

// standard replace
if (isset($bbcode_search["$tag[name]"]["$hasoption"]['replace']))
{
$htmltag = $bbcode_search["$tag[name]"]["$hasoption"]['replace'];
$parseddata = "<$htmltag>$data</$htmltag>";
}
// html replace
else if (isset($bbcode_search["$tag[name]"]["$hasoption"]['replace_html']))
{
$parseddata = str_replace(array('\5', '\7', '\4'), array($tag['option'], $data, $data), $bbcode_search["$tag[name]"]["$hasoption"]['replace_html']);
}
// special handler replace
else if (isset($bbcode_search["$tag[name]"]["$hasoption"]['handler']))
{
$function = $bbcode_search["$tag[name]"]["$hasoption"]['handler'];
$parseddata = $function($data, $tag['option']);
}
// nothing to do
else
{
continue;
}
$bbcode = substr_replace($bbcode, $parseddata, $tag['begin_open_pos'], $tag['close_end_pos'] - $tag['begin_open_pos']);

$startpos = $tag['begin_end_pos'];
}
while (1);

return $bbcode;
}

// ###################### Start hasimages #######################
function contains_bbcode_img_tags($bbcode)
{
return iif(strpos(strtolower($bbcode), ' == 0 OR $bbuserinfo['showimages']))
{
// do [img]xxx
// Image size hack R1.2
// Modified by SS
// $bbcode = preg_replace('#\[img\]\s*(https?://([^<>*"' . iif(!$vboptions['allowdynimg'], '?&') . ']+|[a-z0-9/\\._\- !]+))\[/img\]#iUe', "handle_bbcode_img_match('\\1')", $bbcode);
$bbcode = preg_replace('#\[img\]\s*(https?://([^<>*"' . iif(!$vboptions['allowdynimg'], '?&') . ']+|[a-z0-9/\\._\- !]+))\[/img\]#iUe', "handle_bbcode_img_match('\\1',$iswysiwyg)", $bbcode);
//

}
$bbcode = preg_replace('#\[img\]\s*(https?://([^<>*"]+|[a-z0-9/\\._\- !]+))\[/img\]#iUe', "handle_bbcode_url('\\1', '', 'url')", $bbcode);

return $bbcode;
}

// ###################### Start handle_bbcode_img_match #######################
// this is only called by handle_bbcode_img
// Image size hack R1.2
// Modified by SS
// function handle_bbcode_img_match($link)
function handle_bbcode_img_match($link, $iswysiwyg)
//
{
$link = strip_smilies(str_replace('\\"', '"', $link));

// remove double spaces -- fixes issues with wordwrap
$link = str_replace(' ', '', $link);

// Image Size hack r1.2
// Modified by SS to resize large pics and place link to full size pic
// return '<img src="' . $link . '" border="0" alt="" />';

if ( !$iswysiwyg ) {
$max_imgsize=560;

$image= ($link);

// Get host url name for fsockopen to see if server is reachable
$img_host=str_replace('http://','',$link);
$img_host=substr($img_host,0,strpos($img_host,'/'));

// Check is server is reachable and timeout in 5 seconds if not
if (@fclose(@fsockopen($img_host, 80, $fsockerr1, $fsockerr2, 5))) {
// Check if image is on server
if (@fclose(@fopen("$image", "r"))) {
// Check image size and if oversize, change link
$img_width = getimagesize($link);
if ($img_width[0] > $max_imgsize) {
$biglink = '<table><tr><td align="center"><a href="' . $link . '" ><img src="'
. $link . '" width="'.$max_imgsize.'" border="0" alt=""><br>Picture has been resized, click for full size pic</a></td></tr></table>';
return $biglink;
}
else {
return '<img src="' . $link . '" border="0" alt="" />';
}
}
else {
// Image not found
return '<table border="1" cellpadding="2"><tr><td><FONT color="#FF0000">Image link is broken</font></td></tr></table>';
}
}
else {
// Server is down
return '<table border="1" cellpadding="2"><tr><td><FONT color="#FF0000">Image server is down</font></td></tr></table>';
}
}
else {
return '<img src="' . $link . '" border="0" alt="" />';
}


// End Image Size hack r1.2
}

// ###################### Start bbcodehandler_quote #######################
function handle_bbcode_quote($message, $username = '')
{
global $vboptions, $vbphrase, $stylevar, $show;

// remove empty codes
if (trim($message) == '')
{
return '';
}

// remove unnecessary escaped quotes
$message = str_replace('\\"', '"', $message);
$username = str_replace('\\"', '"', $username);

// remove smilies from username
$username = strip_smilies($username);
$show['username'] = iif($username != '', true, false);

global $stopsaveparsed, $parsed_postcache;
if ($stopsaveparsed OR $parsed_postcache['skip'] == true OR !$vboptions['cachemaxage'])
{
$show['iewidthfix'] = (is_browser('ie') AND !(is_browser('ie', 6)));
}
else
{
// this post may be cached, so we can't allow this "fix" to be included in that cache
$show['iewidthfix'] = false;
}

eval('$html = "' . fetch_template('bbcode_quote') . '";');
return $html;
}

// ###################### Start bbcodehandler_php #######################
function handle_bbcode_php($code)
{
global $vboptions, $vbphrase, $stylevar, $highlight_errors;
static $codefind1, $codereplace1, $codefind2, $codereplace2;

// remove empty codes
if (trim($code) == '')
{
return '';
}

//remove smilies
$code = strip_smilies(str_replace('\\"', '"', $code));

if (!is_array($codefind))
{
$codefind1 = array(
'<br>', // <br> to nothing
'<br />' // <br /> to nothing
);
$codereplace1 = array(
'',
''
);

$codefind2 = array(
'&gt;', // &gt; to >
'&lt;', // &lt; to <
'&quot;', // &quot; to ",
'&amp;', // &amp; to &
);
$codereplace2 = array(
'>',
'<',
'"',
'&',
);
}

// remove htmlspecialchars'd bits and excess spacing
$code = trim(str_replace($codefind1, $codereplace1, $code));
$blockheight = fetch_block_height($code); // fetch height of block element
$code = str_replace($codefind2, $codereplace2, $code); // finish replacements

// do we have an opening <? tag?
if (!preg_match('#^\s*<\?#si', $code))
{
// if not, replace leading newlines and stuff in a <?php tag and a closing tag at the end
$code = "<?php BEGIN__VBULLETIN__CODE__SNIPPET $code \r\nEND__VBULLETIN__CODE__SNIPPET ?>";
$addedtags = true;
}
else
{
$addedtags = false;
}


// highlight the string
$oldlevel = error_reporting(0);
if (PHP_VERSION >= '4.2.0')
{
$buffer = highlight_string($code, true);
}
else
{
@ob_start();
highlight_string($code);
$buffer = @ob_get_contents();
@ob_end_clean();
}
error_reporting($oldlevel);

// if we added tags above, now get rid of them from the resulting string
if ($addedtags)
{
$search = array(
'#(<|&lt;)\?php( |&nbsp;)BEGIN__VBULLETIN__CODE__SNIPPET#siU',
'#(<(span|font).*>)(<|&lt;)\?(</\\2>(<\\2.*>))php( |&nbsp;)BEGIN__VBULLETIN__CODE__SNIPPET#siU',
'#END__VBULLETIN__CODE__SNIPPET( |&nbsp;)\?(>|&gt;)#siU'
);
$replace = array(
'',
'\\5',
''
);
$buffer = preg_replace($search, $replace, $buffer);
}

$buffer = str_replace('[', '[', $buffer);
$buffer = preg_replace('/&amp;#([0-9]+);/', '&#$1;', $buffer); // allow unicode entities back through
$code = &$buffer;

eval('$html = "' . fetch_template('bbcode_php') . '";');
return $html;
}

// ###################### Start bbcodehandler_code #######################
function handle_bbcode_code($code)
{
global $vboptions, $vbphrase, $stylevar;

// remove empty codes
if (trim($code) == '')
{
return '';
}

// remove unnecessary line breaks and escaped quotes
$code = str_replace(array('<br>', '<br />', '\\"'), array('', '', '"'), $code);

// remove smilies
$code = strip_smilies($code);

// fetch height of block element
$blockheight = fetch_block_height($code);

eval('$html = "' . fetch_template('bbcode_code') . '";');
return $html;
}

// ###################### Start bbcodehandler_html #######################
function handle_bbcode_html($code)
{
global $vboptions, $vbphrase, $stylevar, $html_allowed;
static $regexfind, $regexreplace;

// remove empty codes
if (trim($code) == '')
{
return '';
}

//remove smilies
$code = strip_smilies(str_replace('\\"', '"', $code));

if (!is_array($regexfind))
{
$regexfind = array(
'#<br( /)?>#siU', // strip <br /> codes
'#(&amp;\w+;)#siU', // do html entities
'#&lt;!--(.*)--&gt;#siU', // italicise comments
'#&lt;(.+)&gt;#esiU' // push code through the tag handler
);
$regexreplace = array(
'', // strip <br /> codes
'<b><i>\1</i></b>', // do html entities
'<i>&lt;!--\1--&gt;</i>', // italicise comments
"handle_bbcode_html_tag('\\1')" // push code through the tag handler
);
}

if ($html_allowed)
{
$regexfind[] = '#\<(.+)\>#esiU';
$regexreplace[] = "handle_bbcode_html_tag(htmlspecialchars_uni(strips lashes('\\1')))";
}
// parse the code
$code = preg_replace($regexfind, $regexreplace, $code);

// how lame but HTML might not be on in signatures
if ($html_allowed)
{
$regexfind = array_pop($regexfind);
$regexreplace = array_pop($regexreplace);
}

$code = str_replace('[', '[', $code);

// fetch height of block element
$blockheight = fetch_block_height($code);

eval('$html = "' . fetch_template('bbcode_html') . '";');
return $html;
}

//#####################multi-Wasserstandshack######################
function wsmhack ($text) {
$wsm_string = "#\[wsm\] ([a-zA-Z0-9 \.\-\_]{1,30}) \| (\d+\.\d+|\d+\.\d+\.\d+) \| (\d+:\d+) \| ([\d\.,]+) (von|of) ([\d\.,]+) MB \| (\d+) Quellen \| (\d+) volle Quellen \[\/wsm\]#si";
if(preg_match_all($wsm_string, $text, $wsm_match)) {
$wsm_lock = false;
for($i=0; $i<count($wsm_match[0]); $i++) {
if($wsm_match[4][$i]>$wsm_match[6][$i]) {
$wsm_match[1][$i]="FEHLER!";
$wsm_match[4][$i]=$wsm_match[6][$i];
}
$wsm_dl_size = ceil(str_replace(',', '.', $wsm_match[4][$i]));
$wsm_co_size = ceil(str_replace(',', '.', $wsm_match[6][$i]));
if($wsm_co_size==0) {
$wsm_match[1][$i]="FEHLER!";
$wsm_co_size= 1;
}
$wsm_percentage_total = $wsm_co_size/100;
$wsm_percentage = $wsm_dl_size/$wsm_percentage_total;
$wsm_image_dl_length = 2*ceil($wsm_percentage);
$wsm_image_mi_length = 200-$wsm_image_dl_length;
if($wsm_image_dl_length==0) {
$wsm_image = "<img src=\"images/ws_li.gif\"><img src=\"images/ws_mi.gif\" width=200 height=12><img src=\"images/ws_re.gif\">";
}
elseif($wsm_image_dl_length==200) {
$wsm_image = "<img src=\"images/ws_li.gif\"><img src=\"images/ws_dl.gif\" width=".$wsm_image_dl_length." height=12><img src=\"images/ws_re.gif\">";
}
else {
$wsm_image = "<img src=\"images/ws_li.gif\"><img src=\"images/ws_dl.gif\" width=".($wsm_image_dl_length-1)." height=12><img src=\"images/ws_sp.gif\"><img src=\"images/ws_mi.gif\" width=".$wsm_image_mi_length." height=12><img src=\"images/ws_re.gif\">";
}
if($i%2==0){
$wsm_replace ="<tr class=\"alt2\"><td style='font-size:8pt;' valign='top'>".$wsm_match[1][$i]."</td><td style='font-size:8pt;' valign='top'>".$wsm_match[2][$i]." | ".$wsm_match[3][$i]."</td><td style='font-size:8pt;' valign='top'>".$wsm_image."</td><td style='font-size:8pt;' valign='top'>".$wsm_match[4][$i]." / ".$wsm_match[6][$i]." MB</td><td style='font-size:8pt;' align='right' valign='top'>(".round($wsm_percentage)." %)</td><td style='font-size:8pt;' valign='top'>".$wsm_match[7][$i]." / ".$wsm_match[8][$i]."</td></tr>";
}
else{
$wsm_replace ="<tr class=\"alt1\"><td style='font-size:8pt;' valing='top'>".$wsm_match[1][$i]."</td><td style='font-size:8pt;' valign='top'>".$wsm_match[2][$i]." | ".$wsm_match[3][$i]."</td><td style='font-size:8pt;' valign='top'>".$wsm_image."</td><td style='font-size:8pt;' valign='top'>".$wsm_match[4][$i]." / ".$wsm_match[6][$i]." MB</td><td style='font-size:8pt;' align='right' valign='top'>(".round($wsm_percentage)." %)</td><td style='font-size:8pt;' valign='top'>".$wsm_match[7][$i]." / ".$wsm_match[8][$i]."</td></tr>";
}
$text = str_replace($wsm_match[0][$i],$wsm_replace,$text);
}
$text = "<table cellspacing=\"1\" cellpadding=\"2\" bgcolor=\"#FFFFF0\" align=\"center\"><tr><td class=\"tcat\" colspan=\"6\" align=\"center\"><b>Wasserstand</b></td></tr>".$text."</table>";
return $text;
}
else {
return $text;
}
}
//Ende multi-Wasserstandshack
// ###################### Start bbcodehandler_html_tag #######################
function handle_bbcode_html_tag($tag)
{
global $bbcode_html_colors;

if (empty($bbcode_html_colors))
{
fetch_bbcode_html_colors();
}

// change any embedded URLs so they don't cause any problems
$tag = preg_replace('#\[(email|url)=&quot;(.*)&quot;\]#siU', '[$1="$2"]', $tag);

// find if the tag has attributes
$spacepos = strpos($tag, ' ');
if ($spacepos != false)
{
// tag has attributes - get the tag name and parse the attributes
$tagname = substr($tag, 0, $spacepos);
$tag = preg_replace('# (\w+)=&quot;(.*)&quot;#siU', ' \1=<font color="' . $bbcode_html_colors['attribs'] . '">&quot;\2&quot;</font>', $tag);
}
else
{
// no attributes found
$tagname = $tag;
}
// remove leading slash if there is one
if ($tag{0} == '/')
{
$tagname = substr($tagname, 1);
}
// convert tag name to lower case
$tagname = strtolower($tagname);

// get highlight colour based on tag type
switch($tagname)
{
// table tags
case 'table':
case 'tr':
case 'td':
case 'th':
case 'tbody':
case 'thead':
$tagcolor = $bbcode_html_colors['table'];
break;
// form tags
case 'form';
case 'input':
case 'select':
case 'option':
case 'textarea':
case 'label':
case 'fieldset':
case 'legend':
$tagcolor = $bbcode_html_colors['form'];
break;
// script tags
case 'script':
$tagcolor = $bbcode_html_colors['script'];
break;
// style tags
case 'style':
$tagcolor = $bbcode_html_colors['style'];
break;
// anchor tags
case 'a':
$tagcolor = $bbcode_html_colors['a'];
break;
// img tags
case 'img':
$tagcolor = $bbcode_html_colors['img'];
break;
// if (vB Conditional) tags
case 'if':
case 'else':
case 'elseif':
$tagcolor = $bbcode_html_colors['if'];
break;
// all other tags
default:
$tagcolor = $bbcode_html_colors['default'];
break;
}

$tag = '<font color="' . $tagcolor . '">&lt;' . str_replace('\\"', '"', $tag) . '&gt;</font>';
return $tag;
}

// ###################### Start bbcodehandler_list2 #######################
// replacement for bbcodehandler_list... experimental at this time
function handle_bbcode_list($string)
{
#echo '<p><b>$string</b><br />' . nl2br(htmlspecialchars($string)) . '</p>';
global $BBCODES, $wysiwygparse;
// might need this in the future
//$string = stripslashes($string);
$string = str_replace('\"', '"', $string);
$str = $string;

// getList
$slashlist = strpos($str, ']', stripos($str, '[/list')) + 1;
$tmp = substr($str, 0, $slashlist);
$openlist = strlen($tmp) - stripos(strrev($tmp), strrev('[list')) - strlen('[list');
$getList = substr($str, $openlist, ($slashlist - $openlist));

#echo '<p><b>$getList</b><br />' . htmlspecialchars($getList) . '</p>';

// processList
if (preg_match('#\s*(\[list(=(&quot;|"|\'|)([^\]]*)\\3)?\](.*)\[/list(=\\3\\4\\3)?\])\s*#si', $getList, $regs))
{
$getList = $regs[0];
#echo '<p><b>Regex Match</b><br />' . htmlspecialchars($regs[0]) . '</p>';
$str = preg_split('#\s*\[\*\]#s', $regs[5], -1, PREG_SPLIT_NO_EMPTY);

if (empty($str))
{
return preg_replace('#\s*' . preg_quote($getList, '#') . '\s*#s', nl2br("\n\n"), $string);
}

if ($regs[4])
{
switch ($regs[4])
{
case 'A':
$listtype = 'upper-alpha';
break;
case 'a':
$listtype = 'lower-alpha';
break;
case 'I':
$listtype = 'upper-roman';
break;
case 'i':
$listtype = 'lower-roman';
break;
case '1': //break missing intentionally
default:
$listtype = 'decimal';
break;
}
}
else
{
$listtype = '';
}

$processList = iif($listtype, '<ol style="list-style-type: ' . $listtype . '">', '<ul>');

$bad_tag_list = '(br|p|li|ul|ol)';

foreach ($str AS $key => $val)
{
$firstbit = strtolower(substr($val, 0, 3));
if ($firstbit === '<ul' OR $firstbit === '<ol' OR $firstbit === '<li' OR $firstbit == '')
{
$processList .= $val;
}
else
{
if ($wysiwygparse)
{
$exploded = preg_split("#(\r\n|\n|\r)#", $val);

$val = '';
foreach ($exploded AS $value)
{
if (!preg_match('#(</' . $bad_tag_list . '>|<' . $bad_tag_list . '\s*/>)$#iU', $value))
{
if (trim($value) == '')
{
$value = '&nbsp;';
}
//$val .= '<p style="margin:0px">' . $value . "</p>";
$val .= $value . "<br />\n";
}
else
{
$val .= "$value\n";
}
}
$val = preg_replace('#<br />+\s*$#i', '', $val);

}
$processList .= '<li>' . $val . '</li>';
}
}

$processList .= iif($listtype, '</ol>', '</ul&gt;');

#echo '<p><b>$processList</b><br />' . htmlspecialchars($processList) . '</p>';

// replace found list characters with parsed list characters
if ($wysiwygparse)
{
$processList = str_replace('<p style="margin:0px"></p>', '', $processList);
}

//$out = preg_replace('#\s*' . preg_quote($getList, '#') . '\s*#s', str_replace(array('\\', '$'), array('\\\\', '\$'), $processList), $string);
$out = str_replace($getList, $processList, $string);
#echo '<p><b>Return Value</b><br />' . nl2br(htmlspecialchars($out)) . '</p><hr />';
return $out;
}
else
{
return $string;
}

}

// ###################### Start handle_bbcode_url #######################
function handle_bbcode_url($text, $link, $type = 'url')
{
global $wysiwygparse;

if (trim($text) == '')
{
return '';
}

$rightlink = trim($link);
if (empty($rightlink))
{
// no option -- use param
$rightlink = trim($text);
}
$rightlink = strip_smilies(str_replace('\\"', '"', $rightlink));
$rightlink = str_replace(array('`', '"', "'", '['), array('`', '&quot;', ''', '['), $rightlink);

if ($type == 'url' AND !preg_match('#^[a-z0-9]+://#si', $rightlink))
{
$rightlink = "http://$rightlink";
}

if ($type == 'ed2k' AND !preg_match('#^[a-z0-9]+://#si', $rightlink))
{
$rightlink = "ed2k://$rightlink";
}

if (!trim($link) OR $text == $rightlink)
{
$tmp = unhtmlspecialchars($rightlink);
if (strlen($tmp) > 55 AND !$wysiwygparse)
{
$text = htmlspecialchars_uni(substr($tmp, 0, 35) . '...' . substr($tmp, -15));
}
}

// remove double spaces -- fixes issues with wordwrap
$rightlink = str_replace(' ', '', $rightlink);

// strip extra quotes from hyperlink
$text = str_replace('\"', '"', $text);

if ($type == 'url' OR $type == 'ed2k')
{
// standard URL hyperlink
if ($type == 'ed2k')
{
$teile = explode("|", $rightlink);
return "<a href=\"$rightlink\" target=\"_self\">$text</a> - <a href=\"http://stats.razorback2.com/ed2khistory?ed2k=$teile[4]\" target=\"_blank\">Verteilung</a>";
}
else
{
return "<a href=\"$rightlink\" target=\"_blank\">$text</a>";
}
}
else
{
// email hyperlink (mailto:)
if (is_valid_email($rightlink))
{
return "<a href=\"mailto:$rightlink\">$text</a>";
}
else
{
// not a valid email - don't link it
return "<span title=\"$rightlink\">$text</span>";
}
}
}
but the hack does .... nothing!

Does anybody find the mistake? :(

http://www.mr-goodbyte.de/greetz.png

Doc Great
09-19-2005, 05:56 AM
Maybe you like to check this version http://www.vbulletin-germany.com/forum/showthread.php?p=81578#post81578 (it definitely works) ;)

Greetz,
Sven

Steve St.Lauren
09-19-2005, 06:44 PM
I get mad on it .. I'm quite sure I've made all changes (in VB 3.08) I have to do:
functions_showthread (strongly shortend):
// showthread / showpost style Postbit
default:
if (!empty($post['pagetext_html']))
{
$parsed_postcache['skip'] = true;
if ($post['hasimages'])
{
// Image Size hack r1.2
// Modified by SS
// $post['message'] = handle_bbcode_img($post['pagetext_html'], $forum['allowimages']);
$post['message'] = handle_bbcode_img($post['pagetext_html'], $forum['allowimages'], 0);
//

}
else
{
$post['message'] = &$post['pagetext_html'];
}
}
else
{
$parsed_postcache['skip'] = false;
$post['message'] = parse_bbcode($post['pagetext'], $forum['forumid'], $post['allowsmilie']);
}


functions_bbcodeparse (strongly shortend):
// ###################### Start bbcodeparse #######################
function parse_bbcode($bbcode, $forumid = 0, $allowsmilie = 1, $isimgcheck = 0, $parsedtext = '', $parsedhasimages = 0, $iswysiwyg = 0)
{
// $parsedtext contains text that has already been turned into HTML and just needs images checking
// $parsedhasimages specifies if the text has images in that need parsing

global $vboptions, $parsed_postcache;

$donl2br = 1;

if (empty($forumid))
{
$forumid = 'nonforum';
}

switch($forumid)
{
// parse private message
case 'privatemessage':
$dohtml = $vboptions['privallowhtml'];
$dobbcode = $vboptions['privallowbbcode'];
$dobbimagecode = $vboptions['privallowbbimagecode'];
$dosmilies = $vboptions['privallowsmilies'];
break;

// parse user note
case 'usernote':
$dohtml = $vboptions['unallowhtml'];
$dobbcode = $vboptions['unallowvbcode'];
$dobbimagecode = $vboptions['unallowimg'];
$dosmilies = $vboptions['unallowsmilies'];
break;

// parse non-forum item
case 'nonforum':
$dohtml = $vboptions['allowhtml'];
$dobbcode = $vboptions['allowbbcode'];
$dobbimagecode = $vboptions['allowbbimagecode'];
$dosmilies = $vboptions['allowsmilies'];
if ($allowsmilie != 1)
{
$dosmilies = $allowsmilie;
}
break;

case 'announcement':
global $post;
$dohtml = $post['allowhtml'];
if ($dohtml)
{
$donl2br = 0;
}
$dobbcode = $post['allowbbcode'];
$dobbimagecode = $post['allowbbcode'];
$dosmilies = $allowsmilie;
break;

// parse forum item
default:
$forum = fetch_foruminfo($forumid);
$dohtml = $forum['allowhtml'];
$dobbimagecode = $forum['allowimages'];
$dosmilies = $forum['allowsmilies'];
if ($allowsmilie != 1)
{
$dosmilies = $allowsmilie;
}
$dobbcode = $forum['allowbbcode'];
break;
}

if (!empty($parsedtext))
{
if ($parsedhasimages)
{

// Image size hack R1.2
// Modified by SS
// return handle_bbcode_img($parsedtext, $dobbimagecode);
return handle_bbcode_img($parsedtext, $dobbimagecode, $iswysiwyg);
//

}
else
{
return $parsedtext;
}
}
else
{
if ($isimgcheck)
{ // do this since we're only checking for smilies and IMG code
$dobbcode = 0;
}
return parse_bbcode2($bbcode, $dohtml, $dobbimagecode, $dosmilies, $dobbcode, $iswysiwyg, $donl2br);
}
}

// ###################### Start checkparam #######################
// called by the preg_replace for custom bbcodes - ensures that
// users can't get around censor text by adding empty bbcodes
// such as 'censoredword' into their messages
function handle_bbcode_parameter($param, $return)
{
if (trim($param) != '')
{
return str_replace('\\"', '"', $return);
}
}

// ###################### Start handle_custom_bbcode #######################
function handle_custom_bbcode($param, $option, $return)
{
if (trim($param) == '')
{
return '';
}

$param = str_replace('\\"', '"', $param);
$return = str_replace('\\"', '"', $return);
$option = str_replace(array('\\"', '['), array('"', '['), $option);

$return = preg_replace('#%(?!\d+\$s)#', '%%', $return);
return sprintf($return, $param, $option);
}

// ###################### Start bbcodeparse2 #######################
function parse_bbcode2($bbcode, $dohtml, $dobbimagecode, $dosmilies, $dobbcode, $iswysiwyg = 0, $donl2br = 1)
{
// parses text for vB code, smilies and censoring

global $DB_site, $vboptions, $bbuserinfo, $templatecache, $smiliecache;
global $html_allowed;
global $threadid;

if ($vboptions['wordwrap'] != 0 AND !$iswysiwyg)
{
$bbcode = fetch_word_wrapped_string($bbcode);
}

$html_allowed = true;
// ********************* REMOVE HTML CODES ***************************
if (!$dohtml)
{
/*static $html_find = array('&lt;', '&gt;', '<', '>');
static $html_replace = array('&amp;lt;', '&amp;gt;', '&lt;','&gt;');

$bbcode = str_replace($html_find, $html_replace, $bbcode);*/
$bbcode = htmlspecialchars_uni($bbcode);
$html_allowed = false;
} // end html
// Image Size hack r1.2
// Added by SS to resize large pics and place link to full size pic

// set max_imgsize to the max size you want pictures to be
$max_imgsize=560;

// check for img tag and see if html is enabled and if not using wysiwyg editor
if (strstr(strtolower($bbcode),'<img') AND $dohtml AND !$iswysiwyg) {
$tagstartcounter=0;
do {
$bbcodelength=strlen($bbcode);
// pull tag from bbcode
$tagopen=(strpos(strtolower($bbcode),'<img',$tagstartcounter));
$tagclose=(strpos($bbcode,'>',$tagopen));
$bbtag=substr($bbcode,$tagopen,($tagclose-$tagopen+1));
$bbtag = str_replace('\'','"',$bbtag);

// get link from bbtag
$linkopen=(strpos(strtolower($bbtag),'<img'));
$linkopen2=(strpos(strtolower($bbtag),'"',$linkopen));
$linkclose=(strpos($bbtag,'"',$linkopen2+1));
$link=substr($bbtag,$linkopen2+1,($linkclose-$linkopen2-1));

// remove double spaces -- fixes issues with wordwrap
$link = str_replace(' ', '', $link);

// Check to see if image exists
$image= ($link);

// Get host url name for fsockopen to see if server is reachable
$img_host=str_replace('http://','',$link);
$img_host=substr($img_host,0,strpos($img_host,'/'));

// set image found by default
$image_found=true;

// Check is server is reachable and timeout in 5 seconds if not
if (@fclose(@fsockopen($img_host, 80, $fsockerr1, $fsockerr2, 5))) {
// Check if image is on server
if (@fclose(@fopen("$image", "r"))) {
// Check image size and if oversize, change bbtag
$img_width = getimagesize($link);
if ($img_width[0] > $max_imgsize) {
$bbtag = '<table><tr><td align="center"><a href="' . $link . '"><img src="'
. $link . '" width="'.$max_imgsize.'" border="0"'.substr($bbtag,$linkclose+1,strlen($bbtag)-$linkclose+1).'<br>Picture has been resized, click for full size pic</a></td></tr></table>';
}
}
else {
// Image not found
$bbtag='<table border="1" cellpadding="2" id="image_found"><tr><td><FONT color="#FF0000">Image link is broken</font></td></tr></table>';
$image_found=false;
}
}
else {
// Server is down
$bbtag='<table border="1" cellpadding="2" id="image_found"><tr><td><FONT color="#FF0000">Image server is down</font></td></tr></table>';
$image_found=false;
}


// replace bbtag into bbcode
$bbcode=substr($bbcode,0,$tagopen).$bbtag.substr($ bbcode,$tagclose+1,$bbcodelength-$tagclose);

// check if image was found to see what where to start the next search
if ($image_found) {
// move pointer back to img tag in case it moved
$tagopen=$tagopen+(strpos(strtolower($bbtag),'<img'));
}
else {
// move pointer back to img tag in case it moved
$tagopen=$tagopen+(strpos(strtolower($bbtag),'id="image_found"'));
}


// start search from end of previous tag
$tagstartcounter=(strpos($bbcode,'>',$tagopen));
} while (strpos(strtolower($bbcode),'<img',$tagstartcounter));
}

// End Image Size hack r1.2
// ********************* PARSE SMILIES ***************************
if ($dosmilies)
{
static $smilie_find, $smilie_replace;

if (empty($smilie_find) OR empty($smilie_replace))
{
if (isset($smiliecache))
{
// we can get the smilies from the smiliecache php template
DEVDEBUG('returning smilies from the template cache');
if (is_array($smiliecache))
{
foreach ($smiliecache AS $smilie)
{
if (trim($smilie['smilietext']) != '')
{
if (!$dohtml)
{
$smilie_find[] = htmlspecialchars_uni(trim($smilie['smilietext']));
}
else
{
$smilie_find[] = trim($smilie['smilietext']);
}
// if you change this HTML tag, make sure you change the smilie remover in code/php/html tag handlers!
if ($iswysiwyg)
{
$smilie_replace[] = "<img src=\"$smilie[smiliepath]\" border=\"0\" alt=\"\" title=\"$smilie[title]\" smilieid=\"$smilie[smilieid]\" class=\"inlineimg\" />";
}
else
{
$smilie_replace[] = "<img src=\"$smilie[smiliepath]\" border=\"0\" alt=\"\" title=\"$smilie[title]\" class=\"inlineimg\" />";
}
}
}
}
}
else
{
// we have to get the smilies from the database
DEVDEBUG('querying smilies for parse_bbcode2();');
$smilies = $DB_site->query("
SELECT smilietext, smiliepath, smilieid FROM " . TABLE_PREFIX . "smilie
");
while ($smilie = $DB_site->fetch_array($smilies))
{
if(trim($smilie['smilietext']) != '')
{
if (!$dohtml)
{
$smilie_find[] = htmlspecialchars_uni(trim($smilie['smilietext']));
}
else
{
$smilie_find[] = trim($smilie['smilietext']);
}
// if you change this HTML tag, make sure you change the smilie remover in code/php/html tag handlers!
if ($iswysiwyg)
{
$smilie_replace[] = "<img src=\"$smilie[smiliepath]\" border=\"0\" alt=\"\" title=\"$smilie[title]\" smilieid=\"$smilie[smilieid]\" class=\"inlineimg\" />";
}
else
{
$smilie_replace[] = "<img src=\"$smilie[smiliepath]\" border=\"0\" alt=\"\" title=\"$smilie[title]\" class=\"inlineimg\" />";
}
}
}
}
}

// str_replace the text using the smilie_find and smilie_replace arrays
#$bbcode = str_replace($smilie_find, $smilie_replace, $bbcode);

// alternative method to avoid parsing HTML entities as smilies:
foreach($smilie_find AS $smiliekey => $smiliefind)
{
$bbcode = preg_replace('/(?<!&amp|&quot|&lt|&gt|&copy|&#[0-9]{1}|&#[0-9]{2}|&#[0-9]{3}|&#[0-9]{4}|&#[0-9]{5})' . preg_quote($smiliefind, '/') . '/s', $smilie_replace["$smiliekey"], $bbcode);
}
} // end smilies
$bbcode=wsmhack($bbcode);

// do new lines
$wysiwygtype = null;
if ($iswysiwyg == 1)
{
$whitespacefind = array(
'#(\r\n|\n|\r)?( )*(\[\*\]|\[/list|\|/indent\])( )*(\r\n|\n|\r)?#si'
);
$whitespacereplace = array(
'\3',
'\1'
);
$bbcode = preg_replace($whitespacefind, $whitespacereplace, $bbcode);

if (is_browser('ie'))
{
$wysiwygtype = 'ie';

// this fixes an issue caused by odd nesting of tags. This causes IE's
// WYSIWYG editor to display the output as vB will display it
$rematch_find = array(
'#\[b\](.*)\[/b\]#siUe',
'#\[i\](.*)\[/i\]#siUe',
'#\[u\](.*)\[/u\]#siUe',
);
$rematch_replace = array(
"bbcode_rematch_tags_wysiwyg('\\1', 'b')",
"bbcode_rematch_tags_wysiwyg('\\1', 'i')",
"bbcode_rematch_tags_wysiwyg('\\1', 'u')",
);
$bbcode = preg_replace($rematch_find, $rematch_replace, $bbcode);

$bbcode = '<p style="margin:0px">' . preg_replace('#(\r\n|\n|\r)#', "</p>\n<p style=\"margin:0px\">", trim($bbcode)) . '</p>';
}
else
{
$bbcode = nl2br($bbcode);
$wysiwygtype = 'moz_css';
}
$bbcode = preg_replace('#(\)(((?>[^\[]*?|(?R))|(?>.))*)(\[/list(=\\3\\4\\3)?\])#siUe', "remove_wysiwyg_breaks('\\0', \$wysiwygtype)", $bbcode);

//$bbcode = preg_replace('#\[list#i', '</p>[list', $bbcode);
//$bbcode = preg_replace('#\[/list(=(&quot;|"|\'|)[a-z0-9+]\\2)?](?!\[\*\])#i', '[/list\\1]<p style="margin:0px">', $bbcode);

$bbcode = preg_replace('#<p style="margin:0px">\s*</p>(?!\s*\[list|$)#i', '<p style="margin:0px">&nbsp;</p>', $bbcode);
$bbcode = str_replace('<p style="margin:0px"></p>', '', $bbcode);

// convert tabs to four &nbsp;
$bbcode = str_replace("\t", '&nbsp;&nbsp;&nbsp;&nbsp;', $bbcode);
}
// new lines to <br />
else
{
$whitespacefind = array(
'#(\r\n|\n|\r)?( )*(\[\*\]|\[/list|\[list|\[indent)#si',
'#(/list\]|/indent\])( )*(\r\n|\n|\r)?#si'
);
$whitespacereplace = array(
'\3',
'\1'
);
$bbcode = preg_replace($whitespacefind, $whitespacereplace, $bbcode);

if ($donl2br)
{
$bbcode = nl2br($bbcode);
}
}

// ********************* PARSE BBCODE TAGS ***************************
if ($dobbcode AND strpos($bbcode, '[') !== false AND strpos($bbcode, ']') !== false)
{
switch($vboptions['usebbcodeparserecurse'])
{
case 1:
$parsefunc = 'parse_bbcode_recurse';
break;

case 0:
$parsefunc = 'parse_bbcode_regex';
break;

default:
$parsefunc = 'parse_bbcode_regexrecurse';
}
$bbcode = $parsefunc($bbcode, $iswysiwyg);

if ($wysiwygtype == 'ie')
{
$bbcode = preg_replace('#<p style="margin:0px"><(p|div) align="([a-z]+)">(.*)</\\1></p>#siU', '<p style="margin:0px" align="\\2">\\3</p>', $bbcode);
}
if ($iswysiwyg)
{
// need to display smilies in code/php/html tags as literals
$bbcode = preg_replace('#\[(code|php|html)\](.*)\[/\\1\]#siUe', "strip_smilies(str_replace('\\\"', '\"', '\\0'), true)", $bbcode);
}
}

// parse out nasty active scripting codes
static $global_find = array('/javascript:/si', '/about:/si', '/vbscript:/si', '/&(?![a-z0-9#]+;)/si');
static $global_replace = array('javascript<b></b>:', 'about<b></b>:', 'vbscript<b></b>:', '&amp;');
$bbcode = preg_replace($global_find, $global_replace, $bbcode);

// run the censor
$bbcode = fetch_censored_text($bbcode);
$has_img_tag = contains_bbcode_img_tags($bbcode);

// save the cached post
global $stopsaveparsed, $parsed_postcache;
if (!$stopsaveparsed AND $parsed_postcache['skip'] != true)
{
$parsed_postcache['text'] = $bbcode;
$parsed_postcache['images'] = $has_img_tag;
}

// do [img] tags if the item contains images
if(($dobbcode OR $dobbimagecode) AND $has_img_tag)
{
// Image resize hack R1.2
// Modified by SS
// $bbcode = handle_bbcode_img($bbcode, $dobbimagecode);
$bbcode = handle_bbcode_img($bbcode, $dobbimagecode, $iswysiwyg);
//

}
$myreplies = $DB_site->query_first("SELECT COUNT(postid) AS count FROM ". TABLE_PREFIX . "post WHERE userid='$bbuserinfo[userid]' and threadid='$threadid'");
if ($myreplies[count] > 0 || $bbuserinfo['usergroupid'] == 5 || $bbuserinfo['usergroupid'] == 6 || $bbuserinfo['usergroupid'] == 7) {
$bbcode = preg_replace('/\\[hide\\](.*)\\[\/hide\\]/si', 'Hidden Text: <br>\\1', $bbcode);
} else {
$bbcode = preg_replace('/\\[hide\\](.*)\\[\/hide\\]/si', '<b><center><img src="./hide.gif" alt=Du musst eine Antwort erstellen um den Inhalt zu sehen!></center></b><br>', $bbcode);
}

return $bbcode;
}

// ###################### Start remove_wysiwyg_breaks #######################
function bbcode_rematch_tags_wysiwyg($innertext, $tagname)
{
// This function replaces line breaks with [/tag]\n[tag].
// It is intended to be used on text inside [tag] to fix an IE WYSIWYG issue.

$innertext = str_replace('\"', '"', $innertext);
return "[$tagname]" . preg_replace('#(\r\n|\n|\r)#', "[/$tagname]\n[$tagname]", $innertext) . "[/$tagname]";
}

// ###################### Start remove_wysiwyg_breaks #######################
function remove_wysiwyg_breaks($fulltext, $wysiwygtype = 'ie')
{
$fulltext = str_replace('\"', '"', $fulltext);
preg_match('#^(\[list(=(&quot;|"|\'|)(.*)\\3)?\])(.*?)(\[/list(=\\3\\4\\3)?\])$#siU', $fulltext, $matches);
$prepend = $matches[1];
$innertext = $matches[5];

$find = array("</p>\n<p style=\"margin:0px\">", '<br />', '<br>');
$replace = array("\n", "\n", "\n");
$innertext = str_replace($find, $replace, $innertext);

if ($wysiwygtype == 'ie')
{
return '</p>' . $prepend . $innertext . '<p style="margin:0px">';
}
else
{
return $prepend . $innertext . '';
}
}

// ###################### Start bbcodeparse2_regexrecurse #######################
function parse_bbcode_regexrecurse($bbcode, $iswysiwyg)
{
global $DB_site, $vboptions, $bbuserinfo, $templatecache, $datastore, $wysiwygparse, $session;
static $BBCODES;

$wysiwygparse = $iswysiwyg;

if (empty($BBCODES['standard']))
{
$BBCODES = fetch_bbcode_definitions();

$doubleRegex = '/(\[)(%s)(=)(&quot;|"|\'|)([^"]*)(\\4)\](.*)(\[\/%s\])/esiU';
$singleRegex = '/(\[)(%s)(\])(.*)(\[\/%s\])/esiU';

if (isset($datastore['bbcodecache'])) // get bbcodes from the datastore
{
$bbcodecache = unserialize($datastore['bbcodecache']);

foreach ($bbcodecache AS $bbregex)
{
if ($bbregex['twoparams'])
{
$regex = sprintf($doubleRegex, $bbregex['bbcodetag'], $bbregex['bbcodetag']);
$bbregex['bbcodereplacement'] = str_replace(array('\\7', '\\5'), array('%1$s', '%2$s'), $bbregex['bbcodereplacement']);
$tagname = "[$bbregex[bbcodetag]=";
$checkparam = '\\7';
$checkoption = '\\5';
}
else
{
$regex = sprintf($singleRegex, $bbregex['bbcodetag'], $bbregex['bbcodetag']);
$bbregex['bbcodereplacement'] = str_replace('\\4', '%1$s', $bbregex['bbcodereplacement']);
$tagname = "[$bbregex[bbcodetag]]";
$checkparam = '\\4';
$checkoption = '';
}
$BBCODES['custom']['find']["$tagname"] = $regex;
$BBCODES['custom']['replace']["$tagname"] = "handle_custom_bbcode('$checkparam', '$checkoption', '" . str_replace("'", "\'", $bbregex['bbcodereplacement']) . "')";
}
}
else // query bbcodes out of the database
{
$bbcodes = $DB_site->query("
SELECT bbcodetag, bbcodereplacement, twoparams
FROM " . TABLE_PREFIX . "bbcode
");
while ($bbregex = $DB_site->fetch_array($bbcodes))
{
if ($bbregex['twoparams'])
{
$regex = sprintf($doubleRegex, $bbregex['bbcodetag'], $bbregex['bbcodetag']);
$bbregex['bbcodereplacement'] = str_replace(array('\\7', '\\5'), array('%1$s', '%2$s'), $bbregex['bbcodereplacement']);
$tagname = "[$bbregex[bbcodetag]=";
$checkparam = '\\7';
$checkoption = '\\5';
}
else
{
$regex = sprintf($singleRegex, $bbregex['bbcodetag'], $bbregex['bbcodetag']);
$bbregex['bbcodereplacement'] = str_replace('\\4', '%1$s', $bbregex['bbcodereplacement']);
$tagname = "[$bbregex[bbcodetag]]";
$checkparam = '\\4';
$checkoption = '';
}
$BBCODES['custom']['find']["$tagname"] = $regex;
$BBCODES['custom']['replace']["$tagname"] = "handle_custom_bbcode('$checkparam', '$checkoption', '" . str_replace("'", "\'", $bbregex['bbcodereplacement']) . "')";
}
}
}

if ($iswysiwyg) // text to show in the WYSIWYG editor box
{
$bbcode_find = $BBCODES['standard']['find'];
$bbcode_replace = $BBCODES['standard']['replace'];
}
else // text to show everywhere else
{
//$bbcode_find = array_merge($BBCODES['standard']['find'], $BBCODES['custom']['find']);
//$bbcode_replace = array_merge($BBCODES['standard']['replace'], $BBCODES['custom']['replace']);

$bbcode_find = array_merge($BBCODES['custom']['find'], $BBCODES['standard']['find']);
$bbcode_replace = array_merge($BBCODES['custom']['replace'], $BBCODES['standard']['replace']);
}

foreach($bbcode_find AS $tag => $findregex)
{
// if using option, $tag will be '[xxx='
// if not using option, $tag will be '[xxx]'

while (stristr($bbcode, $tag) !== false)
{
// make a copy of the text pre-replacement for later comparison
$origtext = $bbcode;

$bbcode = preg_replace($findregex, $bbcode_replace["$tag"], $bbcode);

// check to see if the preg_replace actually did anything... if it didn't, break the loop
if ($origtext == $bbcode)
{
break;
}
}
}

return $bbcode;
}

// ###################### Start bbcodeparse2_regex #######################
function parse_bbcode_regex($bbcode, $iswysiwyg)
{
global $DB_site, $vboptions, $bbuserinfo, $templatecache, $datastore, $wysiwygparse, $session;
static $BBCODES;

$wysiwygparse = $iswysiwyg;

if (empty($BBCODES['standard']))
{
$BBCODES = fetch_bbcode_definitions();

$doubleRegex = '/(\[)(%s)(=)(&quot;|"|\'|)(.*)(\\4)\](.*)(\[\/%s\])/esiU';
$singleRegex = '/(\[)(%s)(\])(.*)(\[\/%s\])/esiU';

if (isset($datastore['bbcodecache']))
{ // we can get the bbcode from the bbcodecache php template
DEVDEBUG("returning bbcodes from the template cache");
$bbcodecache = unserialize($datastore['bbcodecache']);
foreach($bbcodecache AS $bbregex)
{
if ($bbregex['twoparams'])
{
$regex = sprintf($doubleRegex, $bbregex['bbcodetag'], $bbregex['bbcodetag']);
$checkparam = 7;
}
else
{
$regex = sprintf($singleRegex, $bbregex['bbcodetag'], $bbregex['bbcodetag']);
$checkparam = 4;
}
for ($i = 0; $i < 3; $i++)
{
$BBCODES['custom']['find'][] = $regex;
$BBCODES['custom']['replace'][] = "handle_bbcode_parameter('\\$checkparam','" . str_replace("'", "\'", $bbregex['bbcodereplacement']) . "')";
}
}
}
else
{ // we have to get the bbcodes from the database
DEVDEBUG("querying bbcodes for parse_bbcode2();");
$bbcodes = $DB_site->query("
SELECT bbcodetag, bbcodereplacement, twoparams
FROM " . TABLE_PREFIX . "bbcode
");
while($bbregex = $DB_site->fetch_array($bbcodes))
{
if ($bbregex['twoparams'])
{
$regex = sprintf($doubleRegex, $bbregex['bbcodetag'], $bbregex['bbcodetag']);
$checkparam = 7;
}
else
{
$regex = sprintf($singleRegex, $bbregex['bbcodetag'], $bbregex['bbcodetag']);
$checkparam = 4;
}
for ($i = 0; $i < 3; $i++)
{
$BBCODES['custom']['find'][] = $regex;
$BBCODES['custom']['replace'][] = "handle_bbcode_parameter('\\$checkparam','" . str_replace("'","\'",$bbregex['bbcodereplacement']) . "')";
}
}
}
}

if ($iswysiwyg) // text to show in the WYSIWYG editor box
{
$bbcode_find = $BBCODES['standard']['find'];
$bbcode_replace = $BBCODES['standard']['replace'];
}
else // text to show everywhere else
{
$bbcode_find = array_merge($BBCODES['standard']['find'], $BBCODES['custom']['find']);
$bbcode_replace = array_merge($BBCODES['standard']['replace'], $BBCODES['custom']['replace']);
}

// do the actual replacement
$bbcode = preg_replace($bbcode_find, $bbcode_replace, $bbcode);

return $bbcode;
}

// ###################### Start bbcodeparse2_recurse #######################
function parse_bbcode_recurse($bbcode, $iswysiwyg)
{
global $DB_site, $vboptions, $bbuserinfo, $templatecache, $datastore, $wysiwygparse;
static $BBCODES;

$wysiwygparse = $iswysiwyg;

// just get rid of old closing list tags
if (stristr($bbcode, '/list=') != false)
{
$bbcode = preg_replace('#/list=[a-z0-9]\]#siU', '/list]', $bbcode);
}

if (empty($BBCODES['standard']))
{
$BBCODES = fetch_bbcode_definitions();

if (isset($datastore['bbcodecache']))
{ // we can get the bbcode from the bbcodecache php template
DEVDEBUG("returning bbcodes from the template cache");
if (!isset($bbcodecache))
{
$bbcodecache = unserialize($datastore['bbcodecache']);
}
foreach($bbcodecache AS $thisbbcode)
{
$BBCODES['custom']['recurse']["$thisbbcode[bbcodetag]"]["$thisbbcode[twoparams]"] = array('replace_html' => $thisbbcode['bbcodereplacement']);
}
}
else
{ // we have to get the bbcodes from the database
DEVDEBUG("querying bbcodes for parse_bbcode2();");
$bbcodes = $DB_site->query("
SELECT bbcodetag, bbcodereplacement, twoparams
FROM " . TABLE_PREFIX . "bbcode
");
while($thisbbcode = $DB_site->fetch_array($bbcodes))
{
$BBCODES['custom']['recurse']["$thisbbcode[bbcodetag]"]["$thisbbcode[twoparams]"] = array('replace_html' => $thisbbcode['bbcodereplacement']);
}
}
}

if ($iswysiwyg) // text to show in wysiwyg editor
{
$bbcode_search = &$BBCODES['standard']['recurse'];
}
else // text to show everywhere else
{
$bbcode_search = &array_merge($BBCODES['standard']['recurse'], $BBCODES['custom']['recurse']);
}

$startpos = 0;

// process all the bbcode positions

do
{
$tag = array('begin_open_pos' => strpos($bbcode, '[', $startpos));
if ($tag['begin_open_pos'] === false)
{
break;
}
if ($bbcode[ $tag['begin_open_pos'] + 1 ] == '/')
{ // this is a close tag -- ignore it
$startpos = $tag['begin_open_pos'] + 1;
continue;
}

$strlen = strlen($bbcode);

$inquote = false;
$hasoption = 0;
$jumpto = 0;
for ($i = $tag['begin_open_pos']; $i <= $strlen; $i++)
{
$char = $bbcode{$i};

switch ($char)
{
case '[':
if (!$inquote AND $i != $tag['begin_open_pos'])
{
$jumpto = $i;
}
break;
#case ' ':
# $jumpto = $i;
# break;
case ']':
if (!$inquote)
{
$tag['begin_end_pos'] = $i + 1; // "+ 1" includes the ]
}
else
{
$jumpto = $i;
}
break;
case '=':
if (!$inquote AND !$hasoption)
{
// only do this stuff on the *first* =
$hasoption = 1;
$tag['name_end_pos'] = $i;
$tag['option_open_pos'] = $i + 1;
}
break;
case '\'': // break missing intentionally
case '"':
if (!$hasoption)
{
$jumpto = $i;
}
else if (!$inquote)
{
$inquote = $char;
$tag['option_open_pos'] = $i + 1;
}
else if ($char == $inquote)
{
$inquote = false;
$tag['option_end_pos'] = $i;
}
break;
}

if ($jumpto OR $tag['begin_end_pos'])
{
break;
}
}

if (empty($startpos) AND $i == $strlen + 1) // added by JP. Was getting infinite loops on parsing
{
break;
}

if ($jumpto)
{
$startpos = $jumpto;
continue;
}

if (!$tag['name_end_pos'])
{
$tag['name_end_pos'] = $tag['begin_end_pos'] - 1;
}
if ($hasoption AND !$tag['option_end_pos'])
{
$tag['option_end_pos'] = $tag['begin_end_pos'] - 1;
}

$bbcode_lower = strtolower($bbcode);

$tag['name'] = substr($bbcode_lower, $tag['begin_open_pos'] + 1, $tag['name_end_pos'] - ($tag['begin_open_pos'] + 1));
if (!isset($bbcode_search["$tag[name]"]["$hasoption"]))
{
// the tag is one that isn't going to be translated anyway, so don't waste time on it
$startpos = $tag['begin_end_pos'];
continue;
}

if ($hasoption)
{
$tag['option'] = substr($bbcode, $tag['option_open_pos'], $tag['option_end_pos'] - $tag['option_open_pos']);
}
else
{
$tag['option'] = '';
}

$tag['close_open_pos'] = strpos($bbcode_lower, "[/$tag[name]]", $tag['begin_end_pos']);
if ($tag['close_open_pos'] === false)
{
$startpos = $tag['begin_end_pos'];
continue;
}

$recursivetags = substr_count(substr($bbcode_lower, $tag['begin_end_pos'], $tag['close_open_pos'] - $tag['begin_end_pos']), "[/$tag[name]]");
$bumped = 0;
for ($i = 0; $i < $recursivetags; $i++)
{
$tag['close_open_pos'] = strpos($bbcode_lower, "[/$tag[name]]", $tag['close_open_pos'] + 1);
if ($tag['close_open_pos'] === false)
{ // no closing tag found, so stop parsing
$bumped = -1;
break;
}
$bumped++;
}
if ($bumped != $recursivetags)
{
$startpos = $tag['begin_end_pos'];
continue;
}
$tag['close_end_pos'] = strpos($bbcode_lower, ']', $tag['close_open_pos'] + 1) + 1;

$data = substr($bbcode, $tag['begin_end_pos'], $tag['close_open_pos'] - $tag['begin_end_pos']);

// standard replace
if (isset($bbcode_search["$tag[name]"]["$hasoption"]['replace']))
{
$htmltag = $bbcode_search["$tag[name]"]["$hasoption"]['replace'];
$parseddata = "<$htmltag>$data</$htmltag>";
}
// html replace
else if (isset($bbcode_search["$tag[name]"]["$hasoption"]['replace_html']))
{
$parseddata = str_replace(array('\5', '\7', '\4'), array($tag['option'], $data, $data), $bbcode_search["$tag[name]"]["$hasoption"]['replace_html']);
}
// special handler replace
else if (isset($bbcode_search["$tag[name]"]["$hasoption"]['handler']))
{
$function = $bbcode_search["$tag[name]"]["$hasoption"]['handler'];
$parseddata = $function($data, $tag['option']);
}
// nothing to do
else
{
continue;
}
$bbcode = substr_replace($bbcode, $parseddata, $tag['begin_open_pos'], $tag['close_end_pos'] - $tag['begin_open_pos']);

$startpos = $tag['begin_end_pos'];
}
while (1);

return $bbcode;
}

// ###################### Start hasimages #######################
function contains_bbcode_img_tags($bbcode)
{
return iif(strpos(strtolower($bbcode), ' == 0 OR $bbuserinfo['showimages']))
{
// do [img]xxx
// Image size hack R1.2
// Modified by SS
// $bbcode = preg_replace('#\[img\]\s*(https?://([^<>*"' . iif(!$vboptions['allowdynimg'], '?&') . ']+|[a-z0-9/\\._\- !]+))\[/img\]#iUe', "handle_bbcode_img_match('\\1')", $bbcode);
$bbcode = preg_replace('#\[img\]\s*(https?://([^<>*"' . iif(!$vboptions['allowdynimg'], '?&') . ']+|[a-z0-9/\\._\- !]+))\[/img\]#iUe', "handle_bbcode_img_match('\\1',$iswysiwyg)", $bbcode);
//

}
$bbcode = preg_replace('#\[img\]\s*(https?://([^<>*"]+|[a-z0-9/\\._\- !]+))\[/img\]#iUe', "handle_bbcode_url('\\1', '', 'url')", $bbcode);

return $bbcode;
}

// ###################### Start handle_bbcode_img_match #######################
// this is only called by handle_bbcode_img
// Image size hack R1.2
// Modified by SS
// function handle_bbcode_img_match($link)
function handle_bbcode_img_match($link, $iswysiwyg)
//
{
$link = strip_smilies(str_replace('\\"', '"', $link));

// remove double spaces -- fixes issues with wordwrap
$link = str_replace(' ', '', $link);

// Image Size hack r1.2
// Modified by SS to resize large pics and place link to full size pic
// return '<img src="' . $link . '" border="0" alt="" />';

if ( !$iswysiwyg ) {
$max_imgsize=560;

$image= ($link);

// Get host url name for fsockopen to see if server is reachable
$img_host=str_replace('http://','',$link);
$img_host=substr($img_host,0,strpos($img_host,'/'));

// Check is server is reachable and timeout in 5 seconds if not
if (@fclose(@fsockopen($img_host, 80, $fsockerr1, $fsockerr2, 5))) {
// Check if image is on server
if (@fclose(@fopen("$image", "r"))) {
// Check image size and if oversize, change link
$img_width = getimagesize($link);
if ($img_width[0] > $max_imgsize) {
$biglink = '<table><tr><td align="center"><a href="' . $link . '" ><img src="'
. $link . '" width="'.$max_imgsize.'" border="0" alt=""><br>Picture has been resized, click for full size pic</a></td></tr></table>';
return $biglink;
}
else {
return '<img src="' . $link . '" border="0" alt="" />';
}
}
else {
// Image not found
return '<table border="1" cellpadding="2"><tr><td><FONT color="#FF0000">Image link is broken</font></td></tr></table>';
}
}
else {
// Server is down
return '<table border="1" cellpadding="2"><tr><td><FONT color="#FF0000">Image server is down</font></td></tr></table>';
}
}
else {
return '<img src="' . $link . '" border="0" alt="" />';
}


// End Image Size hack r1.2
}

// ###################### Start bbcodehandler_quote #######################
function handle_bbcode_quote($message, $username = '')
{
global $vboptions, $vbphrase, $stylevar, $show;

// remove empty codes
if (trim($message) == '')
{
return '';
}

// remove unnecessary escaped quotes
$message = str_replace('\\"', '"', $message);
$username = str_replace('\\"', '"', $username);

// remove smilies from username
$username = strip_smilies($username);
$show['username'] = iif($username != '', true, false);

global $stopsaveparsed, $parsed_postcache;
if ($stopsaveparsed OR $parsed_postcache['skip'] == true OR !$vboptions['cachemaxage'])
{
$show['iewidthfix'] = (is_browser('ie') AND !(is_browser('ie', 6)));
}
else
{
// this post may be cached, so we can't allow this "fix" to be included in that cache
$show['iewidthfix'] = false;
}

eval('$html = "' . fetch_template('bbcode_quote') . '";');
return $html;
}

// ###################### Start bbcodehandler_php #######################
function handle_bbcode_php($code)
{
global $vboptions, $vbphrase, $stylevar, $highlight_errors;
static $codefind1, $codereplace1, $codefind2, $codereplace2;

// remove empty codes
if (trim($code) == '')
{
return '';
}

//remove smilies
$code = strip_smilies(str_replace('\\"', '"', $code));

if (!is_array($codefind))
{
$codefind1 = array(
'<br>', // <br> to nothing
'<br />' // <br /> to nothing
);
$codereplace1 = array(
'',
''
);

$codefind2 = array(
'&gt;', // &gt; to >
'&lt;', // &lt; to <
'&quot;', // &quot; to ",
'&amp;', // &amp; to &
);
$codereplace2 = array(
'>',
'<',
'"',
'&',
);
}

// remove htmlspecialchars'd bits and excess spacing
$code = trim(str_replace($codefind1, $codereplace1, $code));
$blockheight = fetch_block_height($code); // fetch height of block element
$code = str_replace($codefind2, $codereplace2, $code); // finish replacements

// do we have an opening <? tag?
if (!preg_match('#^\s*<\?#si', $code))
{
// if not, replace leading newlines and stuff in a <?php tag and a closing tag at the end
$code = "<?php BEGIN__VBULLETIN__CODE__SNIPPET $code \r\nEND__VBULLETIN__CODE__SNIPPET ?>";
$addedtags = true;
}
else
{
$addedtags = false;
}


// highlight the string
$oldlevel = error_reporting(0);
if (PHP_VERSION >= '4.2.0')
{
$buffer = highlight_string($code, true);
}
else
{
@ob_start();
highlight_string($code);
$buffer = @ob_get_contents();
@ob_end_clean();
}
error_reporting($oldlevel);

// if we added tags above, now get rid of them from the resulting string
if ($addedtags)
{
$search = array(
'#(<|&lt;)\?php( |&nbsp;)BEGIN__VBULLETIN__CODE__SNIPPET#siU',
'#(<(span|font).*>)(<|&lt;)\?(</\\2>(<\\2.*>))php( |&nbsp;)BEGIN__VBULLETIN__CODE__SNIPPET#siU',
'#END__VBULLETIN__CODE__SNIPPET( |&nbsp;)\?(>|&gt;)#siU'
);
$replace = array(
'',
'\\5',
''
);
$buffer = preg_replace($search, $replace, $buffer);
}

$buffer = str_replace('[', '[', $buffer);
$buffer = preg_replace('/&amp;#([0-9]+);/', '&#$1;', $buffer); // allow unicode entities back through
$code = &$buffer;

eval('$html = "' . fetch_template('bbcode_php') . '";');
return $html;
}

// ###################### Start bbcodehandler_code #######################
function handle_bbcode_code($code)
{
global $vboptions, $vbphrase, $stylevar;

// remove empty codes
if (trim($code) == '')
{
return '';
}

// remove unnecessary line breaks and escaped quotes
$code = str_replace(array('<br>', '<br />', '\\"'), array('', '', '"'), $code);

// remove smilies
$code = strip_smilies($code);

// fetch height of block element
$blockheight = fetch_block_height($code);

eval('$html = "' . fetch_template('bbcode_code') . '";');
return $html;
}

// ###################### Start bbcodehandler_html #######################
function handle_bbcode_html($code)
{
global $vboptions, $vbphrase, $stylevar, $html_allowed;
static $regexfind, $regexreplace;

// remove empty codes
if (trim($code) == '')
{
return '';
}

//remove smilies
$code = strip_smilies(str_replace('\\"', '"', $code));

if (!is_array($regexfind))
{
$regexfind = array(
'#<br( /)?>#siU', // strip <br /> codes
'#(&amp;\w+;)#siU', // do html entities
'#&lt;!--(.*)--&gt;#siU', // italicise comments
'#&lt;(.+)&gt;#esiU' // push code through the tag handler
);
$regexreplace = array(
'', // strip <br /> codes
'<b><i>\1</i></b>', // do html entities
'<i>&lt;!--\1--&gt;</i>', // italicise comments
"handle_bbcode_html_tag('\\1')" // push code through the tag handler
);
}

if ($html_allowed)
{
$regexfind[] = '#\<(.+)\>#esiU';
$regexreplace[] = "handle_bbcode_html_tag(htmlspecialchars_uni(strips lashes('\\1')))";
}
// parse the code
$code = preg_replace($regexfind, $regexreplace, $code);

// how lame but HTML might not be on in signatures
if ($html_allowed)
{
$regexfind = array_pop($regexfind);
$regexreplace = array_pop($regexreplace);
}

$code = str_replace('[', '[', $code);

// fetch height of block element
$blockheight = fetch_block_height($code);

eval('$html = "' . fetch_template('bbcode_html') . '";');
return $html;
}

//#####################multi-Wasserstandshack######################
function wsmhack ($text) {
$wsm_string = "#\[wsm\] ([a-zA-Z0-9 \.\-\_]{1,30}) \| (\d+\.\d+|\d+\.\d+\.\d+) \| (\d+:\d+) \| ([\d\.,]+) (von|of) ([\d\.,]+) MB \| (\d+) Quellen \| (\d+) volle Quellen \[\/wsm\]#si";
if(preg_match_all($wsm_string, $text, $wsm_match)) {
$wsm_lock = false;
for($i=0; $i<count($wsm_match[0]); $i++) {
if($wsm_match[4][$i]>$wsm_match[6][$i]) {
$wsm_match[1][$i]="FEHLER!";
$wsm_match[4][$i]=$wsm_match[6][$i];
}
$wsm_dl_size = ceil(str_replace(',', '.', $wsm_match[4][$i]));
$wsm_co_size = ceil(str_replace(',', '.', $wsm_match[6][$i]));
if($wsm_co_size==0) {
$wsm_match[1][$i]="FEHLER!";
$wsm_co_size= 1;
}
$wsm_percentage_total = $wsm_co_size/100;
$wsm_percentage = $wsm_dl_size/$wsm_percentage_total;
$wsm_image_dl_length = 2*ceil($wsm_percentage);
$wsm_image_mi_length = 200-$wsm_image_dl_length;
if($wsm_image_dl_length==0) {
$wsm_image = "<img src=\"images/ws_li.gif\"><img src=\"images/ws_mi.gif\" width=200 height=12><img src=\"images/ws_re.gif\">";
}
elseif($wsm_image_dl_length==200) {
$wsm_image = "<img src=\"images/ws_li.gif\"><img src=\"images/ws_dl.gif\" width=".$wsm_image_dl_length." height=12><img src=\"images/ws_re.gif\">";
}
else {
$wsm_image = "<img src=\"images/ws_li.gif\"><img src=\"images/ws_dl.gif\" width=".($wsm_image_dl_length-1)." height=12><img src=\"images/ws_sp.gif\"><img src=\"images/ws_mi.gif\" width=".$wsm_image_mi_length." height=12><img src=\"images/ws_re.gif\">";
}
if($i%2==0){
$wsm_replace ="<tr class=\"alt2\"><td style='font-size:8pt;' valign='top'>".$wsm_match[1][$i]."</td><td style='font-size:8pt;' valign='top'>".$wsm_match[2][$i]." | ".$wsm_match[3][$i]."</td><td style='font-size:8pt;' valign='top'>".$wsm_image."</td><td style='font-size:8pt;' valign='top'>".$wsm_match[4][$i]." / ".$wsm_match[6][$i]." MB</td><td style='font-size:8pt;' align='right' valign='top'>(".round($wsm_percentage)." %)</td><td style='font-size:8pt;' valign='top'>".$wsm_match[7][$i]." / ".$wsm_match[8][$i]."</td></tr>";
}
else{
$wsm_replace ="<tr class=\"alt1\"><td style='font-size:8pt;' valing='top'>".$wsm_match[1][$i]."</td><td style='font-size:8pt;' valign='top'>".$wsm_match[2][$i]." | ".$wsm_match[3][$i]."</td><td style='font-size:8pt;' valign='top'>".$wsm_image."</td><td style='font-size:8pt;' valign='top'>".$wsm_match[4][$i]." / ".$wsm_match[6][$i]." MB</td><td style='font-size:8pt;' align='right' valign='top'>(".round($wsm_percentage)." %)</td><td style='font-size:8pt;' valign='top'>".$wsm_match[7][$i]." / ".$wsm_match[8][$i]."</td></tr>";
}
$text = str_replace($wsm_match[0][$i],$wsm_replace,$text);
}
$text = "<table cellspacing=\"1\" cellpadding=\"2\" bgcolor=\"#FFFFF0\" align=\"center\"><tr><td class=\"tcat\" colspan=\"6\" align=\"center\"><b>Wasserstand</b></td></tr>".$text."</table>";
return $text;
}
else {
return $text;
}
}
//Ende multi-Wasserstandshack
// ###################### Start bbcodehandler_html_tag #######################
function handle_bbcode_html_tag($tag)
{
global $bbcode_html_colors;

if (empty($bbcode_html_colors))
{
fetch_bbcode_html_colors();
}

// change any embedded URLs so they don't cause any problems
$tag = preg_replace('#\[(email|url)=&quot;(.*)&quot;\]#siU', '[$1="$2"]', $tag);

// find if the tag has attributes
$spacepos = strpos($tag, ' ');
if ($spacepos != false)
{
// tag has attributes - get the tag name and parse the attributes
$tagname = substr($tag, 0, $spacepos);
$tag = preg_replace('# (\w+)=&quot;(.*)&quot;#siU', ' \1=<font color="' . $bbcode_html_colors['attribs'] . '">&quot;\2&quot;</font>', $tag);
}
else
{
// no attributes found
$tagname = $tag;
}
// remove leading slash if there is one
if ($tag{0} == '/')
{
$tagname = substr($tagname, 1);
}
// convert tag name to lower case
$tagname = strtolower($tagname);

// get highlight colour based on tag type
switch($tagname)
{
// table tags
case 'table':
case 'tr':
case 'td':
case 'th':
case 'tbody':
case 'thead':
$tagcolor = $bbcode_html_colors['table'];
break;
// form tags
case 'form';
case 'input':
case 'select':
case 'option':
case 'textarea':
case 'label':
case 'fieldset':
case 'legend':
$tagcolor = $bbcode_html_colors['form'];
break;
// script tags
case 'script':
$tagcolor = $bbcode_html_colors['script'];
break;
// style tags
case 'style':
$tagcolor = $bbcode_html_colors['style'];
break;
// anchor tags
case 'a':
$tagcolor = $bbcode_html_colors['a'];
break;
// img tags
case 'img':
$tagcolor = $bbcode_html_colors['img'];
break;
// if (vB Conditional) tags
case 'if':
case 'else':
case 'elseif':
$tagcolor = $bbcode_html_colors['if'];
break;
// all other tags
default:
$tagcolor = $bbcode_html_colors['default'];
break;
}

$tag = '<font color="' . $tagcolor . '">&lt;' . str_replace('\\"', '"', $tag) . '&gt;</font>';
return $tag;
}

// ###################### Start bbcodehandler_list2 #######################
// replacement for bbcodehandler_list... experimental at this time
function handle_bbcode_list($string)
{
#echo '<p><b>$string</b><br />' . nl2br(htmlspecialchars($string)) . '</p>';
global $BBCODES, $wysiwygparse;
// might need this in the future
//$string = stripslashes($string);
$string = str_replace('\"', '"', $string);
$str = $string;

// getList
$slashlist = strpos($str, ']', stripos($str, '[/list')) + 1;
$tmp = substr($str, 0, $slashlist);
$openlist = strlen($tmp) - stripos(strrev($tmp), strrev('[list')) - strlen('[list');
$getList = substr($str, $openlist, ($slashlist - $openlist));

#echo '<p><b>$getList</b><br />' . htmlspecialchars($getList) . '</p>';

// processList
if (preg_match('#\s*(\[list(=(&quot;|"|\'|)([^\]]*)\\3)?\](.*)\[/list(=\\3\\4\\3)?\])\s*#si', $getList, $regs))
{
$getList = $regs[0];
#echo '<p><b>Regex Match</b><br />' . htmlspecialchars($regs[0]) . '</p>';
$str = preg_split('#\s*\[\*\]#s', $regs[5], -1, PREG_SPLIT_NO_EMPTY);

if (empty($str))
{
return preg_replace('#\s*' . preg_quote($getList, '#') . '\s*#s', nl2br("\n\n"), $string);
}

if ($regs[4])
{
switch ($regs[4])
{
case 'A':
$listtype = 'upper-alpha';
break;
case 'a':
$listtype = 'lower-alpha';
break;
case 'I':
$listtype = 'upper-roman';
break;
case 'i':
$listtype = 'lower-roman';
break;
case '1': //break missing intentionally
default:
$listtype = 'decimal';
break;
}
}
else
{
$listtype = '';
}

$processList = iif($listtype, '<ol style="list-style-type: ' . $listtype . '">', '<ul>');

$bad_tag_list = '(br|p|li|ul|ol)';

foreach ($str AS $key => $val)
{
$firstbit = strtolower(substr($val, 0, 3));
if ($firstbit === '<ul' OR $firstbit === '<ol' OR $firstbit === '<li' OR $firstbit == '')
{
$processList .= $val;
}
else
{
if ($wysiwygparse)
{
$exploded = preg_split("#(\r\n|\n|\r)#", $val);

$val = '';
foreach ($exploded AS $value)
{
if (!preg_match('#(</' . $bad_tag_list . '>|<' . $bad_tag_list . '\s*/>)$#iU', $value))
{
if (trim($value) == '')
{
$value = '&nbsp;';
}
//$val .= '<p style="margin:0px">' . $value . "</p>";
$val .= $value . "<br />\n";
}
else
{
$val .= "$value\n";
}
}
$val = preg_replace('#<br />+\s*$#i', '', $val);

}
$processList .= '<li>' . $val . '</li>';
}
}

$processList .= iif($listtype, '</ol>', '</ul&gt;');

#echo '<p><b>$processList</b><br />' . htmlspecialchars($processList) . '</p>';

// replace found list characters with parsed list characters
if ($wysiwygparse)
{
$processList = str_replace('<p style="margin:0px"></p>', '', $processList);
}

//$out = preg_replace('#\s*' . preg_quote($getList, '#') . '\s*#s', str_replace(array('\\', '$'), array('\\\\', '\$'), $processList), $string);
$out = str_replace($getList, $processList, $string);
#echo '<p><b>Return Value</b><br />' . nl2br(htmlspecialchars($out)) . '</p><hr />';
return $out;
}
else
{
return $string;
}

}

// ###################### Start handle_bbcode_url #######################
function handle_bbcode_url($text, $link, $type = 'url')
{
global $wysiwygparse;

if (trim($text) == '')
{
return '';
}

$rightlink = trim($link);
if (empty($rightlink))
{
// no option -- use param
$rightlink = trim($text);
}
$rightlink = strip_smilies(str_replace('\\"', '"', $rightlink));
$rightlink = str_replace(array('`', '"', "'", '['), array('`', '&quot;', ''', '['), $rightlink);

if ($type == 'url' AND !preg_match('#^[a-z0-9]+://#si', $rightlink))
{
$rightlink = "http://$rightlink";
}

if ($type == 'ed2k' AND !preg_match('#^[a-z0-9]+://#si', $rightlink))
{
$rightlink = "ed2k://$rightlink";
}

if (!trim($link) OR $text == $rightlink)
{
$tmp = unhtmlspecialchars($rightlink);
if (strlen($tmp) > 55 AND !$wysiwygparse)
{
$text = htmlspecialchars_uni(substr($tmp, 0, 35) . '...' . substr($tmp, -15));
}
}

// remove double spaces -- fixes issues with wordwrap
$rightlink = str_replace(' ', '', $rightlink);

// strip extra quotes from hyperlink
$text = str_replace('\"', '"', $text);

if ($type == 'url' OR $type == 'ed2k')
{
// standard URL hyperlink
if ($type == 'ed2k')
{
$teile = explode("|", $rightlink);
return "<a href=\"$rightlink\" target=\"_self\">$text</a> - <a href=\"http://stats.razorback2.com/ed2khistory?ed2k=$teile[4]\" target=\"_blank\">Verteilung</a>";
}
else
{
return "<a href=\"$rightlink\" target=\"_blank\">$text</a>";
}
}
else
{
// email hyperlink (mailto:)
if (is_valid_email($rightlink))
{
return "<a href=\"mailto:$rightlink\">$text</a>";
}
else
{
// not a valid email - don't link it
return "<span title=\"$rightlink\">$text</span>";
}
}
}
but the hack does .... nothing!

Does anybody find the mistake? :(

http://www.mr-goodbyte.de/greetz.png

It all looks right to me. Are you sure that you uploaded the files into the appropriate places? Keep in mind it will only do something if an image is wider than 560 pixels - any image smaller than that will appear as it always has.

Allan
09-28-2005, 11:34 PM
work under vB 3.5 ?

Steve St.Lauren
09-30-2005, 05:54 AM
work under vB 3.5 ?

I haven't worked with 3.5 yet. I don't have enough time to play around with rc or beta versions of products. I'll wait until it's a gold release and then has been out for a couple of months and then I'll start working with it. Sorry. If someone wants to port it before then feel free - I just ask that you give credit for the original code.

ggiersdorf
10-07-2005, 05:49 PM
3.5 is here PLEASE take a look now :) We need you coders now more than ever!!

Thanks

LambHyjoo
12-10-2005, 11:19 PM
It would be nice to release an addon which would save the image on disk. Why ?
- Because after a couple of weeks, images often become unreachable (because they are deleted, moved...)
- Because it is not HotLinking anymore.
- It would cut this "delay" : if the image has already been downloaded on the server, you don't need to check it aain. It's a local file and you hust need to replace the IMG location.

I would be very insterested by such an addon ;)

apfparadise
12-19-2005, 12:58 AM
I would also love to see it ported to 3.5. I miss it like crazy on my photography site.

Steve St.Lauren
12-20-2005, 02:09 AM
I would also love to see it ported to 3.5. I miss it like crazy on my photography site.

I'm working on it. I'm moving the forums I run over to 3.5.1 and am working on converting all my hacks over right now. Hope to have it finished by early in January.

AllenMead
02-15-2006, 06:39 PM
Steve, is there any update on this yet?

Steve St.Lauren
02-15-2006, 11:20 PM
I should have it done some time next week. I'm working on an improvement at the same time where it will save the resolution of the pic to a database so that it doesn't have to recheck that every time - that will remove the slowdown problem.

AllenMead
02-19-2006, 07:58 AM
That's great stuff!

The_Rayman
02-21-2006, 05:24 PM
Heya Steve,

Looks good, i installed This Hack (https://vborg.vbsupport.ru/showthread.php?t=68677&page=1&pp=15&highlight=resizeable+images) but the site becomes extremely slow when it needs to resize...

Will be happy to test your version!

Please keep me updated, i will subscribe to this thread anyway ;)

ubblite
02-26-2006, 07:04 PM
Yup, if Steve is able to get this hack released for vb 3.5.3/4 soon, it would be awesome. I'll be keeping a close eye on this thread for sure.

AllenMead
03-16-2006, 06:11 PM
Any news yet fella?

AllenMead
04-27-2006, 07:56 PM
up ^^

AllenMead
05-18-2006, 07:33 PM
Is a shame this hack appears to not going to be updated for 3.5.3. Was one of the better image re-sizing hacks :(

The_Rayman
03-10-2008, 10:16 AM
I've got the following running on my site, it works GREAT!

find in class_bbcode.php (/forum/includes)
return '<img src="' . $link . '" border="0" alt="" />';

replace red with:

/* Start Image RESIZE */

$navigator_user_agent = ( isset( $_SERVER['HTTP_USER_AGENT'] ) ) ? strtolower( $_SERVER['HTTP_USER_AGENT'] ) : '';
if (stristr($navigator_user_agent, "msie")) {
return '<a href="' . $link . '?phpMyAdmin=7jrhMYVjuPF%2CpNIFLQVSGEcLssf" target="_blank"><img src="' . $link . '" border="0" alt="" style="width: expression(this.width > 800 ? 600 : true);" /></a>';
} else {
return '<a href="' . $link . '?phpMyAdmin=7jrhMYVjuPF%2CpNIFLQVSGEcLssf" target="_blank"><img src="' . $link . '" border="0" alt="" style="max-width: 800px;" /></a>';
}

/* End Image RESIZE */

Voila! Change the style="max-width: 800px part to any size you want.