My phpthumb will not generate thumb nails on one of my sites. The other site seems to work(although sometimes only some thumbnails are generated).
My first problem was, I was running my image paths like so:
<img border='0' src='http://domain.com/phpThumb.php?src=".$row['path']."&w=150&zc=1' />
//.$row['path']. = http://domain.com/path/to/image.jpg
I was getting an error telling me that it is not recommended to do that. So I removed the http://domain.com and now it is viewed as:
<img border='0' src='http://domain.com/phpThumb.php?src=".$row['path']."&w=150&zc=1' />
//.$row['path']. = /path/to/image.jpg
Now I am getting images, but they are not cropped, and they are not rendered down to size. I have been working on this for days and I cannot get a single error message.
Any suggestions welcomed.
Thanks