2
On the website: http://viladivanomoveis.com.br/? page=products&prod=Armchairs images do not appear when accessing from iphones or ipads, I suspect it is because of this php code that resizes the original image:
<a href="?page=item&prod=<?php echo remover($exeprod['produto']);?>">
<img src="thumb.php?img=admin/<?php echo $spr[0];?>&x=300&y=300&q=80" alt="" title=""/>
</a>
Does anyone know how to make the images appear or why they don’t appear?
The images appear for a brief moment and then disappear... To confirm the suspicion, change the src to link directly to the image. The inspector of Safari accuses no JS error, only a 404 to
http://viladivanomoveis.com.br/get-tweets.php?url=undefined
– brasofilo
I’ve had problems if similar and was why the original images were in 32 bits color CMYK and not 24 bits RGB, check this out...
– Jader A. Wagner
I’m sorry, I don’t understand... what I put in place of 'src'?
– user2257797
@Jader I checked, the images are in 'png 8bits RGB'
– user2257797
<img src="LINK-REAL-DA-IMAGEM.jpg">
. . . I guess you’ll have to investigate what thatthumb.php
do, check out How to debug code in PHP?– brasofilo