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
That error happens when attempting to call ImageMagick using the exec function here. This could be any number of things. Checking your system's error records is the best thing to do. These other steps could help:
Verify the path to ImageMagick's convert command is set correctly in application/Config/Images.
attempting to use the image library to resize, i get response "imageProcessFailed"
bu
below is the code used.
`if ($file = $this->request->getFile('event_image'))
{
if ($file->isValid() && ! $file->hasMoved())
{
$path = FCPATH.'static/eventimg';
$filename = 'event_image-' .$file->getRandomName();
$file_full_path = $path . '/' . $filename;
$file->move($path, $filename);
The text was updated successfully, but these errors were encountered: