ZenphotoCMS Forum
getSizedImageURL not working - Printable Version

+- ZenphotoCMS Forum (https://forum.zenphoto.org)
+-- Forum: Support (https://forum.zenphoto.org/forum-1.html)
+--- Forum: General support (https://forum.zenphoto.org/forum-4.html)
+--- Thread: getSizedImageURL not working (/thread-3248.html)



getSizedImageURL not working - bds - 2008-07-07

when calling getSizedImageURL like:

<img src="<?=getSizedImageURL(400);?>"></img>

getSizedImageURL is returning an empty string. Is this a known problem or am I doing something wrong?


getSizedImageURL not working - krainbolt - 2008-07-07

Are you using that call on the image.php page?

Try this:
`[img]<?php echo getCustomImageURL(400);?>[/img]`

Or this:
`[img]<?php echo $_zp_current_image->getSizedImage(400);?>[/img]`


getSizedImageURL not working - bds - 2008-07-08

this:
`[img]<?php echo getCustomImageURL(400);?>[/img]`

worked! Thanks a lot!

Ben