You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am working with zend 2 and WebinoImageThumb, and i realize there is a bug with https image.
If i put an https image, i get a "Image file not found:" error from this code:
protected function fileExistsAndReadable ()
{
if ($this->isDataStream === true)
{
return;
}
if (stristr($this->fileName, 'http://') !== false)
{
$this->remoteImage = true;
return;
}
if (!file_exists($this->fileName))
{
$this->triggerError('Image file not found: ' . $this->fileName);
}
elseif (!is_readable($this->fileName))
{
$this->triggerError('Image file not readable: ' . $this->fileName);
}
}
Hi,
I am working with zend 2 and WebinoImageThumb, and i realize there is a bug with https image.
If i put an https image, i get a "Image file not found:" error from this code:
So i changed it:
I wonder if there is any reason that https wasn't considered here?
Thanks.
The text was updated successfully, but these errors were encountered: