View Single Post
Old September 3rd, 2005, 11:32 AM   #5 (permalink)
Chuck S
Photopost Developer
Verified Customer
 
Chuck S's Avatar
 
Join Date: Jun 2002
Location: Abingdon,MD
Posts: 66,785
Look at your install

I have changed getimagesize to @getimagedsize to prevent error display but your images looks corrupted

http://www.7thgencivic.com/parts_rev.../cat/19/page/1

We only run getimagesize in the first place if the image exists. My only correction would be to add and I have done so the code in bold

if ( file_exists($checklink) ) {
$image_stats = @getimagesize( $checklink );
$width = $image_stats[0];
$height = $image_stats[1];
}
__________________
Photopost Developer and Support Engineer

Please do not PM me for support or sales questions. Thank you for your understanding.

Last edited by Chuck S; September 3rd, 2005 at 11:34 AM.
Chuck S is online now   Reply With Quote