I have image uploading working really well but now I want to add the facility to resize (scale down) uploaded images. I’ve followed the docs on this and found it really straightforward but it’s not working.
What are the needed features on the server for this to work? I’m think GD or ImagaMagick.
George
March 10, 2020, 9:44pm
2
Gd2 is usually installed and that is all you need on php servers
1 Like
Thanks George. I will check that’s on there.
gd is on there - bundled (2.1.0 compatible) - so I’m at a loss as to why it’s not working. Any ideas what I can do to sort it?
George
March 10, 2020, 10:01pm
5
What is not working? Do you get an error or so?
The console just shows a 500 error. I disabled actions to establish which was failing and it is the Resize Image action.
George
March 10, 2020, 10:04pm
7
well follow the standard procedure:
You can easily debug issues related to server-side processing such as - form not sending email, record not inserting or updating, query not showing data etc.
The first thing you need to do is to open the server connect settings. They are located in the Workflows Panel > Server Actions:
[Screenshot 2021-09-27 at 10.02.35]
And enable the Debug Mode:
[Screenshot 2021-09-27 at 10.03.08]
Click Save:
[Screenshot 2021-09-27 at 10.03.26]
In your browser, open the Developer tools. If you don’t k…
A-ha, I didn’t dig deep enough. It was a memory issue. I’ve increased it to 512MB and it’s working.
Thanks, as always, for the speedy replies. I thought I knew my way around the dev console but I keep finding new stuff in there!
2 Likes