So I have a weird question: Would it be possible to change the method used for deletions without breaking things? And if so where in the source code would I do that?
To elaborate a bit on my issue, the web server that I am hosting Espo on for some reason is having issues specifically with DELETE requests. I'm still trying to figure out why, but I noticed that the issue is only when I use the arrow drop down menu on the right side (as pictured below). Removing the data through this method uses a DELETE request and responds with a 405 error:
Now, when I use the other method of removing, the one for mass deletes on the left side (the checkbox, then "actions", then "remove") it works fine. Which at first I thought was strange and didn't make sense, but removing data that way uses a POST request:
Would it be possible to change the code so that all of the deletes use a POST request, and would Espo still work that way?
To elaborate a bit on my issue, the web server that I am hosting Espo on for some reason is having issues specifically with DELETE requests. I'm still trying to figure out why, but I noticed that the issue is only when I use the arrow drop down menu on the right side (as pictured below). Removing the data through this method uses a DELETE request and responds with a 405 error:
Now, when I use the other method of removing, the one for mass deletes on the left side (the checkbox, then "actions", then "remove") it works fine. Which at first I thought was strange and didn't make sense, but removing data that way uses a POST request:
Would it be possible to change the code so that all of the deletes use a POST request, and would Espo still work that way?
Comment