Error fetching data #32
-
Beta Was this translation helpful? Give feedback.
Replies: 5 comments 2 replies
-
Hi, it looks like a network issue or something else blocking communication to the server. What does the network tab in the browser dev tools say? |
Beta Was this translation helpful? Give feedback.
-
Yes, that one. Looks like the service is unavailable when requesting the files endpoint. I guess that your server is running out of memory and crashes the process when generating thumbnails. This can have two reasons. Either the image you're saving is very large or your server has a memory limit set for PHP that is too low. In both cases I would recommend to increase the memory limit. Either in the |
Beta Was this translation helpful? Give feedback.
-
This are only the upload limits. You need to have more memory to manipulate and resize images. And uncommenting these lines only has an effect on Apache servers. The configuration file depends on the server you use. I can only recommend using images with an appropriate resolution. This will probably solve already the memory issue. |
Beta Was this translation helpful? Give feedback.
yes I think also that's the best way.
thx