Hello, thank you, you helped me solve part of the problem. Check the browser console output and it was a CORS error. I solved it by adding the lines to the htacces
Header set Access-Control-Allow-Origin "*"
Now with this change, a httprequest request that previously worked fine was broken, it throws me the following error:
Access to fetch at 'url' from origin 'http://localhost:8060' has been blocked by CORS policy: The 'Access-Control-Allow-Origin' header contains multiple values 'http://localhost:8060, *', but only one is allowed. Have the server send the header with a valid value, or, if an opaque response serves your needs, set the request's mode to 'no-cors' to fetch the resource with CORS disabled.