
OSWALDO OLEA - 2016-05-06 09:34:53
I tried the test file and got error 'Invalid type of Image' until I changed in
file: ImageOperations.pph
line: 35
from: $this->img = @imagecreatefromjpeg($this->uploadedFile["tmp_name"]);
to: $this->img = @imagecreatefromjpeg($this->uploadedFile["userfile"]["tmp_name"]);
now it works.
how comes?