Just messed with the code again, I'm really sorry ;-)
I regularly copy my complete live-board into a test-environment, which resides under testboard.domain.com.
There is a problem with the code in product-imageresizer.xml (line 122) which is
Code:
<script type="text/javascript" src="$vboptions[bburl]/clientscript/ncode_imageresizer.js?v=1.0.1"></script>
Since I don't update my bburl when I copy (and never had to with other mods) your mod didn't work any more with that absolute link. I just made the link relative which eliminates the obligation to alter bburl in ACP-Options when you do such a copy (or when people just move their board and are lazy ...).
Making it relative won't hurt and is the best way in my opinion; if you also think so you will change line 122 to
Code:
<script type="text/javascript" src="clientscript/ncode_imageresizer.js?v=1.0.1"></script>
in your next release ;-).
Kind regards and thanks for maintaing this fine mod,
Ingress
<edit>
Just noticed you also need to change the URL to the tiny symbol in js-file to achieve full relativity ;-)
Change line 119 of ncode_imageresizer.js
Code:
mimg.src = NcodeImageResizer.BBURL+'/images/statusicon/wol_error.gif';
to
Code:
mimg.src = 'images/statusicon/wol_error.gif';
and the job is fully done.
</edit>