Error when Upload Image

Hi,
I have another problem when upload image in Entando Platform.
There is a configuration I have to setting to upload the images in Entando?
Thanks
In attached the screenshoot with the error


Pietro Colangelo

Hi @pietro.colangelo is this on 5.x that you were working on earlier or 6.x? Are you running locally in jetty or in an app server (EAP/Wildfly)?

Based on the error it looks like you are missing image magic. Assuming you’re on windows and on Entando 5.x you’ll need to install it and set these properties in src/main/webapp/WEB-INF/conf/systemParams.properties

#parameters to use in windows system 
#attention on the imagemagick.path parameter	#attention on the imagemagick.path parameter
#in windows system a command convert exist this is the reason why it's necessary to	
#declare to full path where ImageMagick is installed	

#windows config example	
#
#imagemagick.windows=true	
#imagemagick.path=<your path>

@p.masala if you have any more docs on image magick setup for Windows please link them here

The correct path to set those parameters is:

`src/main/config/sytemParams.properties` if you are using jetty or tomact

src/main/config/jboss/systemParams.properties if you are using EAP/Wildfly

The one under src/main/webapp/WEB-INF/conf/systemParams.properties is being generated during the build process so every change to this file will be overwritten.

Ad a note in Windows systems the imagemagick.path has to be inserted like this: imagemagick.path=C:\\Programmi\\ImageMagick-6.6.3-Q16

Ok, now it works
Thanks
Pietro